mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""Host your agent with Azure Functions.
|
|
|
|
This sample shows the Python hosting pattern used in docs:
|
|
- Create an agent with `AzureOpenAIChatClient`
|
|
- Register it with `AgentFunctionApp`
|
|
- Run with Azure Functions Core Tools (`func start`)
|
|
|
|
Prerequisites:
|
|
pip install agent-framework-azurefunctions --pre
|
|
|
|
Environment variables:
|
|
AZURE_OPENAI_ENDPOINT
|
|
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
from agent_framework.azure import AgentFunctionApp, AzureOpenAIChatClient
|
|
from azure.identity import AzureCliCredential
|
|
|
|
|
|
# <create_agent>
|
|
def _create_agent() -> Any:
|
|
"""Create a hosted agent backed by Azure OpenAI."""
|
|
return AzureOpenAIChatClient(credential=AzureCliCredential()).as_agent(
|
|
name="HostedAgent",
|
|
instructions="You are a helpful assistant hosted in Azure Functions.",
|
|
)
|
|
|
|
|
|
# </create_agent>
|
|
|
|
# <host_agent>
|
|
app = AgentFunctionApp(agents=[_create_agent()], enable_health_check=True, max_poll_retries=50)
|
|
# </host_agent>
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Start the Functions host with: func start")
|
|
print("Then call: POST /api/agents/HostedAgent/run")
|