airefinery-sdk 1.21.0 release
Announcement: AI Refinery SDK Version 1.21.0 Released 🚀
We're excited to announce the release of AI Refinery SDK Version 1.21.0!
This version brings performance improvements based on the valuable feedback we've received from the community.
💥 What's New in Version 1.21.0
- New Trusted Agent Huddle agent:
- CB Insights Agent: This is a new agent that integrates with CB Insights' market intelligence platform.
🚨 Upcoming Major Update: Default Model Switch
Starting December 1, the default model will change from meta-llama/Llama-3.1-70B-Instruct to openai/gpt-oss-120b.
What this means
- After Dec 1, applications without an explicit model override will automatically use openai/gpt-oss-120b.
- We expect minimal disruption, but performance and outputs may differ slightly.
How to prepare
- Test with gpt-oss-120b before Dec 1
To validate your workflows ahead of the switch, configure your application by updating the YAML config according to the following example:
base_config:
llm_config:
model: "openai/gpt-oss-120b"
orchestrator:
agent_list:
- agent_name: "Search Agent"
utility_agents:
- agent_class: SearchAgent
agent_name: "Search Agent"- Continue using Llama 3.1 if needed
To explicitly stay onmeta-llama/Llama-3.1-70B-Instructafter Dec 1, set thebase_configas the following example:
base_config:
llm_config:
model: "meta-llama/Llama-3.1-70B-Instruct"
orchestrator:
agent_list:
- agent_name: "Search Agent"
utility_agents:
- agent_class: SearchAgent
agent_name: "Search Agent"✅ Compatibility
- SDK versions ≤ 1.15.1 can still connect to the current Distiller API server without modification.
- Applications that have not yet migrated to API-Key–only or TokenProvider authentication must do so before upgrading.
Refer to the Quickstart guide for details.