Releases: crazyyanchao/llmcompiler
Releases · crazyyanchao/llmcompiler
v1.1.9
- Added PARTIAL_RESOLVED_ARGS_PARSE configuration to the Tool input parameters, which specifies partial parameter parsing for designated fields (supports multi-parameter iterative replacement).
- RunLLMCompiler now supports an iteration count parameter.
- tool_call_by_row_pass_parameters annotation implementation.
- Added DISABLE_ROW_CALL configuration to Tool output parameters, to be used in conjunction with the @tool_call_by_row_pass_parameters annotation.
- Enhanced parameter parser.
v1.1.8
- Support automatic loading of Tools.
- Add an abstract class CompilerBaseTool to facilitate defining parameter dependencies.
- Add a DISABLE_RESOLVED_ARGS configuration to the Tool's input parameters, which disables argument resolution for specified fields when this setting is used.
v1.1.7
- add abstractclass CompilerBaseTool.
v1.1.3
- Support for Dynamic Detection Tool List and Dynamic Loading.
v1.1.0
- Added a decorator @tool_set_pydantic_default for Tools.
- Added a decorator @tool_kwargs_filter for Tools.
- Added the default Few-shot operation implementation class DefaultBaseFewShot.
v1.0.10
Add some decorators to the implementation of Tools to facilitate quick processing of Tools' input parameters.
- add decorator <tool_kwargs_clear>.Remove invalid values.
- add decorator <tool_kwargs_filter_placeholder>.Clean parameters that match the specified pattern.
- add decorator <tool_set_default_value>.Set default values for parameters that are not passed.
- add test tool
FundBasicV2
.
v1.0.9
- task output bug fix.
- args paser bug fix.
- add
kwargs_clear
func. - add
pydantic_oper
func.
v1.0.5
- Fixed the bugs of example tools.
- Added 'runWithoutJoiner' method.
- Optimize the code structure.
v1.0.3
The first available version of LLMCompiler.