Releases¶
In this release log, we cover all versions of our AI Refinery SDK, listed in order from the most recent to the oldest.
1.6.0¶
March 17, 2025
airefinery_sdk-1.6.0-py3-none-any.whl
New Features
- We introduce
FlowSuperAgent
- A new type of super agent designed to orchestrate complex workflows composed of multiple utility agents with pre-defined dependencies. For more details, please check out this tutorial.
Improvements
- Bug fixes: We fix bugs including Super Agents' unexpected behavior, chat history memory bugs, duplicated Custom Agent memory instances.
- Endpoint scalability: We scale AIRefinery Agent-as-a-service platform to support more concurrent users.
Compatibility
- We encourage you to update to the latest SDK to enjoy the new performance improvements. No changes to your project code are necessary.
1.5.1¶
Feb 25, 2025
airefinery_sdk-1.5.1-py3-none-any.whl
New Features
- Support for Long Blocking Operations: We add support for long blocking operations in both asynchronous and synchronous custom agents. This enhancement enables developers to handle more complex operations with custom agents.
- Extend Memory Configuration: Users can now update the memory configuration to track longer conversational turns in the memory history, allowing for more context-aware interactions.
Improvements
- Optimize the efficiency of internal memory updates, enhancing overall performance.
- Resolve an issue where an empty configuration dictionary was required in Version 1.5.0 for custom agents.
Compatibility
- Please make a small update to your current code for version 1.5.0. In version 1.5.1 (if you are using the kwargs for the custom agents), it is now required to explicitly specify the requested arguments in the function signature. See the change below:
# Original code
async def data_extractor_agent(query: Optional[str]= None, **kwargs) -> str:
print(kwargs["env_variable"])
# Updated code
async def data_extractor_agent(query: Optional[str]= None, env_variable: Optional[str]=None, chat_history: Optional[str]=None) -> str:|
print(env_variable)
1.5.0¶
Feb 21, 2025
airefinery_sdk-1.5.0-py3-none-any.whl
New Features
- We introduce a powerful new pre-built analytics agent capable of analyzing your database (PostgreSQL) or spreadsheets (CSV files).
Improvements
-
Improve the project version control feature introduced in 1.4.0, making it faster to respond and connect at launch time.
-
Re-design the logic for the custom agent gallery. Instead of creating separate processes, they now operate as individual threads. This improves compatibility with non-pickleable objects and makes responses faster as well.
Compatibility
- The APIs are compatible with Version 1.1.1, so no changes to your project code are necessary.
1.4.0¶
Feb 3, 2025
airefinery_sdk-1.4.0-py3-none-any.whl
New Features
-
SDK now supports user versioning with default behavior of connecting to the latest project configuration, and input guardrails to define the scope of your user interaction.
-
SDK now enables concurrent execution of CustomAgent, take advantage of Composite Agents to run your custom agents in parallel!
Improvements
- Address several community-reported issues, including extending timeouts for CustomAgents to 10 minutes, better client-side error messaging, improve memory capability and agents such as SuperAgent and CriticalThinker.
Compatibility
- The APIs are compatible with Version 1.1.1, so no changes to your project code are necessary.
1.3.1¶
Jan 16, 2025
airefinery_sdk-1.3.1-py3-none-any.whl
Improvements
- Address community-reported issues, mainly the reloading of the DistillerClient-related scripts when a custom agent is triggered.
Compatibility
- The APIs are compatible with Version 1.1.1, so no changes to your project code are necessary.
1.3.0¶
DEC 17, 2024
airefinery_sdk-1.3.0-py3-none-any.whl
New Features
- We introduce a new reranker model.
Improvements
- Address several community-reported issues, including blocking custom agents and author agent bugs.
Compatibility
- The APIs are compatible with Version 1.1.1, so no changes to your project code are necessary.
1.2.0¶
NOV 25, 2024
airefinery_sdk-1.2.0-py3-none-any.whl
New Features
- Image generation capability is now available.
Improvements
- Address several community-reported issues, including websocket versioning and print blocking.
Compatibility
- The APIs are compatible with Version 1.1.1, so no changes to your project code are necessary.
1.1.1¶
NOV 7, 2024
airefinery_sdk-1.1.1-py3-none-any.whl
Improvements
-
Change input to async input to respond to PONG.
-
Drop deprecated ChatClient import from UI code.
-
Fix bugs including interactive and custom agent kwargs.
Initial Release¶
July 22, 2024
We introduce our client-side software development kit for AI refinery: AIR-SDK.