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
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
import asyncio
|
|
|
|
from agent_framework import Agent
|
|
from agent_framework.foundry import FoundryChatClient
|
|
from azure.identity import AzureCliCredential
|
|
|
|
"""
|
|
Multi-Turn Conversations — Use AgentSession to maintain context
|
|
|
|
This sample shows how to keep conversation history across multiple calls
|
|
by reusing the same session object.
|
|
"""
|
|
|
|
|
|
async def main() -> None:
|
|
# <create_agent>
|
|
client = FoundryChatClient(
|
|
project_endpoint="https://your-project.services.ai.azure.com",
|
|
model="gpt-4o",
|
|
credential=AzureCliCredential(),
|
|
)
|
|
|
|
agent = Agent(
|
|
client=client,
|
|
name="ConversationAgent",
|
|
instructions="You are a friendly assistant. Keep your answers brief.",
|
|
)
|
|
# </create_agent>
|
|
|
|
# <multi_turn>
|
|
# Create a session to maintain conversation history
|
|
session = agent.create_session()
|
|
|
|
# First turn
|
|
result = await agent.run("My name is Alice and I love hiking.", session=session)
|
|
print(f"Agent: {result}\n")
|
|
|
|
# Second turn — the agent should remember the user's name and hobby
|
|
result = await agent.run("What do you remember about me?", session=session)
|
|
print(f"Agent: {result}")
|
|
# </multi_turn>
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|