mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
5e056b672e
* Python: Provider-leading client design & OpenAI package extraction Major refactoring of the Python Agent Framework client architecture: - Extract OpenAI clients into new `agent-framework-openai` package - Core package no longer depends on openai, azure-identity, azure-ai-projects - Rename clients for discoverability: OpenAIResponsesClient → OpenAIChatClient, OpenAIChatClient → OpenAIChatCompletionClient - Unify `model_id`/`deployment_name`/`model_deployment_name` → `model` param - New FoundryChatClient for Azure AI Foundry Responses API - New FoundryAgent/FoundryAgentClient for connecting to pre-configured Foundry agents - Remove OpenAIBase/OpenAIConfigMixin from non-deprecated client MRO - Deprecate AzureOpenAI* clients, AzureAIClient, OpenAIAssistantsClient - Reorganize samples: azure_openai+azure_ai+azure_ai_agent → azure/ - ADR-0020: Provider-Leading Client Design Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix: missing Agent imports in samples, .model_id → .model in foundry_local sample Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix: CI failures — mypy errors, coverage targets, sample imports - azure-ai mypy: add type ignores for TypedDict total=, model arg, forward ref - Coverage: replace core.azure/openai targets with openai package target - project_provider: add type annotation for opts dict Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix: populate openai .pyi stub, fix broken README links, coverage targets Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fixes * updated observabilitty * reset azure init.pyi * fix errors * updated adr number * fix foundry local * fixed not renamed docstrings and comments, and added deprecated markers to old classes * fix tests and pyprojects * fix test vars * updated function tests * update durable * updated test setup for functions * Fix Foundry auth in workflow samples Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Stabilize Python integration workflows Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Update hosting samples for Foundry Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Trigger full CI rerun Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Trigger CI rerun again Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * trigger rerun * trigger rerun * fix for litellm * undo durabletask changes * Move Foundry APIs into foundry namespace Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix Foundry pyproject formatting Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Split provider samples by Foundry surface Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Restore hosting sample requirements Also fix the Foundry Local sample link after the provider sample move. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * updated tests * udpated foundry integration tests * removed dist from azurefunctions tests * Use separate Foundry clients for concurrent agents Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix client setup in azfunc and durable * disabled two tests * updated setup for some function and durable tests * improved azure openai setup with new clients * ignore deprecated * fixes * skip 11 * remove openai assistants int tests --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
104 lines
3.5 KiB
Python
104 lines
3.5 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
||
|
||
import asyncio
|
||
from typing import Annotated
|
||
|
||
from agent_framework import Agent, tool
|
||
from agent_framework.openai import OpenAIResponsesClient
|
||
from dotenv import load_dotenv
|
||
|
||
# Load environment variables from .env file
|
||
load_dotenv()
|
||
|
||
"""
|
||
This sample demonstrates using tool within a class,
|
||
showing how to manage state within the class that affects tool behavior.
|
||
|
||
And how to use tool-decorated methods as tools in an agent in order to adjust the behavior of a tool.
|
||
"""
|
||
|
||
|
||
class MyFunctionClass:
|
||
def __init__(self, safe: bool = False) -> None:
|
||
"""Simple class with two tools: divide and add.
|
||
|
||
The safe parameter controls whether divide raises on division by zero or returns `infinity` for divide by zero.
|
||
"""
|
||
self.safe = safe
|
||
|
||
def divide(
|
||
self,
|
||
a: Annotated[int, "Numerator"],
|
||
b: Annotated[int, "Denominator"],
|
||
) -> str:
|
||
"""Divide two numbers, safe to use also with 0 as denominator."""
|
||
result = "∞" if b == 0 and self.safe else a / b
|
||
return f"{a} / {b} = {result}"
|
||
|
||
def add(
|
||
self,
|
||
x: Annotated[int, "First number"],
|
||
y: Annotated[int, "Second number"],
|
||
) -> str:
|
||
return f"{x} + {y} = {x + y}"
|
||
|
||
|
||
async def main():
|
||
# Creating my function class with safe division enabled
|
||
tools = MyFunctionClass(safe=True)
|
||
# Applying the tool decorator to one of the methods of the class
|
||
add_function = tool(description="Add two numbers.")(tools.add)
|
||
|
||
agent = Agent(
|
||
client=OpenAIResponsesClient(),
|
||
name="ToolAgent",
|
||
instructions="Use the provided tools.",
|
||
)
|
||
print("=" * 60)
|
||
print("Step 1: Call divide(10, 0) - tool returns infinity")
|
||
query = "Divide 10 by 0"
|
||
response = await agent.run(
|
||
query,
|
||
tools=[add_function, tools.divide],
|
||
)
|
||
print(f"Response: {response.text}")
|
||
print("=" * 60)
|
||
print("Step 2: Call set safe to False and call again")
|
||
# Disabling safe mode to allow exceptions
|
||
tools.safe = False
|
||
response = await agent.run(query, tools=[add_function, tools.divide])
|
||
print(f"Response: {response.text}")
|
||
print("=" * 60)
|
||
|
||
|
||
"""
|
||
Expected Output:
|
||
============================================================
|
||
Step 1: Call divide(10, 0) - tool returns infinity
|
||
Response: Division by zero is undefined in standard arithmetic. There is no real number that equals 10 divided by 0.
|
||
|
||
- If you look at limits: as x → 0+ (denominator approaches 0 from the positive side), 10/x → +∞; as x → 0−, 10/x → −∞.
|
||
- Some calculators may display "infinity" or give an error, but that's not a real number.
|
||
|
||
If you want a numeric surrogate, you can use a small nonzero denominator, e.g., 10/0.001 = 10000. Would you like to
|
||
see more on limits or handle it with a tiny epsilon?
|
||
============================================================
|
||
Step 2: Call set safe to False and call again
|
||
Response: Division by zero is undefined in standard arithmetic. There is no number y such that 0 × y = 10.
|
||
|
||
If you’re looking at limits:
|
||
- as x → 0+, 10/x → +∞
|
||
- as x → 0−, 10/x → −∞
|
||
So the limit does not exist.
|
||
|
||
In programming, dividing by zero usually raises an error or results in special values (e.g., NaN or ∞) depending
|
||
on the language.
|
||
|
||
If you want, tell me what you’d like to do instead (e.g., compute 10 divided by 2, or handle division by zero safely
|
||
in code), and I can help with examples.
|
||
============================================================
|
||
"""
|
||
|
||
if __name__ == "__main__":
|
||
asyncio.run(main())
|