v0.21.0
版本发布时间: 2024-08-29 03:20:06
llm-workflow-engine/llm-workflow-engine最新发布版本:v0.22.0(2024-09-26 03:42:49)
:fire_engine:Breaking Changes:fire_engine:
The OpenAI support library that LWE uses changed how it validates some custom parameters passed to the OpenAI API.
New installs should not be affected by this, but existing installs may need to repair any created presets for the OpenAI provider.
Example presets installed via the examples
plugin can simply re-install those examples:
/examples presets
Hand created OpenAI presets will need to move most of the parameters under model_kwargs
into the top level of the configuration, e.g.:
# Old
model_customizations:
model_kwargs:
top_p: 0.1
model_name: gpt-3.5-turbo
temperature: 0.2
# New
model_customizations:
model_name: gpt-3.5-turbo
top_p: 0.1
temperature: 0.2
Commit log
- Wed Aug 28 2024: fix presets/examples/doc for openai param refactor
- Wed Aug 28 2024: fix location of openai customizations, bump openai lib requirement
- Fri Aug 16 2024: remove all deprecation warnings for function -> tool migration
- Thu Aug 08 2024: add gpt-4o-2024-08-06 model to chat_openai provider