Skip to content

airefinery-sdk 1.14.2 release

Choose a tag to compare

@arezaz arezaz released this 25 Aug 23:10
7ec5f39

🚀 Announcement: AI Refinery SDK v1.14.2 Released ⚡️

We’re excited to share the release of AI Refinery SDK v1.14.2—a focused update that expands model support, introduces greater flexibility for orchestration, and boosts stability under heavy workloads.

✨ What’s New

  • Support for openai/gpt-oss-120b
    The SDK now supports the latest openai/gpt-oss-120b model, delivering enhanced scale and reasoning power for advanced use cases.

  • Configurable Orchestrator Routing
    Task routing and hand-off via the Orchestrator are now optional.

    • New setting: enable_routing
    • When enabled: queries are decomposed and routed across agents.
    • When disabled: all queries flow directly to the first agent in agent_list.
      This gives you fine-grained control over orchestration complexity vs. direct handling.

🛠 Improvements & Fixes

  • General performance tuning and reliability enhancements to boosts stability under heavy workloads.
  • More polished error handling.

✅ Compatibility

  • If upgrading from 1.13.x or earlier, please ensure you use the new API keys from the AI Refinery platform.
    You can now create your client with:

    from air import AsyncAIRefinery
    airefinery_client = AsyncAIRefinery(api_key=api_key)
  • Fully compatible with SDK 1.5.0 and later.