mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
b05fc9e849
* Initial plan * Add load_dotenv() to 303 Python samples for environment variable loading Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Update SAMPLE_GUIDELINES.md to document load_dotenv() requirement Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Update samples README.md to document .env file usage Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Run ruff format on all changed sample files Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Clarify load_dotenv() usage in README - local dev vs production Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Remove deprecated getting_started folder as requested Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Document env_file_path parameter for per-client configuration Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Merge main branch to resolve conflicts Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Fix run_evaluation.py file that was empty in merge commit Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Remove dotnet changes from merge - out of scope for this PR Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Remove package and test changes from merge - only sample changes needed Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Remove test_func_utils.py - only sample changes needed Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Revert sample files not in original changeset - keep only load_dotenv additions Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Move load_dotenv() outside snippet tag in 06_host_your_agent.py Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Fix comment placement - move load_dotenv before code comments Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Fix load_dotenv() placement across all samples - after docstring, before code comments Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Merge latest main branch with load_dotenv changes Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Remove non-sample changes from merge - keep only load_dotenv additions Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Revert non-load_dotenv sample changes from merge Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Fix run_evaluation.py - use main's improved version (file already had load_dotenv) Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> * Manual update * Manual update 2 * Fix Role usage and load_dotenv placement per PR review feedback Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> * Fix Role usage - use string literals not enum attributes Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> * Fix SAMPLE_GUIDELINES.md example - load_dotenv before docstring per guidance Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> * Move load_dotenv() before docstrings in all samples per SAMPLE_GUIDELINES ordering Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> * Address PR review: rename files, fix placement, add session usage, remove note Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> * Update Redis README to reference renamed file redis_history_provider.py Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: TaoChenOSU <12570346+TaoChenOSU@users.noreply.github.com> Co-authored-by: Tao Chen <taochen@microsoft.com> Co-authored-by: eavanvalkenburg <13749212+eavanvalkenburg@users.noreply.github.com> Co-authored-by: Eduard van Valkenburg <eavanvalkenburg@users.noreply.github.com>
109 lines
4.0 KiB
Python
109 lines
4.0 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
import asyncio
|
|
from collections.abc import Awaitable, Callable
|
|
from typing import Annotated
|
|
|
|
from agent_framework import (
|
|
AgentContext,
|
|
InMemoryHistoryProvider,
|
|
tool,
|
|
)
|
|
from agent_framework.azure import AzureOpenAIChatClient
|
|
from azure.identity import AzureCliCredential
|
|
from dotenv import load_dotenv
|
|
from pydantic import Field
|
|
|
|
# Load environment variables from .env file
|
|
load_dotenv()
|
|
|
|
"""
|
|
Thread Behavior MiddlewareTypes Example
|
|
|
|
This sample demonstrates how middleware can access and track session state across multiple agent runs.
|
|
The example shows:
|
|
|
|
- How AgentContext.session property behaves across multiple runs
|
|
- How middleware can access conversation history through the session
|
|
- The timing of when session messages are populated (before vs after call_next() call)
|
|
- How to track session state changes across runs
|
|
|
|
Key behaviors demonstrated:
|
|
1. First run: context.messages is populated, context.session is initially empty (before call_next())
|
|
2. After call_next(): session contains input message + response from agent
|
|
3. Second run: context.messages contains only current input, session contains previous history
|
|
4. After call_next(): session contains full conversation history (all previous + current messages)
|
|
"""
|
|
|
|
|
|
# NOTE: approval_mode="never_require" is for sample brevity. Use "always_require" in production;
|
|
# see samples/02-agents/tools/function_tool_with_approval.py
|
|
# and samples/02-agents/tools/function_tool_with_approval_and_sessions.py.
|
|
@tool(approval_mode="never_require")
|
|
def get_weather(
|
|
location: Annotated[str, Field(description="The location to get the weather for.")],
|
|
) -> str:
|
|
"""Get the weather for a given location."""
|
|
from random import randint
|
|
|
|
conditions = ["sunny", "cloudy", "rainy", "stormy"]
|
|
return f"The weather in {location} is {conditions[randint(0, 3)]} with a high of {randint(10, 30)}°C."
|
|
|
|
|
|
async def thread_tracking_middleware(
|
|
context: AgentContext,
|
|
call_next: Callable[[], Awaitable[None]],
|
|
) -> None:
|
|
"""MiddlewareTypes that tracks and logs session behavior across runs."""
|
|
session_message_count = 0
|
|
if context.session:
|
|
memory_state = context.session.state.get(InMemoryHistoryProvider.DEFAULT_SOURCE_ID, {})
|
|
session_message_count = len(memory_state.get("messages", []))
|
|
|
|
print(f"[MiddlewareTypes pre-execution] Current input messages: {len(context.messages)}")
|
|
print(f"[MiddlewareTypes pre-execution] Session history messages: {session_message_count}")
|
|
|
|
# Call call_next to execute the agent
|
|
await call_next()
|
|
|
|
# Check session state after agent execution
|
|
updated_session_message_count = 0
|
|
if context.session:
|
|
memory_state = context.session.state.get(InMemoryHistoryProvider.DEFAULT_SOURCE_ID, {})
|
|
updated_session_message_count = len(memory_state.get("messages", []))
|
|
|
|
print(f"[MiddlewareTypes post-execution] Updated session messages: {updated_session_message_count}")
|
|
|
|
|
|
async def main() -> None:
|
|
"""Example demonstrating session behavior in middleware across multiple runs."""
|
|
print("=== Session Behavior MiddlewareTypes Example ===")
|
|
|
|
# For authentication, run `az login` command in terminal or replace AzureCliCredential with preferred
|
|
# authentication option.
|
|
agent = AzureOpenAIChatClient(credential=AzureCliCredential()).as_agent(
|
|
name="WeatherAgent",
|
|
instructions="You are a helpful weather assistant.",
|
|
tools=get_weather,
|
|
middleware=[thread_tracking_middleware],
|
|
)
|
|
|
|
# Create a session that will persist messages between runs
|
|
session = agent.create_session()
|
|
|
|
print("\nFirst Run:")
|
|
query1 = "What's the weather like in Tokyo?"
|
|
print(f"User: {query1}")
|
|
result1 = await agent.run(query1, session=session)
|
|
print(f"Agent: {result1.text}")
|
|
|
|
print("\nSecond Run:")
|
|
query2 = "How about in London?"
|
|
print(f"User: {query2}")
|
|
result2 = await agent.run(query2, session=session)
|
|
print(f"Agent: {result2.text}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|