db620d33df
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
dotnet-build-and-test / dotnet-test-functions (push) Has been cancelled
dotnet-build-and-test / paths-filter (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Debug, windows-latest, net9.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net8.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-foundry-hosted-it (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test-check (push) Has been cancelled
dotnet-build-and-test / Integration Test Report (push) Has been cancelled
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
import asyncio
|
|
|
|
from agent_framework.foundry import FoundryAgent
|
|
from azure.identity import AzureCliCredential
|
|
|
|
"""
|
|
Foundry Agent — Connect to a pre-configured agent in Microsoft Foundry
|
|
|
|
This sample shows the simplest way to connect to an existing PromptAgent
|
|
in Azure AI Foundry and run it. The agent's instructions, model, and hosted
|
|
tools are all configured on the service — you just connect and run.
|
|
|
|
Environment variables:
|
|
FOUNDRY_PROJECT_ENDPOINT — Azure AI Foundry project endpoint
|
|
FOUNDRY_AGENT_NAME — Name of the agent in Foundry
|
|
FOUNDRY_AGENT_VERSION — Version of the agent (for PromptAgents)
|
|
"""
|
|
|
|
|
|
async def main() -> None:
|
|
agent = FoundryAgent(
|
|
project_endpoint="https://your-project.services.ai.azure.com",
|
|
agent_name="my-prompt-agent",
|
|
agent_version="1.0",
|
|
credential=AzureCliCredential(),
|
|
)
|
|
|
|
result = await agent.run("What is the capital of France?")
|
|
print(f"Agent: {result}")
|
|
|
|
# Streaming
|
|
print("Agent (streaming): ", end="", flush=True)
|
|
async for chunk in agent.run("Tell me a fun fact.", stream=True):
|
|
if chunk.text:
|
|
print(chunk.text, end="", flush=True)
|
|
print()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|