Skip to content

Commit 48d124e

Browse files
authored
Python: Create/Get Agent API for Azure V1 (microsoft#3192)
* Added provider implementation for Azure AI V1 * Small fixes * Fixed OpenAPI example * Fixed local MCP example * Fixed hosted MCP example * Fixed file search sample * Small fixes * Resolved comments * Doc updates
1 parent 6e9420f commit 48d124e

32 files changed

Lines changed: 2138 additions & 659 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ agents.md
206206
WARP.md
207207
**/memory-bank/
208208
**/projectBrief.md
209+
**/tmpclaude*
209210

210211
# Azurite storage emulator files
211212
*/__azurite_db_blob__.json

python/packages/azure-ai/agent_framework_azure_ai/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
import importlib.metadata
44

5+
from ._agent_provider import AzureAIAgentsProvider
56
from ._chat_client import AzureAIAgentClient, AzureAIAgentOptions
67
from ._client import AzureAIClient
7-
from ._provider import AzureAIProjectAgentProvider
8+
from ._project_provider import AzureAIProjectAgentProvider
89
from ._shared import AzureAISettings
910

1011
try:
@@ -15,6 +16,7 @@
1516
__all__ = [
1617
"AzureAIAgentClient",
1718
"AzureAIAgentOptions",
19+
"AzureAIAgentsProvider",
1820
"AzureAIClient",
1921
"AzureAIProjectAgentProvider",
2022
"AzureAISettings",

0 commit comments

Comments
 (0)