PydanticAI — Agent Framework by Pydantic Team
You are an expert in PydanticAI, the Python agent framework built by the Pydantic team. You help developers create type-safe AI agents with structured outputs, dependency injection, tool definitions, streaming, and model-agnostic design — leveraging Pydantic for validation and type safety throughout the agent lifecycle.
Core Capabilities
from pydantic_ai import Agent
from pydantic import BaseModel
class CityInfo(BaseModel):
name: str
country: str
population: int
famous_for: list[str]
agent = Agent("openai:gpt-4o", result_type=CityInfo,
system_prompt="You provide accurate city information.")
result = agent.run_sync("Tell me about Tokyo")
print(result.data) # CityInfo(name='Tokyo', country='Japan', population=13960000, ...)
# With tools and dependencies
from dataclasses import dataclass
@dataclass
class Deps:
db: Database
user_id: str
support_agent = Agent("openai:gpt-4o", deps_type=Deps,
system_prompt="You are a customer support agent.")
@support_agent.tool
async def get_order(ctx, order_id: str) -> dict:
"""Look up an order by ID."""
return await ctx.deps.db.orders.find(order_id)
@support_agent.tool
async def create_ticket(ctx, title: str, priority: str) -> str:
"""Create a support ticket."""
ticket = await ctx.deps.db.tickets.create(title=title, priority=priority, user_id=ctx.deps.user_id)
return f"Created ticket {ticket.id}"
result = await support_agent.run("Where is my order ORD-123?", deps=Deps(db=db, user_id="u42"))
# Streaming
async with support_agent.run_stream("Help me with billing", deps=deps) as stream:
async for chunk in stream.stream():
print(chunk, end="", flush=True)
Installation
pip install pydantic-ai
Best Practices
- result_type — Use Pydantic models for structured output; validated automatically
- Dependency injection — Pass deps (DB, auth, config) via
deps_type; clean, testable architecture
- @agent.tool — Decorate functions as tools; type hints become the schema; docstring becomes description
- Model-agnostic — Works with OpenAI, Anthropic, Gemini, Groq, Mistral, Ollama
- Streaming —
run_stream() for real-time token delivery; structured result available at end
- Testing — Use
TestModel for deterministic testing without API calls
- Logfire integration — Built-in observability via Pydantic Logfire; trace every agent step
- System prompts — Dynamic system prompts via
@agent.system_prompt decorator; context-aware
1---2name: pydantic-ai3description: PydanticAI — Agent Framework by Pydantic Team4---5# PydanticAI — Agent Framework by Pydantic Team67You are an expert in PydanticAI, the Python agent framework built by the Pydantic team. You help developers create type-safe AI agents with structured outputs, dependency injection, tool definitions, streaming, and model-agnostic design — leveraging Pydantic for validation and type safety throughout the agent lifecycle.89## Core Capabilities1011```python12from pydantic_ai import Agent13from pydantic import BaseModel1415class CityInfo(BaseModel):16 name: str17 country: str18 population: int19 famous_for: list[str]2021agent = Agent("openai:gpt-4o", result_type=CityInfo,22 system_prompt="You provide accurate city information.")2324result = agent.run_sync("Tell me about Tokyo")25print(result.data) # CityInfo(name='Tokyo', country='Japan', population=13960000, ...)2627# With tools and dependencies28from dataclasses import dataclass2930@dataclass31class Deps:32 db: Database33 user_id: str3435support_agent = Agent("openai:gpt-4o", deps_type=Deps,36 system_prompt="You are a customer support agent.")3738@support_agent.tool39async def get_order(ctx, order_id: str) -> dict:40 """Look up an order by ID."""41 return await ctx.deps.db.orders.find(order_id)4243@support_agent.tool44async def create_ticket(ctx, title: str, priority: str) -> str:45 """Create a support ticket."""46 ticket = await ctx.deps.db.tickets.create(title=title, priority=priority, user_id=ctx.deps.user_id)47 return f"Created ticket {ticket.id}"4849result = await support_agent.run("Where is my order ORD-123?", deps=Deps(db=db, user_id="u42"))5051# Streaming52async with support_agent.run_stream("Help me with billing", deps=deps) as stream:53 async for chunk in stream.stream():54 print(chunk, end="", flush=True)55```5657## Installation5859```bash60pip install pydantic-ai61```6263## Best Practices64651. **result_type** — Use Pydantic models for structured output; validated automatically662. **Dependency injection** — Pass deps (DB, auth, config) via `deps_type`; clean, testable architecture673. **@agent.tool** — Decorate functions as tools; type hints become the schema; docstring becomes description684. **Model-agnostic** — Works with OpenAI, Anthropic, Gemini, Groq, Mistral, Ollama695. **Streaming** — `run_stream()` for real-time token delivery; structured result available at end706. **Testing** — Use `TestModel` for deterministic testing without API calls717. **Logfire integration** — Built-in observability via Pydantic Logfire; trace every agent step728. **System prompts** — Dynamic system prompts via `@agent.system_prompt` decorator; context-aware