Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/agent-framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: python-1.0.0b251105
Choose a base ref
...
head repository: microsoft/agent-framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: python-1.0.0b251106
Choose a head ref
  • 20 commits
  • 393 files changed
  • 12 contributors

Commits on Nov 5, 2025

  1. Python: Updates to Tools (#1835)

    * updated tool samples
    
    * mypy and readme fixes
    
    * updated call logic
    
    * added function invocation config
    
    * added include detailed error
    
    * added tests
    
    * updated FRC exception handling
    
    * updated tests
    
    * fix oai test
    
    * fix name in sample
    
    * imporoved tests coverage and removed some dead code paths
    eavanvalkenburg authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    51b32ed View commit details
    Browse the repository at this point in the history
  2. Python: add support for Python 3.14 (#1904)

    * add tests for py3.14 and add classifier
    
    * remove macos
    
    * allow openai v2
    eavanvalkenburg authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    54db13c View commit details
    Browse the repository at this point in the history
  3. .NET: Improve fidelity of OpenAI ChatCompletions Hosting (#1785)

    * rename, support json serialization
    
    * wip
    
    * non-streaming
    
    * streaming?
    
    * proper streaming types
    
    * comments + fix audio parse
    
    * copilot suggestions
    
    * proper stopsequences type
    
    * build options as i could
    
    * annotations
    
    * proper generation of Id for chatcompletions
    
    * string length as in chatcompletions api ref
    
    * image url
    
    * support tools
    
    * rework API
    
    * introduce tests for chatcompletions
    
    * function calling / serialization tests / fixes
    
    * more tests and coverage
    
    * fix format
    
    * sort usings
    
    * nit
    
    * address PR comments
    
    * nits
    DeagleGross authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    bb8ef46 View commit details
    Browse the repository at this point in the history
  4. .NET: [BREAKING] Simplify TextSearchProvider construction and improve…

    … Mem0Provider scoping. (#1905)
    
    * Simplify TextSearchProvider construction and improve Mem0Provider scoping
    
    * Fixing indentation.
    westey-m authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    5e38c63 View commit details
    Browse the repository at this point in the history
  5. .NET: [Breaking Change] Moving MAAI.AzureAI V1 Package -> MAAI.AzureA…

    …I.Persistent (V1) (#1902)
    
    * Update AzureAI -> AzureAI.Persistent
    
    * Fix sample reference
    rogerbarreto authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    6ca907f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    77d882e View commit details
    Browse the repository at this point in the history
  7. .NET: AG-UI support for .NET (#1776)

    * Initial plan
    
    * Infrastructure setup
    
    * Plan for minimal client
    
    * Plan update
    
    * Basic agentic chat
    
    * cleanup
    
    * Cleanups
    
    * More cleanups
    
    * Cleanups
    
    * More cleanups
    
    * Test plan
    
    * Sample
    
    * Fix streaming and error handling
    
    * Fix notifications
    
    * Cleanups
    
    * cleanup sample
    
    * Additional tests
    
    * Additional tests
    
    * Run dotnet format
    
    * Remove unnecessary files
    
    * Mark packages as non packable
    
    * Fix build
    
    * Address feedback
    
    * Fix build
    
    * Fix remaining warnings
    
    * Feedback
    
    * Feedback and cleanup
    
    * Cleanup
    
    * Cleanups
    
    * Cleanups
    
    * Cleanups
    
    * Retrieve existing messages from the store to send them along the way and update the sample client
    
    * Run dotnet format
    
    * Add ADR for AG-UI
    
    * Switch to use the SG and use a convention for run ids
    
    * Cleanup MapAGUI API
    
    * Fix formatting
    
    * Fix solution
    
    * Fix solution
    javiercn authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    b03a4fb View commit details
    Browse the repository at this point in the history
  8. Python: Added parameter to disable agent cleanup in AzureAIAgentClient (

    #1882)
    
    * Removed automatic agent cleanup in AzureAIAgentClient
    
    * Revert "Removed automatic agent cleanup in AzureAIAgentClient"
    
    This reverts commit 89846c7.
    
    * Exposed boolean flag to control deletion behavior
    
    * Update sample
    dmytrostruk authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    14aee7e View commit details
    Browse the repository at this point in the history
  9. [BREAKING] refactor: Fix unintuitive binding of StreamAsync (#1930)

    In #1551 we added a mechanism to open a Streaming workflow run without providing any input. This caused unintuitive behaviour when passing a string as input without providing a runId, resulting in the input being misinterpreted as the runId and the workflow not executing.
    
    As well, the name caused confusion about why the Workflow was not running when using the input-less StreamAsync (since the Workflow cannot run without any messages to drive its execution).
    lokitoth authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    b8a55dc View commit details
    Browse the repository at this point in the history
  10. Python: fix missing packaging dependency (#1929)

    * fix missing packaging dependency
    
    * add aiohttp to azureai
    eavanvalkenburg authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    e2282eb View commit details
    Browse the repository at this point in the history
  11. .NET: Improve fidelity of OpenAI Responses server and add Conversatio…

    …ns (#1907)
    
    * Improve fidelity of OpenAI Responses server and add Conversations
    
    * Merge
    
    * nit
    
    * Undo prior change
    
    * Undo prior change
    
    * Review feedback
    
    * Review feedback
    
    * Fix test
    
    * Use simpler JsonDocument approach for polymorphic deserialization
    
    * More review feedback
    
    * dotnet format
    ReubenBond authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    33f84f9 View commit details
    Browse the repository at this point in the history
  12. .NET: [BREAKING] refactor: Normalize WorkflowBuilder APIs (#1935)

    * [BREAKING] refactor: Normalize WorkflowBuilder APIs
    
    * "partitioner" => "assigner"
    * normalize ordering so sources always to the left of targets for edges
    * normalize parameter ordering so sources and targets are always first arguments
    * remove `params` (users should use collection expressions instead)
    
    * refactor: Align name with Python
    lokitoth authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    94a5ba3 View commit details
    Browse the repository at this point in the history
  13. .NET: Add DevUI package for .NET (#1603)

    * Implement DevUI
    
    * Review feedback
    
    * Fix build
    ReubenBond authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    8855bfb View commit details
    Browse the repository at this point in the history
  14. Python: [BREAKING] Replaced AIProjectClient with AgentsClient in Foun…

    …dry (#1936)
    
    * Replaced AIProjectClient with AgentsClient in Foundry
    
    * Update python/samples/getting_started/observability/azure_ai_agent_observability.py
    
    Co-authored-by: Copilot <[email protected]>
    
    * Update python/samples/getting_started/observability/azure_ai_chat_client_with_observability.py
    
    Co-authored-by: Copilot <[email protected]>
    
    * Small fix
    
    * Removed TODO item
    
    ---------
    
    Co-authored-by: Copilot <[email protected]>
    dmytrostruk and Copilot authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    d701e79 View commit details
    Browse the repository at this point in the history
  15. .NET: [BREAKING] .NET: Add Workflow on-Build() Orphan Validation (#1943)

    * fix: Workflow Validation
    
    * adds orphan validation to workflow builder
    * adds tests for workflow validation
    * expands on the underlying reasoning why type validation is not supported
    
    * fixup: CodeGen template
    lokitoth authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    0bf6d43 View commit details
    Browse the repository at this point in the history
  16. .NET: AgentHostExecutor should use agent DisplayName as Executor ID (#…

    …1840)
    
    * AgentHostExecutor should use agent DisplayName as Executor ID
    
    * Address comments
    
    * Remove unintended changes
    
    * Remove unintended changes
    
    * Fix tests and address comments
    TaoChenOSU authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    3f835c8 View commit details
    Browse the repository at this point in the history
  17. .NET: Python: Updated package versions (#1944)

    * Updated .NET version
    
    * Updated Python package versions
    
    * Updated changelog
    dmytrostruk authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    327c304 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    afd8b7e View commit details
    Browse the repository at this point in the history
  19. Add simple workflow sample that mixes agents and executors (#1946)

    * Add workflow mix agent executor samples
    
    * Apply suggestion from @Copilot
    
    Co-authored-by: Copilot <[email protected]>
    
    ---------
    
    Co-authored-by: Evan Mattson <[email protected]>
    Co-authored-by: Copilot <[email protected]>
    3 people authored Nov 5, 2025
    Configuration menu
    Copy the full SHA
    9b471cc View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2025

  1. Configuration menu
    Copy the full SHA
    573aff4 View commit details
    Browse the repository at this point in the history
Loading