Change8

Migrating to AutoGen python-v0.5.7

Version python-v0.5.7 introduces 1 breaking change. This guide details how to update your code.

Released: 5/14/2025

1
Breaking Changes
1
Migration Steps
9
Affected Symbols

⚠️ Check Your Code

If you use any of these symbols, you need to read this guide:

AzureAISearchToolAzureAISearchTool.create_full_text_searchAzureAISearchTool.create_vector_searchAzureAISearchTool.create_hybrid_searchAzureAISearchTool.create_keyword_searchSelectorGroupChatSingleThreadedAgentRuntimeAnthropicBedrockChatCompletionClientcreateTeam

Breaking Changes

Issue #1

The `create_keyword_search()` method in `AzureAISearchTool` has been replaced. Users must update code to use `create_full_text_search()` with the query type set to 'simple'.

Migration Steps

  1. 1
    Replace all instances of `AzureAISearchTool.create_keyword_search(...)` with `AzureAISearchTool.create_full_text_search(..., query_type="simple")`.

Release Summary

This release unifies the Azure AI Search Tool API, introduces model context support for SelectorGroupChat speaker selection, and improves OTEL tracing and Agent Runtime registration.

Need More Details?

View the full release notes and all changes for AutoGen python-v0.5.7.

View Full Changelog