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>
144 lines
4.2 KiB
Python
144 lines
4.2 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
||
|
||
import asyncio
|
||
|
||
from agent_framework import Agent
|
||
from agent_framework.openai import OpenAIResponsesClient
|
||
from dotenv import load_dotenv
|
||
|
||
# Load environment variables from .env file
|
||
load_dotenv()
|
||
|
||
"""Background Responses Sample.
|
||
|
||
This sample demonstrates long-running agent operations using the OpenAI
|
||
Responses API ``background`` option. Two patterns are shown:
|
||
|
||
1. **Non-streaming polling** – start a background run, then poll with the
|
||
``continuation_token`` until the operation completes.
|
||
2. **Streaming with resumption** – start a background streaming run, simulate
|
||
an interruption, and resume from the last ``continuation_token``.
|
||
|
||
Prerequisites:
|
||
- Set the ``OPENAI_API_KEY`` environment variable.
|
||
- A model that benefits from background execution (e.g. ``o3``).
|
||
"""
|
||
|
||
|
||
# 1. Create the agent with an OpenAI Responses client.
|
||
agent = Agent(
|
||
name="researcher",
|
||
instructions="You are a helpful research assistant. Be concise.",
|
||
client=OpenAIResponsesClient(model_id="o3"),
|
||
)
|
||
|
||
|
||
async def non_streaming_polling() -> None:
|
||
"""Demonstrate non-streaming background run with polling."""
|
||
print("=== Non-Streaming Polling ===\n")
|
||
|
||
session = agent.create_session()
|
||
|
||
# 2. Start a background run — returns immediately.
|
||
response = await agent.run(
|
||
messages="Briefly explain the theory of relativity in two sentences.",
|
||
session=session,
|
||
options={"background": True},
|
||
)
|
||
|
||
print(f"Initial status: continuation_token={'set' if response.continuation_token else 'None'}")
|
||
|
||
# 3. Poll until the operation completes.
|
||
poll_count = 0
|
||
while response.continuation_token is not None:
|
||
poll_count += 1
|
||
await asyncio.sleep(2)
|
||
response = await agent.run(
|
||
session=session,
|
||
options={"continuation_token": response.continuation_token},
|
||
)
|
||
print(f" Poll {poll_count}: continuation_token={'set' if response.continuation_token else 'None'}")
|
||
|
||
# 4. Done — print the final result.
|
||
print(f"\nResult ({poll_count} poll(s)):\n{response.text}\n")
|
||
|
||
|
||
async def streaming_with_resumption() -> None:
|
||
"""Demonstrate streaming background run with simulated interruption and resumption."""
|
||
print("=== Streaming with Resumption ===\n")
|
||
|
||
session = agent.create_session()
|
||
|
||
# 2. Start a streaming background run.
|
||
last_token = None
|
||
stream = agent.run(
|
||
messages="Briefly list three benefits of exercise.",
|
||
stream=True,
|
||
session=session,
|
||
options={"background": True},
|
||
)
|
||
|
||
# 3. Read some chunks, then simulate an interruption.
|
||
chunk_count = 0
|
||
print("First stream (before interruption):")
|
||
async for update in stream:
|
||
last_token = update.continuation_token
|
||
if update.text:
|
||
print(update.text, end="", flush=True)
|
||
chunk_count += 1
|
||
if chunk_count >= 3:
|
||
print("\n [simulated interruption]")
|
||
break
|
||
|
||
# 4. Resume from the last continuation token.
|
||
if last_token is not None:
|
||
print("Resumed stream:")
|
||
stream = agent.run(
|
||
stream=True,
|
||
session=session,
|
||
options={"continuation_token": last_token},
|
||
)
|
||
async for update in stream:
|
||
if update.text:
|
||
print(update.text, end="", flush=True)
|
||
|
||
print("\n")
|
||
|
||
|
||
async def main() -> None:
|
||
await non_streaming_polling()
|
||
await streaming_with_resumption()
|
||
|
||
|
||
if __name__ == "__main__":
|
||
asyncio.run(main())
|
||
|
||
"""
|
||
Sample output:
|
||
|
||
=== Non-Streaming Polling ===
|
||
|
||
Initial status: continuation_token=set
|
||
Poll 1: continuation_token=set
|
||
Poll 2: continuation_token=None
|
||
|
||
Result (2 poll(s)):
|
||
The theory of relativity, developed by Albert Einstein, consists of special
|
||
relativity (1905), which shows that the laws of physics are the same for all
|
||
non-accelerating observers and that the speed of light is constant, and general
|
||
relativity (1915), which describes gravity as the curvature of spacetime caused
|
||
by mass and energy.
|
||
|
||
=== Streaming with Resumption ===
|
||
|
||
First stream (before interruption):
|
||
Here are three
|
||
[simulated interruption]
|
||
Resumed stream:
|
||
key benefits of regular exercise:
|
||
|
||
1. **Improved cardiovascular health** ...
|
||
2. **Better mental health** ...
|
||
3. **Stronger muscles and bones** ...
|
||
"""
|