0d3cb498a3
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Waiting to run
Test and Publish Multi-arch Docker Image / test (push) Waiting to run
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-arm64 platform:linux/arm64 runner:ubuntu-24.04-arm]) (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Blocked by required conditions
Validate Renovate Config / Validate Renovate Configuration (push) Waiting to run
CI / Shell Format Check (push) Has been cancelled
CI / Check Ruby (3.4) (push) Has been cancelled
CI / CI Config (push) Has been cancelled
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Has been cancelled
CI / Build on Node ${{ matrix.node }} (push) Has been cancelled
CI / Style Check (push) Has been cancelled
CI / Generate Assets (push) Has been cancelled
CI / Check Python (3.14) (push) Has been cancelled
CI / Check Python (3.9) (push) Has been cancelled
CI / Build Docs (push) Has been cancelled
CI / Code Scan Action (push) Has been cancelled
CI / Site tests (push) Has been cancelled
CI / webui tests (push) Has been cancelled
CI / Run Integration Tests (push) Has been cancelled
CI / Run Smoke Tests (push) Has been cancelled
CI / Go Tests (push) Has been cancelled
CI / Share Test (push) Has been cancelled
CI / Redteam (Production API) (push) Has been cancelled
CI / Redteam (Staging API) (push) Has been cancelled
CI / GitHub Actions Lint (push) Has been cancelled
CI / Check Ruby (3.0) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
release-please / build (push) Has been cancelled
release-please / publish-npm (push) Has been cancelled
release-please / publish-npm-backfill (push) Has been cancelled
release-please / docker (push) Has been cancelled
release-please / publish-code-scan-action (push) Has been cancelled
release-please / attest-code-scan-action (push) Has been cancelled
85 lines
2.6 KiB
Python
85 lines
2.6 KiB
Python
"""
|
|
Simple weather assistant agent using PydanticAI.
|
|
|
|
This agent demonstrates structured outputs by returning weather information
|
|
in a consistent format using Pydantic models.
|
|
"""
|
|
|
|
from pydantic import BaseModel
|
|
from pydantic_ai import Agent, RunContext
|
|
|
|
# Use the OpenAI Responses API with the smallest current GPT-5 reasoning model.
|
|
# The `openai-responses:` prefix selects the Responses API explicitly (the bare
|
|
# `openai:` prefix also resolves there in PydanticAI v2.0+).
|
|
DEFAULT_MODEL = "openai-responses:gpt-5.4-nano"
|
|
|
|
|
|
class WeatherResponse(BaseModel):
|
|
"""Structured weather response"""
|
|
|
|
location: str
|
|
temperature: str
|
|
description: str
|
|
|
|
|
|
def get_weather(ctx: RunContext, location: str) -> dict:
|
|
"""Get weather data for a location (mock implementation for demo)"""
|
|
# Simple mock weather data for demonstration
|
|
mock_weather = {
|
|
"london": {"temp": "18°C", "desc": "Cloudy"},
|
|
"new york": {"temp": "22°C", "desc": "Sunny"},
|
|
"tokyo": {"temp": "16°C", "desc": "Rainy"},
|
|
}
|
|
|
|
location_lower = location.lower()
|
|
for city, weather in mock_weather.items():
|
|
if city in location_lower:
|
|
return {
|
|
"location": location,
|
|
"temperature": weather["temp"],
|
|
"description": weather["desc"],
|
|
}
|
|
|
|
# Default response for unknown locations
|
|
return {"location": location, "temperature": "21°C", "description": "Clear"}
|
|
|
|
|
|
def get_weather_agent(model: str = DEFAULT_MODEL) -> Agent:
|
|
"""Create a weather agent with structured output"""
|
|
agent = Agent(
|
|
model,
|
|
output_type=WeatherResponse,
|
|
system_prompt=(
|
|
"You are a helpful weather assistant. "
|
|
"Use the get_weather tool to fetch weather data for locations. "
|
|
"Always return responses in the required structured format."
|
|
),
|
|
)
|
|
|
|
agent.tool(get_weather)
|
|
return agent
|
|
|
|
|
|
async def run_weather_agent(query: str, model: str = DEFAULT_MODEL) -> WeatherResponse:
|
|
"""Run the weather agent with a query"""
|
|
try:
|
|
agent = get_weather_agent(model)
|
|
result = await agent.run(query)
|
|
return result.output
|
|
except Exception as e:
|
|
return WeatherResponse(
|
|
location="Unknown", temperature="N/A", description=f"Error: {str(e)}"
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import asyncio
|
|
|
|
async def test_agent():
|
|
queries = ["What's the weather like in London?"]
|
|
for query in queries:
|
|
result = await run_weather_agent(query)
|
|
print(f"{query} -> {result.model_dump_json()}")
|
|
|
|
asyncio.run(test_agent())
|