github microsoft/semantic-kernel python-1.21.1

latest releases: dotnet-1.38.0-nightly-250221.1, dotnet-1.38.0-nightly-250220.2, dotnet-1.38.0...
8 days ago

Release Notes

New Features

Python Package Updates

  • Python: Update motor requirement from <3.7.0,>=3.3.2 to <3.8.0,>=3.3.2 in /python.
    #10378 by @dependabot
  • Python: Bump Python version to 1.21.1 for a release.
    #10539 by @moonbox3

Enhancements and Fixes

  • Python: add AzureAIAgent client creation method. Handle user_agent.
    #10538 by @moonbox3

    Introduced a convenience method for creating an AIProjectClient via a class method on AzureAIAgent. This requires a minor update:

    async with (
        DefaultAzureCredential() as creds,
        AzureAIAgent.create_client(  # <-- Updated to call `create_client` on the agent
            credential=creds,
            conn_str=ai_agent_settings.project_connection_string.get_secret_value(),
        ) as client,
    ):
        # Operational code here
  • Python: removes AWS "us." region prefix from model id.
    #10329 by @gtang31-te

Bug Fixes and Improvements

  • Python: Fix Chat History Agent format instructions regression.
    #10512 by @moonbox3

New Contributors

Full Changelog: python-1.21.0...python-1.21.1

Don't miss a new semantic-kernel release

NewReleases is sending notifications on new releases.