mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
5687e13221
* Renamed create_agent to as_agent * Override for as_agent * Added override
59 lines
1.6 KiB
Python
59 lines
1.6 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
import asyncio
|
|
from typing import Annotated
|
|
|
|
from agent_framework.openai import OpenAIResponsesClient
|
|
|
|
"""
|
|
This sample demonstrates how to configure function invocation settings
|
|
for an client and use a simple ai_function as a tool in an agent.
|
|
|
|
This behavior is the same for all chat client types.
|
|
"""
|
|
|
|
|
|
def add(
|
|
x: Annotated[int, "First number"],
|
|
y: Annotated[int, "Second number"],
|
|
) -> str:
|
|
return f"{x} + {y} = {x + y}"
|
|
|
|
|
|
async def main():
|
|
client = OpenAIResponsesClient()
|
|
if client.function_invocation_configuration is not None:
|
|
client.function_invocation_configuration.include_detailed_errors = True
|
|
client.function_invocation_configuration.max_iterations = 40
|
|
print(f"Function invocation configured as: \n{client.function_invocation_configuration.to_json(indent=2)}")
|
|
|
|
agent = client.as_agent(name="ToolAgent", instructions="Use the provided tools.", tools=add)
|
|
|
|
print("=" * 60)
|
|
print("Call add(239847293, 29834)")
|
|
query = "Add 239847293 and 29834"
|
|
response = await agent.run(query)
|
|
print(f"Response: {response.text}")
|
|
|
|
|
|
"""
|
|
Expected Output:
|
|
============================================================
|
|
Function invocation configured as:
|
|
{
|
|
"type": "function_invocation_configuration",
|
|
"enabled": true,
|
|
"max_iterations": 40,
|
|
"max_consecutive_errors_per_request": 3,
|
|
"terminate_on_unknown_calls": false,
|
|
"additional_tools": [],
|
|
"include_detailed_errors": true
|
|
}
|
|
============================================================
|
|
Call add(239847293, 29834)
|
|
Response: 239,877,127
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|