Skip to content

Commit b0238fd

Browse files
committed
feat: update pydantic ai example
1 parent 4b2e7f5 commit b0238fd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

content/docs/integrations/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"ai-sdk",
1414
"openai-agents-sdk",
1515
"claude-agent-sdk",
16-
"pydantic-ai",
1716
"browser-use",
1817
"stagehand",
18+
"pydantic-ai",
1919
"magnitude",
2020
"agno",
2121
"agentkit",

content/docs/integrations/pydantic-ai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Build provider-agnostic, typed Python browser agents with dependenc
55
llm: true
66
---
77

8-
[Pydantic AI](https://ai.pydantic.dev/) is the Pydantic team's agent framework. Models are addressed by string (`'openai:gpt-5-mini'`, `'anthropic:claude-sonnet-4-6'`, `'google-gla:gemini-2.5-flash'`), tools are plain async functions, and `output_type=` validates the final answer with the same Pydantic you'd already use to validate API responses. The Steel integration passes a Playwright `Page` through `RunContext.deps`, so every tool sees the same browser without module globals.
8+
[Pydantic AI](https://ai.pydantic.dev/) is the Pydantic team's agent framework. It's provider-agnostic and reuses the Pydantic models you'd already validate API I/O with for tool arguments and final outputs, so adding an agent to a typed Python codebase doesn't introduce a parallel schema layer. The Steel integration passes a Playwright `Page` through `RunContext.deps`, so every tool in an agent run sees the same cloud browser without module globals.
99

1010
### Requirements
1111

0 commit comments

Comments
 (0)