Files
agent-framework/python/packages/azure-ai/AGENTS.md
T
Eduard van Valkenburg eaad042241 .NET: Python: Add AGENTS.md files and update coding standards (#3644)
* Add AGENTS.md files and update coding standards for Python

- Add root python/AGENTS.md with project structure and package links
- Add AGENTS.md for each package describing purpose and main classes
- Update .github/copilot-instructions.md with improved structure
- Update python/CODING_STANDARD.md with API review guidance:
  - Future annotations convention (#3578)
  - TypeVar naming convention (#3594)
  - Mapping vs MutableMapping (#3577)
  - Avoid shadowing built-ins (#3583)
  - Explicit exports (#3605)
  - Exception documentation guidelines (#3410)
- Simplify python/.github/instructions/python.instructions.md to reference AGENTS.md
- Remove AGENTS.md from .gitignore

* Fix purview import path in AGENTS.md

* Address PR review comments and restructure instructions

- Slim down .github/copilot-instructions.md to reference language-specific docs
- Add ADR section explaining templates and purpose
- Create dotnet/AGENTS.md with .NET-specific build commands, conventions, and sample guidance
- Update Python build/test instructions for core vs isolated changes
- Fix Microsoft.Extensions.AI package references
- Update kwargs guidance per issue #3642
- Fix Python sample helper placement (top, not bottom)
- Document new 'typing' poe task in DEV_SETUP.md

* Add 'typing' poe task to run both pyright and mypy

* Add kwargs guidelines from issue #3642 to CODING_STANDARD.md

* Clarify that connector packages pull in core as dependency
2026-02-05 10:27:46 +00:00

1.0 KiB

Azure AI Package (agent-framework-azure-ai)

Integration with Azure AI Foundry for persistent agents and project-based agent management.

Main Classes

  • AzureAIAgentClient - Chat client for Azure AI Agents (persistent agents with threads)
  • AzureAIClient - Client for Azure AI Foundry project-based agents
  • AzureAIAgentsProvider - Provider for listing/managing Azure AI agents
  • AzureAIProjectAgentProvider - Provider for project-scoped agent management
  • AzureAISettings - Pydantic settings for Azure AI configuration
  • AzureAIAgentOptions / AzureAIProjectAgentOptions - Options TypedDicts

Usage

from agent_framework.azure import AzureAIAgentClient

client = AzureAIAgentClient(
    endpoint="https://your-project.services.ai.azure.com",
    agent_id="your-agent-id",
)
response = await client.get_response("Hello")

Import Path

from agent_framework.azure import AzureAIAgentClient, AzureAIClient
# or directly:
from agent_framework_azure_ai import AzureAIAgentClient