#!/usr/bin/env python3
"""
Generated test file for Tool Call Agent Test
Framework: pydantic-ai
Execution mode: async
Streaming: no"""

import os
import sentry_sdk
import asyncio

from pydantic_ai import Agent, ImageUrl, RunContext
from pydantic_ai.models.fallback import FallbackModel


sentry_sdk.init(
    dsn=os.environ.get("SENTRY_DSN"),
    traces_sample_rate=1.0,
    send_default_pii=True,
    stream_gen_ai_spans=True,
)



# Create Pydantic AI agent with system prompt
agent = Agent(
    FallbackModel("openai:gpt-4o-mini-bad-model-name", "openai:gpt-5-nano"),
    system_prompt="",
    name="math_assistant"
)

# Register tools with the agent
@agent.tool
def add(context: RunContext, a: float, b: float):
    """Add two numbers together"""
    return 8

@agent.tool
def multiply(context: RunContext, a: float, b: float):
    """Multiply two numbers together"""
    return 32


async def main():
    # Turn 1: Run agent
    

    try:
        result = await agent.run("Calculate (3 + 5) * 4. First use the add tool to add 3 and 5, then use the multiply tool to multiply the result by 4.")

        # Print response
        print(f"Turn 1 Response: {result.output}")
    except Exception as e:
        print(f"Turn 1 Error: {type(e).__name__}: {e}")

if __name__ == "__main__":
    with sentry_sdk.start_transaction(op="test", name="Tool Call Agent Test"):
        asyncio.run(main())
    sentry_sdk.flush(timeout=5)
