Releases: QwenLM/Qwen-Agent
Releases · QwenLM/Qwen-Agent
v0.0.10
- Add the Tool-Integrated Reasoning (TIR) agent for Qwen2.5-Math.
- Add support for caching the LLM's responses. LLM caching can be enabled by providing
cache_dir
in the LLM's config, i.e.,llm = get_chat_model(cfg={..., "cache_dir": "/tmp/directory_to_save_llm_cache"})
. - Add self-play agents to simulate a dialogue between a user and an AI agent, mainly for data synthesis and testing purposes.
v0.0.9
v0.0.8
- Multimodal function calling for Qwen2-VL. Please see the function calling example and the agent example for example usage.
v0.0.7
- Make dependencies for the code interpreter and RAG optional.
pip install qwen-agent
now only installs minimal dependencies for function calling.pip install qwen-agent[rag,code_interpreter,gui]
installs optional dependencies for RAG, Code Interpreter, and GUI.
v0.0.6
- Added experimental support for parallel tool calling and tool choice.