Files
agent-framework/python/packages/azure-ai
T
Giles Odigwe 2b3c401848 Python: Fix: Parse oauth_consent_request events in Azure AI client (#4197)
* Fix: Parse oauth_consent_request events in Azure AI client (#3950)

When Azure AI Agent Service returns an oauth_consent_request output item
for OAuth-protected MCP tools, the base OpenAI responses parser drops it
(hits case _ default branch). This causes agent runs to complete silently
with zero content.

Changes:
- Add oauth_consent_request ContentType and Content.from_oauth_consent_request()
  factory with consent_link field and user_input_request=True
- Override _parse_response_from_openai and _parse_chunk_from_openai in
  RawAzureAIClient to intercept Azure-specific oauth_consent_request items
- Add _emit_oauth_consent helper in AG-UI to emit CustomEvent for frontends
- Add tests proving base parser drops the event and Azure AI override catches it

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* addressed comment

* addressed comments

* addressed comments

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2b3c401848 ยท 2026-03-03 23:02:03 +00:00
History
..

Get Started with Microsoft Agent Framework Azure AI

Please install this package via pip:

pip install agent-framework-azure-ai --pre

Foundry Memory Context Provider

The Foundry Memory context provider enables semantic memory capabilities for your agents using Azure AI Foundry Memory Store. It automatically:

  • Retrieves static (user profile) memories on first run
  • Searches for contextual memories based on conversation
  • Updates the memory store with new conversation messages

Basic Usage Example

See the Foundry Memory example which demonstrates:

  • Creating a memory store using Azure AI Projects client
  • Setting up an agent with FoundryMemoryProvider
  • Teaching the agent user preferences
  • Retrieving information using remembered context across conversations
  • Automatic memory updates with configurable delays

and see the README for more information.