Skip to content

Commit

Permalink
[.Net] Prepare release note for AutoGen.Net 0.0.16 (#3117)
Browse files Browse the repository at this point in the history
* add release note

* update repo info
  • Loading branch information
LittleLittleCloud committed Jul 11, 2024
1 parent 87bcaa4 commit 210e94d
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dotnet/eng/MetaInfo.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>0.0.15</VersionPrefix>
<VersionPrefix>0.0.16</VersionPrefix>
<Authors>AutoGen</Authors>
<PackageProjectUrl>https://microsoft.github.io/autogen-for-net/</PackageProjectUrl>
<RepositoryUrl>https://github.com/microsoft/autogen</RepositoryUrl>
Expand Down
2 changes: 2 additions & 0 deletions dotnet/website/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
"articles/**/toc.yml",
"tutorial/**.md",
"tutorial/**/toc.yml",
"release_note/**.md",
"release_note/**/toc.yml",
"toc.yml",
"*.md"
]
Expand Down
32 changes: 32 additions & 0 deletions dotnet/website/release_note/0.0.16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 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:

**[Milestone: AutoGen.Net 0.0.16](https://github.com/microsoft/autogen/milestone/4)**

## 📦 New Features
1. **Deprecate `IStreamingMessage`** ([#3045](https://github.com/microsoft/autogen/issues/3045)) - Replaced `IStreamingMessage` and `IStreamingMessage<T>` with `IMessage` and `IMessage<T>`.
2. **Add example for using ollama + LiteLLM for function call** ([#3014](https://github.com/microsoft/autogen/issues/3014)) - Added a new tutorial to the website for integrating ollama with LiteLLM for function calls.
3. **Add ReAct sample** ([#2978](https://github.com/microsoft/autogen/issues/2978)) - Added a new sample demonstrating the ReAct pattern.
4. **Support tools Anthropic Models** ([#2771](https://github.com/microsoft/autogen/issues/2771)) - Introduced support for tools like `AnthropicClient`, `AnthropicClientAgent`, and `AnthropicMessageConnector`.
5. **Propose Orchestrator for managing group chat/agentic workflow** ([#2695](https://github.com/microsoft/autogen/issues/2695)) - Introduced a customizable orchestrator interface for managing group chats and agent workflows.
6. **Run Agent as Web API** ([#2519](https://github.com/microsoft/autogen/issues/2519)) - Introduced the ability to start an OpenAI-chat-compatible web API from an arbitrary agent.

## 🐛 Bug Fixes
1. **SourceGenerator doesn't work when function's arguments are empty** ([#2976](https://github.com/microsoft/autogen/issues/2976)) - Fixed an issue where the SourceGenerator failed when function arguments were empty.
2. **Add content field in ToolCallMessage** ([#2975](https://github.com/microsoft/autogen/issues/2975)) - Added a content property in `ToolCallMessage` to handle text content returned by the OpenAI model during tool calls.
3. **AutoGen.SourceGenerator doesn’t encode `"` in structural comments** ([#2872](https://github.com/microsoft/autogen/issues/2872)) - Fixed an issue where structural comments containing `"` were not properly encoded, leading to compilation errors.

## 🚀 Improvements
1. **Sample update - Add getting-start samples for BasicSample project** ([#2859](https://github.com/microsoft/autogen/issues/2859)) - Re-organized the `AutoGen.BasicSample` project to include only essential getting-started examples, simplifying complex examples.
2. **Graph constructor should consider null transitions** ([#2708](https://github.com/microsoft/autogen/issues/2708)) - Updated the Graph constructor to handle cases where transitions’ values are null.

## ⚠️ API-Breakchange
1. **Deprecate `IStreamingMessage`** ([#3045](https://github.com/microsoft/autogen/issues/3045)) - **Migration guide:** Deprecating `IStreamingMessage` will introduce breaking changes, particularly for `IStreamingAgent` and `IStreamingMiddleware`. Replace all `IStreamingMessage` and `IStreamingMessage<T>` with `IMessage` and `IMessage<T>`.

## 📚 Document Update
1. **Add example for using ollama + LiteLLM for function call** ([#3014](https://github.com/microsoft/autogen/issues/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! 🚀
5 changes: 5 additions & 0 deletions dotnet/website/release_note/toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- name: 0.0.16
href: 0.0.16.md

- name: 0.0.0 - 0.0.15
href: update.md
File renamed without changes.
2 changes: 1 addition & 1 deletion dotnet/website/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
href: api/

- name: Release Notes
href: update.md
href: release_note/

- name: Other Languages
dropdown: true
Expand Down

0 comments on commit 210e94d

Please sign in to comment.