Pydantic AI
Python agent framework for building production-grade GenAI applications with the "FastAPI feeling".
Quick Navigation
| Topic |
Reference |
| Agents |
agents.md |
| Capabilities |
agents.md |
| Tools |
tools.md |
| Models |
models.md |
| Embeddings |
embeddings.md |
| Evals |
evals.md |
| Integrations |
integrations.md |
| Graphs |
graphs.md |
| UI Streams |
ui.md |
| Installation |
installation.md |
When to Use
- Building AI agents with structured output
- Need type-safe, IDE-friendly agent development
- Require dependency injection for tools
- Multi-model support (OpenAI, Anthropic, Gemini, etc.)
- Production observability with Logfire
- Complex workflows with graphs
Installation
See references/installation.md for full/slim install options and optional dependency groups. Requires Python 3.10+.
Release Highlights (2.23.0 -> 2.39.0)
- Realtime speech-to-speech (
2.28.0): Agent.realtime() with browser WebRTC plus server sideband support; Azure AI Voice Live via the azure_voice_live setting (2.29.0); RealtimeSession.send_audio() accepts async iterables (2.36.0).
- Run cancellation (
2.26.0): AgentRun.cancel(), RunContext.cancel(), and RunCancelled; stream_run_events() returns a public AgentRunEvents handle with cancel() and run-state access.
- Deferred tool reveal (
2.23.0/2.26.0/2.30.0): ToolAvailabilityDeltaPart with native tool_addition/additional_tools; tools can stay hidden until revealed via tool search, load_capability, or ToolReturn.tools, on each provider's native deferral/addition channel; a deferred tool must be revealed before it can be called.
- Cost tracking (
2.23.0): cost on RunUsage and cost_limit on UsageLimits. Context window (2.38.0): context_window on ModelProfile and context_window_used on RunContext.
- Typed events (
2.38.0): application code and capabilities can emit typed CustomEvent/CapabilityEvent into the run event stream and subscribe with @on_event. Durable execution (2.36.0): @durable_operation for capabilities plus a public backend API for third-party durable execution engines.
- Providers and models: Crusoe (
2.28.0), Snowflake Cortex (2.27.0), and vLLM (2.38.0) providers; gemini-3.7-flash (2.30.0), gemini-3.8-flash (2.38.0), Claude Fable 5.1 / Mythos 5.1 (2.38.0), OpenAI gpt-6-astra (2.39.0), GLM-5.3 on ZaiModel (2.34.0), DeepSeek V4 Flash (2.26.0).
- MCP and HTTP clients:
MCPToolset supports FastMCP 4 and MCP SDK v2 alongside FastMCP 3 (2.29.0). Builds moved to httpx2 clients; pydantic-ai[anthropic] requires anthropic>=1.0.0 and a custom AnthropicProvider http_client must be an httpx2.AsyncClient (2.32.0/2.33.0).
clai CLI (2.36.0): --mcp-config support and tool-call streaming. OpenRouter (2.30.0/2.32.0): openrouter:web_search for web search and web-search sources in provider_details["annotations"].
- Security (upgrade):
2.24.0 fixes unbounded memory in the local web_fetch tool / FileUrl media downloads (GHSA-v2xh-2vp8-57h8); 2.27.1 fixes a low-severity retry-prompt redaction leak when include_content=False (GHSA-3gh4-cghq-f8v4); 2.28.0 fixes a high-severity missing content-type check on the dev web chat UI so arbitrary cross-origin requests no longer run the agent (GHSA-h4xc-3qfq-jf93); 2.30.0 fixes DNS-rebinding via Host-header validation on the dev web chat UI, with an opt-in allowed_hosts for non-loopback deployments (GHSA-q2xc-rrxj-58x9).
Release Highlights (2.13.0 -> 2.22.0)
- Durability capabilities replace wrapper agents:
TemporalDurability, DBOSDurability, and PrefectDurability (2.14.0) attach to a regular Agent via capabilities=[...], replacing the deprecated TemporalAgent / DBOSAgent / PrefectAgent wrapper classes (removed in v3). Existing wrapper-based workflows keep replaying correctly after switching. See integrations.md for the updated Temporal/DBOS/Prefect examples.
- New models/providers: Claude Opus 5 (
2.20.0), gemini-3.6-flash/gemini-3.5-flash-lite (2.16.0), Mistral reasoning_effort (2.14.0) and mistral_prompt_cache_key (2.16.0), OpenAI explicit prompt caching for gpt-5.6 (2.15.0), BedrockMantleProvider (2.18.0), and the AdvisorTool builtin tool for Anthropic/OpenRouter (2.18.0).
- Usage & limits:
cache_hit_ratio on RequestUsage/RunUsage (2.13.0), ToolFailed for model-visible failures that don't consume a retry (2.16.0), optional run_id= on runs (2.16.0), tool-retry budget overrides at run/iter/override time (2.15.0), and per_request_input_tokens_limit on UsageLimits (2.21.0).
- Error handling & instrumentation:
ModelHTTPError now carries headers and a parsed retry_after from every provider SDK (2.19.0); RaiseContentFilterError capability and include_model_request_parameters instrumentation setting (2.13.0); per-message OTel serialization is cached to avoid O(n^2) cost (2.17.0).
- Dependencies: the
fastmcp optional group now constrains fastmcp<4 (2.19.0).
Release Highlights (2.0.0 -> 2.12.0)
- V2 stable (
2.0.0): harness-first design with capabilities as the core primitive, a single composable unit bundling an agent's tools, hooks, instructions, and model settings. Migrating from V1 requires the official upgrade guide; the capability-based paths deprecated across the 1.9x line are now the default.
- Message history & processing:
message_history is provider-valid with repaired tool-call pairing, HistoryProcessor is exported, and deferred tool-call events plus EnqueuedMessagesEvent are available (2.10.0 to 2.12.0).
- New models/providers: Moonshot AI
kimi-k3, OpenAI background mode, and Anthropic stop_reason=pause_turn support; standardized reasoning-effort handling across Groq, DeepSeek, and Cerebras.
- Embeddings & tokens: Gemini 2 text-prefix conditioning for embeddings and output audio-token accumulation in usage tracking.
- Fixes:
ToolReturnPart serialization uses field aliases, Anthropic/Bedrock native output schema handling, and actionable hints on usage-limit and tool-retry errors.
Release Highlights (1.96.1)
- V2 preparation:
Agent(..., prepare_tools=..., prepare_output_tools=..., event_stream_handler=...) is now the deprecated path; capability-based migration is the new direction.
- Capability migration: use
PrepareTools, PrepareOutputTools, and ProcessEventStream capabilities instead of wiring those behaviors through constructor sugar.
- OpenAI fixes: the latest patch line also tightens
OpenAIResponsesModel system-prompt-role handling and image-generation request shaping.
Release Highlights (1.97.0 -> 1.102.0)
- MCP migration: prefer
MCPToolset for new MCP integrations. FastMCPToolset and the older MCPServer* client surface are now on the deprecation path.
- Google provider split:
GoogleProvider and GoogleCloudProvider are now distinct, and model ids move from google-gla: / google-vertex: to google: / google-cloud:.
- Streaming migration: move from
stream_responses() to stream_response(); the newer API yields ModelResponse objects directly.
- Retry configuration: prefer
Agent(retries=...) or AgentRetries(...) over older constructor-level retry knobs.
- New runtime tools:
ctx.enqueue() and MCP background tasks make it easier to queue follow-up work without forcing it into the current response turn.
Release Highlights (1.105.0 -> 1.107.0)
- New models: Claude Fable 5 and Claude Mythos 5 are supported (1.107.0), alongside Grok 4.3
reasoning_effort and updated xAI model names (1.105.0).
- Deferred loading: instructions, tools, model settings, and hooks can now be loaded on demand instead of eagerly at agent construction (1.105.0).
- Model introspection:
known_model_names() enumerates KnownModelName members (1.107.0).
- OpenRouter caching:
CachePoint and prompt caching are implemented for OpenRouter (1.107.0).
- xAI config:
XaiProvider gains api_host and timeout, plus seed parameter mapping (1.106.0).
- Security:
VercelAIAdapter UploadedFile handling was hardened against a confused-deputy file-read vulnerability (GHSA-h7p7-w5gc-xj3w, 1.106.0).
- Fixes: incomplete streamed responses when
event_stream_handler doesn't consume the stream, from_data_uri on non-base64 data URIs, Temporal gateway/ model construction, GoogleModelSettings.google_cached_content request shaping, Anthropic Bedrock message=None start events, and AnthropicModel.count_tokens with native tools.
Release Highlights (1.103.0 -> 1.104.0)
- MCP prompts: maintained
McpServer integrations can now list and fetch prompts with list_prompts and get_prompt; still prefer MCPToolset for new client code unless legacy wrappers are required.
- UI adapters:
VercelAIAdapter round-trips message timestamps through UIMessage.metadata, and UIAdapter.sanitize_messages strips client-submitted force_download from FileUrl parts.
- Provider/model updates: Claude Opus 4.8 is supported,
OpenRouterModel can use anthropic_eager_input_streaming, and hybrid OpenRouter/xAI/Bedrock routes now forward thinking=False consistently.
- Bedrock/toolset fixes: Bedrock maps malformed model/tool output to
FinishReason.error, recognizes adaptive thinking, preserves single-tool tool_choice cache behavior, and toolset prepare callbacks warn when they accidentally return None.
Release Highlights (1.75.0 -> 1.84.1)
- Capabilities:
CapabilityOrdering adds explicit wrapping/ordering control (innermost, outermost, wraps, wrapped_by, requires) for complex capability stacks.
- Compaction: new server-side compaction capabilities for OpenAI and Anthropic; OpenAI adds stateful compaction mode.
- Models: Claude Opus 4.7 support and a native
OllamaModel path with corrected Ollama capability flags for structured output.
- Tools: tool hooks now consistently receive dict-shaped validated args for single-
BaseModel tools, and internal output tools skip hook execution.
- Hardening: Google
FileSearchTool parsing received regex hardening in the 1.83/1.84 line.
Release Highlights (1.71.0 → 1.74.0)
- Capabilities: composable, reusable units of agent behavior that bundle tools, lifecycle hooks, instructions, and model settings into a single class. Plug into any agent for maximum reuse.
- AgentSpec: load agents from YAML/JSON files via
Agent.from_file. Supports TemplateStr for templated instructions referencing deps.
- Hooks capability: define hooks using decorators (
@hooks.on_model_request, etc.).
- Thinking capability: cross-provider
thinking model setting for reasoning.
- Provider-adaptive tools:
WebSearch, WebFetch, MCP, ImageGeneration — automatically fall back from builtin (provider) tools to local tools.
- Online evaluation: evaluation infrastructure in
pydantic-evals.
TextContent: user prompts with metadata not sent to model.
- CaseLifecycle hooks: hooks for
Dataset.evaluate lifecycle.
- Model swapping in hooks:
before_model_request / wrap hooks can swap models via ModelRequestContext.
ModelRetry from hooks: hooks can raise ModelRetry for retry control flow.
- Sync tool preparation functions supported.
MCP capability no longer requires explicit url=.
Release Highlights (1.69.0 → 1.70.0)
- Agents:
Agent(description=...) adds a human-readable description to the run span as gen_ai.agent.description when instrumentation is enabled.
- Models:
FallbackModel now supports response-based fallback handlers for semantic failures in non-streaming runs.
- Tools: multimodal tool results are passed directly to provider APIs instead of always being split into extra user-message parts.
- Bedrock:
bedrock_inference_profile is available on model and embedding settings for routing requests through an inference profile ARN.
- Stability: provider fixes landed for OpenRouter Anthropic model matching, Cohere embeddings, Google image sizes, Bedrock tool-name sanitization, and malformed tool-call retry handling.
Quick Start
Basic Agent
from pydantic_ai import Agent
agent = Agent(
'openai:gpt-4o',
instructions='Be concise, reply with one sentence.'
)
result = agent.run_sync('Where does "hello world" come from?')
print(result.output)
With Structured Output
from pydantic import BaseModel
from pydantic_ai import Agent
class CityInfo(BaseModel):
name: str
country: str
population: int
agent = Agent('openai:gpt-4o', output_type=CityInfo)
result = agent.run_sync('Tell me about Paris')
print(result.output) # CityInfo(name='Paris', country='France', population=2161000)
With Tools and Dependencies
from dataclasses import dataclass
from pydantic_ai import Agent, RunContext
@dataclass
class Deps:
user_id: int
agent = Agent('openai:gpt-4o', deps_type=Deps)
@agent.tool
async def get_user_name(ctx: RunContext[Deps]) -> str:
"""Get the current user's name."""
return f"User #{ctx.deps.user_id}"
result = agent.run_sync('What is my name?', deps=Deps(user_id=123))
Key Features
| Feature |
Description |
| Type-safe |
Full IDE support, type checking |
| Model-agnostic |
30+ providers supported |
| Dependency Injection |
Pass context to tools |
| Structured Output |
Pydantic model validation |
| Embeddings |
Multi-provider vector support |
| Logfire Integration |
Built-in observability |
| MCP Support |
External tools and data |
| Evals |
Systematic testing |
| Graphs |
Complex workflow support |
Supported Models
| Provider |
Models |
| OpenAI |
GPT-4o, GPT-4, o1, o3 |
| Anthropic |
Claude Opus 5, Claude Opus 4.8, Claude 4, Claude 3.5 |
| Google |
Gemini 2.0, Gemini 1.5 |
| xAI |
Grok-4 (native SDK) |
| Groq |
Llama, Mixtral |
| Mistral |
Mistral Large, Codestral |
| Azure |
Azure OpenAI |
| Bedrock |
AWS Bedrock + Nova 2.0 |
| SambaNova |
SambaNova models |
| Ollama |
Local models |
Best Practices
- Use type hints — enables IDE support and validation
- Define output types — guarantees structured responses
- Use dependencies — inject context into tools
- Add tool docstrings — LLM uses them as descriptions
- Enable Logfire — for production observability
- Use
run_sync for simple cases — run for async
- Override deps for testing —
agent.override(deps=...)
- Set usage limits — prevent infinite loops with
UsageLimits
Prohibitions
- Do not expose API keys in code
- Do not skip output validation in production
- Do not ignore tool errors
- Do not use
run_stream without handling partial outputs
- Do not forget to close MCP connections (
async with agent)
- Do not assume capability order is arbitrary once multiple wrappers/hooks are involved; define it explicitly when composition matters.
Common Patterns
Streaming Response
async with agent.run_stream('Query') as response:
async for text in response.stream_text():
print(text, end='')
Fallback Models
from pydantic_ai.models.fallback import FallbackModel
fallback = FallbackModel(openai_model, anthropic_model)
agent = Agent(fallback)
MCP Integration
from pydantic_ai.mcp import MCPToolset
toolset = MCPToolset(command='python', args=['mcp_server.py'])
agent = Agent('openai:gpt-4o', toolsets=[toolset])
Testing with TestModel
from pydantic_ai.models.test import TestModel
agent = Agent(model=TestModel())
result = agent.run_sync('test') # Deterministic output
Embeddings
from pydantic_ai import Embedder
embedder = Embedder('openai:text-embedding-3-small')
# Embed search query
result = await embedder.embed_query('What is ML?')
# Embed documents for indexing
docs = ['Doc 1', 'Doc 2', 'Doc 3']
result = await embedder.embed_documents(docs)
See embeddings.md for providers and settings.
xAI Provider
from pydantic_ai import Agent
agent = Agent('xai:grok-4-1-fast-non-reasoning')
See models.md for configuration details.
Exa Neural Search
import os
from pydantic_ai import Agent
from pydantic_ai.common_tools.exa import ExaToolset
api_key = os.getenv('EXA_API_KEY')
toolset = ExaToolset(api_key, num_results=5, include_search=True)
agent = Agent('openai:gpt-4o', toolsets=[toolset])
See tools.md for all Exa tools.
Links
1---2name: pydantic-ai3description: Pydantic AI Python agent framework. Covers typed tools, model providers, evals, MCP, UI adapters, and observability. Use when building Python AI agents with Pydantic AI, configuring model providers, implementing typed tools/dependencies, running evals, or integrating MCP servers. Keywords: pydantic-ai, agents, evals, MCP, Logfire.4---5
6# Pydantic AI
7
8Python agent framework for building production-grade GenAI applications with the "FastAPI feeling".
9
10## Quick Navigation
11
12| Topic | Reference |
13| ------------ | --------------------------------------------- |
14| Agents | [agents.md](references/agents.md) |
15| Capabilities | [agents.md](references/agents.md) |
16| Tools | [tools.md](references/tools.md) |
17| Models | [models.md](references/models.md) |
18| Embeddings | [embeddings.md](references/embeddings.md) |
19| Evals | [evals.md](references/evals.md) |
20| Integrations | [integrations.md](references/integrations.md) |
21| Graphs | [graphs.md](references/graphs.md) |
22| UI Streams | [ui.md](references/ui.md) |
23| Installation | [installation.md](references/installation.md) |
24
25## When to Use
26
27- Building AI agents with structured output
28- Need type-safe, IDE-friendly agent development
29- Require dependency injection for tools
30- Multi-model support (OpenAI, Anthropic, Gemini, etc.)
31- Production observability with Logfire
32- Complex workflows with graphs
33
34## Installation
35
36See `references/installation.md` for full/slim install options and optional dependency groups. Requires Python 3.10+.
37
38## Release Highlights (2.23.0 -> 2.39.0)
39
40- **Realtime speech-to-speech** (`2.28.0`): `Agent.realtime()` with browser WebRTC plus server sideband support; Azure AI Voice Live via the `azure_voice_live` setting (`2.29.0`); `RealtimeSession.send_audio()` accepts async iterables (`2.36.0`).
41- **Run cancellation** (`2.26.0`): `AgentRun.cancel()`, `RunContext.cancel()`, and `RunCancelled`; `stream_run_events()` returns a public `AgentRunEvents` handle with `cancel()` and run-state access.
42- **Deferred tool reveal** (`2.23.0`/`2.26.0`/`2.30.0`): `ToolAvailabilityDeltaPart` with native `tool_addition`/`additional_tools`; tools can stay hidden until revealed via tool search, `load_capability`, or `ToolReturn.tools`, on each provider's native deferral/addition channel; a deferred tool must be revealed before it can be called.
43- **Cost tracking** (`2.23.0`): `cost` on `RunUsage` and `cost_limit` on `UsageLimits`. **Context window** (`2.38.0`): `context_window` on `ModelProfile` and `context_window_used` on `RunContext`.
44- **Typed events** (`2.38.0`): application code and capabilities can emit typed `CustomEvent`/`CapabilityEvent` into the run event stream and subscribe with `@on_event`. **Durable execution** (`2.36.0`): `@durable_operation` for capabilities plus a public backend API for third-party durable execution engines.
45- **Providers and models**: Crusoe (`2.28.0`), Snowflake Cortex (`2.27.0`), and vLLM (`2.38.0`) providers; `gemini-3.7-flash` (`2.30.0`), `gemini-3.8-flash` (`2.38.0`), Claude Fable 5.1 / Mythos 5.1 (`2.38.0`), OpenAI `gpt-6-astra` (`2.39.0`), GLM-5.3 on `ZaiModel` (`2.34.0`), DeepSeek V4 Flash (`2.26.0`).
46- **MCP and HTTP clients**: `MCPToolset` supports FastMCP 4 and MCP SDK v2 alongside FastMCP 3 (`2.29.0`). Builds moved to `httpx2` clients; `pydantic-ai[anthropic]` requires `anthropic>=1.0.0` and a custom `AnthropicProvider` `http_client` must be an `httpx2.AsyncClient` (`2.32.0`/`2.33.0`).
47- **`clai` CLI** (`2.36.0`): `--mcp-config` support and tool-call streaming. **OpenRouter** (`2.30.0`/`2.32.0`): `openrouter:web_search` for web search and web-search sources in `provider_details["annotations"]`.
48- **Security (upgrade)**: `2.24.0` fixes unbounded memory in the local `web_fetch` tool / `FileUrl` media downloads (GHSA-v2xh-2vp8-57h8); `2.27.1` fixes a low-severity retry-prompt redaction leak when `include_content=False` (GHSA-3gh4-cghq-f8v4); `2.28.0` fixes a high-severity missing content-type check on the dev web chat UI so arbitrary cross-origin requests no longer run the agent (GHSA-h4xc-3qfq-jf93); `2.30.0` fixes DNS-rebinding via `Host`-header validation on the dev web chat UI, with an opt-in `allowed_hosts` for non-loopback deployments (GHSA-q2xc-rrxj-58x9).
49
50## Release Highlights (2.13.0 -> 2.22.0)
51
52- **Durability capabilities replace wrapper agents**: `TemporalDurability`, `DBOSDurability`, and `PrefectDurability` (`2.14.0`) attach to a regular `Agent` via `capabilities=[...]`, replacing the deprecated `TemporalAgent` / `DBOSAgent` / `PrefectAgent` wrapper classes (removed in v3). Existing wrapper-based workflows keep replaying correctly after switching. See `integrations.md` for the updated Temporal/DBOS/Prefect examples.
53- **New models/providers**: Claude Opus 5 (`2.20.0`), `gemini-3.6-flash`/`gemini-3.5-flash-lite` (`2.16.0`), Mistral `reasoning_effort` (`2.14.0`) and `mistral_prompt_cache_key` (`2.16.0`), OpenAI explicit prompt caching for `gpt-5.6` (`2.15.0`), `BedrockMantleProvider` (`2.18.0`), and the `AdvisorTool` builtin tool for Anthropic/OpenRouter (`2.18.0`).
54- **Usage & limits**: `cache_hit_ratio` on `RequestUsage`/`RunUsage` (`2.13.0`), `ToolFailed` for model-visible failures that don't consume a retry (`2.16.0`), optional `run_id=` on runs (`2.16.0`), tool-retry budget overrides at `run`/`iter`/`override` time (`2.15.0`), and `per_request_input_tokens_limit` on `UsageLimits` (`2.21.0`).
55- **Error handling & instrumentation**: `ModelHTTPError` now carries `headers` and a parsed `retry_after` from every provider SDK (`2.19.0`); `RaiseContentFilterError` capability and `include_model_request_parameters` instrumentation setting (`2.13.0`); per-message OTel serialization is cached to avoid `O(n^2)` cost (`2.17.0`).
56- **Dependencies**: the `fastmcp` optional group now constrains `fastmcp<4` (`2.19.0`).
57
58## Release Highlights (2.0.0 -> 2.12.0)
59
60- **V2 stable (`2.0.0`)**: harness-first design with **capabilities** as the core primitive, a single composable unit bundling an agent's tools, hooks, instructions, and model settings. Migrating from V1 requires the official upgrade guide; the capability-based paths deprecated across the 1.9x line are now the default.
61- **Message history & processing**: `message_history` is provider-valid with repaired tool-call pairing, `HistoryProcessor` is exported, and deferred tool-call events plus `EnqueuedMessagesEvent` are available (`2.10.0` to `2.12.0`).
62- **New models/providers**: Moonshot AI `kimi-k3`, OpenAI background mode, and Anthropic `stop_reason=pause_turn` support; standardized reasoning-effort handling across Groq, DeepSeek, and Cerebras.
63- **Embeddings & tokens**: Gemini 2 text-prefix conditioning for embeddings and output audio-token accumulation in usage tracking.
64- **Fixes**: `ToolReturnPart` serialization uses field aliases, Anthropic/Bedrock native output schema handling, and actionable hints on usage-limit and tool-retry errors.
65
66## Release Highlights (1.96.1)
67
68- **V2 preparation**: `Agent(..., prepare_tools=..., prepare_output_tools=..., event_stream_handler=...)` is now the deprecated path; capability-based migration is the new direction.
69- **Capability migration**: use `PrepareTools`, `PrepareOutputTools`, and `ProcessEventStream` capabilities instead of wiring those behaviors through constructor sugar.
70- **OpenAI fixes**: the latest patch line also tightens `OpenAIResponsesModel` system-prompt-role handling and image-generation request shaping.
71
72## Release Highlights (1.97.0 -> 1.102.0)
73
74- **MCP migration**: prefer `MCPToolset` for new MCP integrations. `FastMCPToolset` and the older `MCPServer*` client surface are now on the deprecation path.
75- **Google provider split**: `GoogleProvider` and `GoogleCloudProvider` are now distinct, and model ids move from `google-gla:` / `google-vertex:` to `google:` / `google-cloud:`.
76- **Streaming migration**: move from `stream_responses()` to `stream_response()`; the newer API yields `ModelResponse` objects directly.
77- **Retry configuration**: prefer `Agent(retries=...)` or `AgentRetries(...)` over older constructor-level retry knobs.
78- **New runtime tools**: `ctx.enqueue()` and MCP background tasks make it easier to queue follow-up work without forcing it into the current response turn.
79
80## Release Highlights (1.105.0 -> 1.107.0)
81
82- **New models**: Claude Fable 5 and Claude Mythos 5 are supported (1.107.0), alongside Grok 4.3 `reasoning_effort` and updated xAI model names (1.105.0).
83- **Deferred loading**: instructions, tools, model settings, and hooks can now be loaded on demand instead of eagerly at agent construction (1.105.0).
84- **Model introspection**: `known_model_names()` enumerates `KnownModelName` members (1.107.0).
85- **OpenRouter caching**: `CachePoint` and prompt caching are implemented for OpenRouter (1.107.0).
86- **xAI config**: `XaiProvider` gains `api_host` and `timeout`, plus `seed` parameter mapping (1.106.0).
87- **Security**: `VercelAIAdapter` `UploadedFile` handling was hardened against a confused-deputy file-read vulnerability (GHSA-h7p7-w5gc-xj3w, 1.106.0).
88- **Fixes**: incomplete streamed responses when `event_stream_handler` doesn't consume the stream, `from_data_uri` on non-base64 data URIs, Temporal `gateway/` model construction, `GoogleModelSettings.google_cached_content` request shaping, Anthropic Bedrock `message=None` start events, and `AnthropicModel.count_tokens` with native tools.
89
90## Release Highlights (1.103.0 -> 1.104.0)
91
92- **MCP prompts**: maintained `McpServer` integrations can now list and fetch prompts with `list_prompts` and `get_prompt`; still prefer `MCPToolset` for new client code unless legacy wrappers are required.
93- **UI adapters**: `VercelAIAdapter` round-trips message timestamps through `UIMessage.metadata`, and `UIAdapter.sanitize_messages` strips client-submitted `force_download` from `FileUrl` parts.
94- **Provider/model updates**: Claude Opus 4.8 is supported, `OpenRouterModel` can use `anthropic_eager_input_streaming`, and hybrid OpenRouter/xAI/Bedrock routes now forward `thinking=False` consistently.
95- **Bedrock/toolset fixes**: Bedrock maps malformed model/tool output to `FinishReason.error`, recognizes adaptive thinking, preserves single-tool `tool_choice` cache behavior, and toolset prepare callbacks warn when they accidentally return `None`.
96
97## Release Highlights (1.75.0 -> 1.84.1)
98
99- **Capabilities**: `CapabilityOrdering` adds explicit wrapping/ordering control (`innermost`, `outermost`, `wraps`, `wrapped_by`, `requires`) for complex capability stacks.
100- **Compaction**: new server-side compaction capabilities for OpenAI and Anthropic; OpenAI adds stateful compaction mode.
101- **Models**: Claude Opus 4.7 support and a native `OllamaModel` path with corrected Ollama capability flags for structured output.
102- **Tools**: tool hooks now consistently receive dict-shaped validated args for single-`BaseModel` tools, and internal output tools skip hook execution.
103- **Hardening**: Google `FileSearchTool` parsing received regex hardening in the `1.83/1.84` line.
104
105## Release Highlights (1.71.0 → 1.74.0)
106
107- **Capabilities**: composable, reusable units of agent behavior that bundle tools, lifecycle hooks, instructions, and model settings into a single class. Plug into any agent for maximum reuse.
108- **AgentSpec**: load agents from YAML/JSON files via `Agent.from_file`. Supports `TemplateStr` for templated instructions referencing deps.
109- **Hooks capability**: define hooks using decorators (`@hooks.on_model_request`, etc.).
110- **Thinking capability**: cross-provider `thinking` model setting for reasoning.
111- **Provider-adaptive tools**: `WebSearch`, `WebFetch`, `MCP`, `ImageGeneration` — automatically fall back from builtin (provider) tools to local tools.
112- **Online evaluation**: evaluation infrastructure in `pydantic-evals`.
113- **`TextContent`**: user prompts with `metadata` not sent to model.
114- **CaseLifecycle hooks**: hooks for `Dataset.evaluate` lifecycle.
115- **Model swapping in hooks**: `before_model_request` / wrap hooks can swap models via `ModelRequestContext`.
116- **`ModelRetry` from hooks**: hooks can raise `ModelRetry` for retry control flow.
117- Sync tool preparation functions supported. `MCP` capability no longer requires explicit `url=`.
118
119## Release Highlights (1.69.0 → 1.70.0)
120
121- Agents: `Agent(description=...)` adds a human-readable description to the run span as `gen_ai.agent.description` when instrumentation is enabled.
122- Models: `FallbackModel` now supports response-based fallback handlers for semantic failures in non-streaming runs.
123- Tools: multimodal tool results are passed directly to provider APIs instead of always being split into extra user-message parts.
124- Bedrock: `bedrock_inference_profile` is available on model and embedding settings for routing requests through an inference profile ARN.
125- Stability: provider fixes landed for OpenRouter Anthropic model matching, Cohere embeddings, Google image sizes, Bedrock tool-name sanitization, and malformed tool-call retry handling.
126
127## Quick Start
128
129### Basic Agent
130
131```python
132from pydantic_ai import Agent
133
134agent = Agent(
135 'openai:gpt-4o',
136 instructions='Be concise, reply with one sentence.'
137)
138
139result = agent.run_sync('Where does "hello world" come from?')
140print(result.output)
141```
142
143### With Structured Output
144
145```python
146from pydantic import BaseModel
147from pydantic_ai import Agent
148
149class CityInfo(BaseModel):
150 name: str
151 country: str
152 population: int
153
154agent = Agent('openai:gpt-4o', output_type=CityInfo)
155result = agent.run_sync('Tell me about Paris')
156print(result.output) # CityInfo(name='Paris', country='France', population=2161000)
157```
158
159### With Tools and Dependencies
160
161```python
162from dataclasses import dataclass
163from pydantic_ai import Agent, RunContext
164
165@dataclass
166class Deps:
167 user_id: int
168
169agent = Agent('openai:gpt-4o', deps_type=Deps)
170
171@agent.tool
172async def get_user_name(ctx: RunContext[Deps]) -> str:
173 """Get the current user's name."""
174 return f"User #{ctx.deps.user_id}"
175
176result = agent.run_sync('What is my name?', deps=Deps(user_id=123))
177```
178
179## Key Features
180
181| Feature | Description |
182| -------------------- | ------------------------------- |
183| Type-safe | Full IDE support, type checking |
184| Model-agnostic | 30+ providers supported |
185| Dependency Injection | Pass context to tools |
186| Structured Output | Pydantic model validation |
187| Embeddings | Multi-provider vector support |
188| Logfire Integration | Built-in observability |
189| MCP Support | External tools and data |
190| Evals | Systematic testing |
191| Graphs | Complex workflow support |
192
193## Supported Models
194
195| Provider | Models |
196| --------- | ------------------------------------- |
197| OpenAI | GPT-4o, GPT-4, o1, o3 |
198| Anthropic | Claude Opus 5, Claude Opus 4.8, Claude 4, Claude 3.5 |
199| Google | Gemini 2.0, Gemini 1.5 |
200| xAI | Grok-4 (native SDK) |
201| Groq | Llama, Mixtral |
202| Mistral | Mistral Large, Codestral |
203| Azure | Azure OpenAI |
204| Bedrock | AWS Bedrock + Nova 2.0 |
205| SambaNova | SambaNova models |
206| Ollama | Local models |
207
208## Best Practices
209
2101. **Use type hints** — enables IDE support and validation
2112. **Define output types** — guarantees structured responses
2123. **Use dependencies** — inject context into tools
2134. **Add tool docstrings** — LLM uses them as descriptions
2145. **Enable Logfire** — for production observability
2156. **Use `run_sync` for simple cases** — `run` for async
2167. **Override deps for testing** — `agent.override(deps=...)`
2178. **Set usage limits** — prevent infinite loops with `UsageLimits`
218
219## Prohibitions
220
221- Do not expose API keys in code
222- Do not skip output validation in production
223- Do not ignore tool errors
224- Do not use `run_stream` without handling partial outputs
225- Do not forget to close MCP connections (`async with agent`)
226- Do not assume capability order is arbitrary once multiple wrappers/hooks are involved; define it explicitly when composition matters.
227
228## Common Patterns
229
230### Streaming Response
231
232```python
233async with agent.run_stream('Query') as response:
234 async for text in response.stream_text():
235 print(text, end='')
236```
237
238### Fallback Models
239
240```python
241from pydantic_ai.models.fallback import FallbackModel
242
243fallback = FallbackModel(openai_model, anthropic_model)
244agent = Agent(fallback)
245```
246
247### MCP Integration
248
249```python
250from pydantic_ai.mcp import MCPToolset
251
252toolset = MCPToolset(command='python', args=['mcp_server.py'])
253agent = Agent('openai:gpt-4o', toolsets=[toolset])
254```
255
256### Testing with TestModel
257
258```python
259from pydantic_ai.models.test import TestModel
260
261agent = Agent(model=TestModel())
262result = agent.run_sync('test') # Deterministic output
263```
264
265### Embeddings
266
267```python
268from pydantic_ai import Embedder
269
270embedder = Embedder('openai:text-embedding-3-small')
271
272# Embed search query
273result = await embedder.embed_query('What is ML?')
274
275# Embed documents for indexing
276docs = ['Doc 1', 'Doc 2', 'Doc 3']
277result = await embedder.embed_documents(docs)
278```
279
280See [embeddings.md](references/embeddings.md) for providers and settings.
281
282### xAI Provider
283
284```python
285from pydantic_ai import Agent
286
287agent = Agent('xai:grok-4-1-fast-non-reasoning')
288```
289
290See [models.md](references/models.md#xai-grok) for configuration details.
291
292### Exa Neural Search
293
294```python
295import os
296from pydantic_ai import Agent
297from pydantic_ai.common_tools.exa import ExaToolset
298
299api_key = os.getenv('EXA_API_KEY')
300toolset = ExaToolset(api_key, num_results=5, include_search=True)
301agent = Agent('openai:gpt-4o', toolsets=[toolset])
302```
303
304See [tools.md](references/tools.md#exa-neural-search) for all Exa tools.
305
306## Links
307
308- [Documentation](https://ai.pydantic.dev/)
309- [Releases](https://github.com/pydantic/pydantic-ai/releases)
310- [GitHub](https://github.com/pydantic/pydantic-ai)
311- [PyPI](https://pypi.org/project/pydantic-ai/)