autogen python-v0.7.5
What's Changed Fix docs dotnet core typo by @lach-g in https://github.com/microsoft/autogen/pull/6950 Fix loading streaming Bedrock response with tool usage with empty argument by @pawel-dabro in…
https://github.com/microsoft/autogen·sdk·20 items·last fetched
What's Changed Fix docs dotnet core typo by @lach-g in https://github.com/microsoft/autogen/pull/6950 Fix loading streaming Bedrock response with tool usage with empty argument by @pawel-dabro in…
What's Changed Update docs for 0.7.3 by @ekzhu in https://github.com/microsoft/autogen/pull/6948 Update readme with agent-as-tool by @ekzhu in https://github.com/microsoft/autogen/pull/6949 Fix Redis Deserialization…
What's Changed Update website for 0.7.2 by @ekzhu in https://github.com/microsoft/autogen/pull/6902 Typo in docs for 'NoOpTracerProvider' by @nicsuzor in https://github.com/microsoft/autogen/pull/6915 Fix MCP example…
What's Changed Update website 0.7.1 by @ekzhu in https://github.com/microsoft/autogen/pull/6869 Update OpenAIAssistantAgent doc by @ekzhu in https://github.com/microsoft/autogen/pull/6870 Update 0.7.1 website ref by…
What's New `OpenAIAgent` supports all built-in tools Feat/OpenAI agent builtin tools 6657 by @tejas-dharani in https://github.com/microsoft/autogen/pull/6671 Support nested `Team` as a participant in a `Team`…
What's New More helps from @copilot-swe-agent for this release. Improvements to `GraphFlow` Now it behaves the same way as `RoundRobinGroupChat`, `SelectorGroupChat` and others after termination condition hits -- it…
What's New Streaming Tools This release introduces streaming tools and updates `AgentTool` and `TeamTool` to support `run_json_stream`. The new interface exposes the inner events of tools when calling `run_stream` of…
Bug Fixes Fix bug in GraphFlow cycle check by @ekzhu in https://github.com/microsoft/autogen/pull/6629 Fix graph validation logic and add tests by @ekzhu in https://github.com/microsoft/autogen/pull/6630 Others Add…
What's New Change to `BaseGroupChatManager.select_speaker` and support for concurrent agents in `GraphFlow` We made a type hint change to the `select_speaker` method of `BaseGroupChatManager` to allow for a list of…
What's New `AzureAISearchTool` Improvements The Azure AI Search Tool API now features unified methods: `create_full_text_search()` (supporting `"simple"`, `"full"`, and `"semantic"` query types)…
What's New GraphFlow: customized workflows using directed graph Should I say finally? Yes, finally, we have workflows in AutoGen. `GraphFlow` is a new team class as part of the AgentChat API. One way to think of…
What's New Introduce `Workbench` A workbench is a collection of tools that share state and resource. For example, you can now use MCP server through `McpWorkbench` rather than using tool adapters. This makes it…
What's New Agent and Team as Tools You can use `AgentTool` and `TeamTool` to wrap agent and team into tools to be used by other agents. ```python import asyncio from autogen_agentchat.agents import AssistantAgent from…
What's New CodeExecutorAgent Update Now the `CodeExecutorAgent` can generate and execute code in the same invocation. See API doc for examples. Add code generation support to `CodeExecutorAgent` by @Ethan0456 in…
Python Related Changes Update website verison by @ekzhu in https://github.com/microsoft/autogen/pull/6196 Clean examples. by @zhanluxianshen in https://github.com/microsoft/autogen/pull/6203 Improve SocietyOfMindAgent…
What's New AgentChat Message Types (Type Hint Changes) [!IMPORTANT] TL;DR: If you are not using custom agents or custom termination conditions, you don't need to change anything. Otherwise, update `AgentEvent` to…
Patch Release This release addresses a bug in MCP Server Tool that causes error when unset tool arguments are set to `None` and passed on to the server. It also improves the error message from server and adds a default…
What's New This release makes improvements to AutoGen Studio across multiple areas. Component Validation and Testing Support Component Validation API in AGS in https://github.com/microsoft/autogen/pull/5503 Test…
Patch Fixes Fix logging error in `SKChatCompletionAdapter` https://github.com/microsoft/autogen/pull/5893 Fix missing system message in the model client call during reflect step when `reflect_on_tool_use=True`…
What's New [Breaking] Serialized State Schema Change Starting v0.4.9, the team state is using the agent name as the key instead of the agent ID, and the team_id field is removed from the state. This is to allow the…