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>
208 lines
8.0 KiB
Python
208 lines
8.0 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""
|
|
Sample: Request Info with ConcurrentBuilder
|
|
|
|
This sample demonstrates using the `.with_request_info()` method to pause a
|
|
ConcurrentBuilder workflow for specific agents, allowing human review and
|
|
modification of individual agent outputs before aggregation.
|
|
|
|
Purpose:
|
|
Show how to use the request info API that pauses for selected concurrent agents,
|
|
allowing review and steering of their results.
|
|
|
|
Demonstrate:
|
|
- Configuring request info with `.with_request_info()` for specific agents
|
|
- Reviewing output from individual agents during concurrent execution
|
|
- Injecting human guidance for specific agents before aggregation
|
|
|
|
Prerequisites:
|
|
- AZURE_AI_PROJECT_ENDPOINT must be your Azure AI Foundry Agent Service (V2) project endpoint.
|
|
- Azure OpenAI configured for AzureOpenAIResponsesClient with required environment variables
|
|
- Authentication via azure-identity (run az login before executing)
|
|
"""
|
|
|
|
import asyncio
|
|
import os
|
|
from collections.abc import AsyncIterable
|
|
from typing import Any
|
|
|
|
from agent_framework import (
|
|
AgentExecutorResponse,
|
|
Message,
|
|
WorkflowEvent,
|
|
)
|
|
from agent_framework.azure import AzureOpenAIResponsesClient
|
|
from agent_framework.orchestrations import AgentRequestInfoResponse, ConcurrentBuilder
|
|
from azure.identity import AzureCliCredential
|
|
from dotenv import load_dotenv
|
|
|
|
# Load environment variables from .env file
|
|
load_dotenv()
|
|
|
|
# Store chat client at module level for aggregator access
|
|
_chat_client: AzureOpenAIResponsesClient | None = None
|
|
|
|
|
|
async def aggregate_with_synthesis(results: list[AgentExecutorResponse]) -> Any:
|
|
"""Custom aggregator that synthesizes concurrent agent outputs using an LLM.
|
|
|
|
This aggregator extracts the outputs from each parallel agent and uses the
|
|
chat client to create a unified summary, incorporating any human feedback
|
|
that was injected into the conversation.
|
|
|
|
Args:
|
|
results: List of responses from all concurrent agents
|
|
|
|
Returns:
|
|
The synthesized summary text
|
|
"""
|
|
if not _chat_client:
|
|
return "Error: Chat client not initialized"
|
|
|
|
# Extract each agent's final output
|
|
expert_sections: list[str] = []
|
|
human_guidance = ""
|
|
|
|
for r in results:
|
|
try:
|
|
messages = getattr(r.agent_response, "messages", [])
|
|
final_text = messages[-1].text if messages and hasattr(messages[-1], "text") else "(no content)"
|
|
expert_sections.append(f"{getattr(r, 'executor_id', 'analyst')}:\n{final_text}")
|
|
|
|
# Check for human feedback in the conversation (will be last user message if present)
|
|
if r.full_conversation:
|
|
for msg in reversed(r.full_conversation):
|
|
if msg.role == "user" and msg.text and "perspectives" not in msg.text.lower():
|
|
human_guidance = msg.text
|
|
break
|
|
except Exception:
|
|
expert_sections.append(f"{getattr(r, 'executor_id', 'analyst')}: (error extracting output)")
|
|
|
|
# Build prompt with human guidance if provided
|
|
guidance_text = f"\n\nHuman guidance: {human_guidance}" if human_guidance else ""
|
|
|
|
system_msg = Message(
|
|
"system",
|
|
text=(
|
|
"You are a synthesis expert. Consolidate the following analyst perspectives "
|
|
"into one cohesive, balanced summary (3-4 sentences). If human guidance is provided, "
|
|
"prioritize aspects as directed."
|
|
),
|
|
)
|
|
user_msg = Message("user", text="\n\n".join(expert_sections) + guidance_text)
|
|
|
|
response = await _chat_client.get_response([system_msg, user_msg])
|
|
return response.messages[-1].text if response.messages else ""
|
|
|
|
|
|
async def process_event_stream(stream: AsyncIterable[WorkflowEvent]) -> dict[str, AgentRequestInfoResponse] | None:
|
|
"""Process events from the workflow stream to capture human feedback requests."""
|
|
|
|
requests: dict[str, AgentExecutorResponse] = {}
|
|
async for event in stream:
|
|
if event.type == "request_info" and isinstance(event.data, AgentExecutorResponse):
|
|
requests[event.request_id] = event.data
|
|
|
|
if event.type == "output":
|
|
# The output of the workflow comes from the aggregator and it's a single string
|
|
print("\n" + "=" * 60)
|
|
print("ANALYSIS COMPLETE")
|
|
print("=" * 60)
|
|
print("Final synthesized analysis:")
|
|
print(event.data)
|
|
|
|
# Process any requests for human feedback
|
|
responses: dict[str, AgentRequestInfoResponse] = {}
|
|
if requests:
|
|
for request_id, request in requests.items():
|
|
print("\n" + "-" * 40)
|
|
print("INPUT REQUESTED")
|
|
print(
|
|
f"Agent {request.executor_id} just responded with: '{request.agent_response.text}'. "
|
|
"Please provide your feedback."
|
|
)
|
|
print("-" * 40)
|
|
if request.full_conversation:
|
|
print("Conversation context:")
|
|
recent = (
|
|
request.full_conversation[-2:] if len(request.full_conversation) > 2 else request.full_conversation
|
|
)
|
|
for msg in recent:
|
|
name = msg.author_name or msg.role
|
|
text = (msg.text or "")[:150]
|
|
print(f" [{name}]: {text}...")
|
|
print("-" * 40)
|
|
|
|
# Get human input to steer this agent's contribution
|
|
user_input = input("Your guidance for the analysts (or 'skip' to approve): ") # noqa: ASYNC250
|
|
if user_input.lower() == "skip":
|
|
user_input = AgentRequestInfoResponse.approve()
|
|
else:
|
|
user_input = AgentRequestInfoResponse.from_strings([user_input])
|
|
|
|
responses[request_id] = user_input
|
|
|
|
return responses if responses else None
|
|
|
|
|
|
async def main() -> None:
|
|
global _chat_client
|
|
_chat_client = AzureOpenAIResponsesClient(
|
|
project_endpoint=os.environ["AZURE_AI_PROJECT_ENDPOINT"],
|
|
deployment_name=os.environ["AZURE_AI_MODEL_DEPLOYMENT_NAME"],
|
|
credential=AzureCliCredential(),
|
|
)
|
|
|
|
# Create agents that analyze from different perspectives
|
|
technical_analyst = _chat_client.as_agent(
|
|
name="technical_analyst",
|
|
instructions=(
|
|
"You are a technical analyst. When given a topic, provide a technical "
|
|
"perspective focusing on implementation details, performance, and architecture. "
|
|
"Keep your analysis to 2-3 sentences."
|
|
),
|
|
)
|
|
|
|
business_analyst = _chat_client.as_agent(
|
|
name="business_analyst",
|
|
instructions=(
|
|
"You are a business analyst. When given a topic, provide a business "
|
|
"perspective focusing on ROI, market impact, and strategic value. "
|
|
"Keep your analysis to 2-3 sentences."
|
|
),
|
|
)
|
|
|
|
user_experience_analyst = _chat_client.as_agent(
|
|
name="ux_analyst",
|
|
instructions=(
|
|
"You are a UX analyst. When given a topic, provide a user experience "
|
|
"perspective focusing on usability, accessibility, and user satisfaction. "
|
|
"Keep your analysis to 2-3 sentences."
|
|
),
|
|
)
|
|
|
|
# Build workflow with request info enabled and custom aggregator
|
|
workflow = (
|
|
ConcurrentBuilder(participants=[technical_analyst, business_analyst, user_experience_analyst])
|
|
.with_aggregator(aggregate_with_synthesis)
|
|
# Only enable request info for the technical analyst agent
|
|
.with_request_info(agents=["technical_analyst"])
|
|
.build()
|
|
)
|
|
|
|
# Initiate the first run of the workflow.
|
|
# Runs are not isolated; state is preserved across multiple calls to run.
|
|
stream = workflow.run("Analyze the impact of large language models on software development.", stream=True)
|
|
|
|
pending_responses = await process_event_stream(stream)
|
|
while pending_responses is not None:
|
|
# Run the workflow until there is no more human feedback to provide,
|
|
# in which case this workflow completes.
|
|
stream = workflow.run(stream=True, responses=pending_responses)
|
|
pending_responses = await process_event_stream(stream)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|