mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-23 08:52:56 +00:00
3.5 KiB
3.5 KiB
AutoGen.Net 0.0.16 Release Notes
We are excited to announce the release of AutoGen.Net 0.0.16. This release includes several new features, bug fixes, improvements, and important updates. Below are the detailed release notes:
📦 New Features
- Deprecate
IStreamingMessage
(#3045) - ReplacedIStreamingMessage
andIStreamingMessage<T>
withIMessage
andIMessage<T>
. - Add example for using ollama + LiteLLM for function call (#3014) - Added a new tutorial to the website for integrating ollama with LiteLLM for function calls.
- Add ReAct sample (#2978) - Added a new sample demonstrating the ReAct pattern.
- Support tools Anthropic Models (#2771) - Introduced support for tools like
AnthropicClient
,AnthropicClientAgent
, andAnthropicMessageConnector
. - Propose Orchestrator for managing group chat/agentic workflow (#2695) - Introduced a customizable orchestrator interface for managing group chats and agent workflows.
- Run Agent as Web API (#2519) - Introduced the ability to start an OpenAI-chat-compatible web API from an arbitrary agent.
🐛 Bug Fixes
- SourceGenerator doesn't work when function's arguments are empty (#2976) - Fixed an issue where the SourceGenerator failed when function arguments were empty.
- Add content field in ToolCallMessage (#2975) - Added a content property in
ToolCallMessage
to handle text content returned by the OpenAI model during tool calls. - AutoGen.SourceGenerator doesn’t encode
"
in structural comments (#2872) - Fixed an issue where structural comments containing"
were not properly encoded, leading to compilation errors.
🚀 Improvements
- Sample update - Add getting-start samples for BasicSample project (#2859) - Re-organized the
AutoGen.BasicSample
project to include only essential getting-started examples, simplifying complex examples. - Graph constructor should consider null transitions (#2708) - Updated the Graph constructor to handle cases where transitions’ values are null.
⚠️ API-Breakchange
- Deprecate
IStreamingMessage
(#3045) - Migration guide: DeprecatingIStreamingMessage
will introduce breaking changes, particularly forIStreamingAgent
andIStreamingMiddleware
. Replace allIStreamingMessage
andIStreamingMessage<T>
withIMessage
andIMessage<T>
.
📚 Document Update
- Add example for using ollama + LiteLLM for function call (#3014) - Added a tutorial to the website for using ollama with LiteLLM.
Thank you to all the contributors for making this release possible. We encourage everyone to upgrade to AutoGen.Net 0.0.16 to take advantage of these new features and improvements. If you encounter any issues or have any feedback, please let us know.
Happy coding! 🚀