Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/durable_execution/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

Pydantic AI allows you to build durable agents that can preserve their progress across transient API failures and application errors or restarts, and handle long-running, asynchronous, and human-in-the-loop workflows with production-grade reliability. Durable agents have full support for [streaming](../agents.md#streaming-all-events) and [MCP](../mcp/client.md), with the added benefit of fault tolerance.

Pydantic AI natively supports three durable execution solutions:
Pydantic AI natively supports two durable execution solutions:

- [Temporal](./temporal.md)
- [DBOS](./dbos.md)
- [Prefect](./prefect.md)

These integrations only use Pydantic AI's public interface, so they also serve as a reference for integrating with other durable systems.
These integrations only uses Pydantic AI's public interface, so they also serve as a reference for integrating with other durable systems.
287 changes: 0 additions & 287 deletions docs/durable_execution/prefect.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ pip/uv-add "pydantic-ai-slim[openai]"
* `a2a` - installs `fasta2a` [PyPI ↗](https://pypi.org/project/fasta2a){:target="_blank"}
* `ag-ui` - installs `ag-ui-protocol` [PyPI ↗](https://pypi.org/project/ag-ui-protocol){:target="_blank"} and `starlette` [PyPI ↗](https://pypi.org/project/starlette){:target="_blank"}
* `dbos` - installs [`dbos`](durable_execution/dbos.md) [PyPI ↗](https://pypi.org/project/dbos){:target="_blank"}
* `prefect` - installs [`prefect`](durable_execution/prefect.md) [PyPI ↗](https://pypi.org/project/prefect){:target="_blank"}

See the [models](models/overview.md) documentation for information on which optional dependencies are required for each model.

Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ nav:
- Overview: durable_execution/overview.md
- Temporal: durable_execution/temporal.md
- DBOS: durable_execution/dbos.md
- Prefect: durable_execution/prefect.md
- Agent-User Interaction (AG-UI): ag-ui.md
- Agent2Agent (A2A): a2a.md

Expand Down
15 changes: 0 additions & 15 deletions pydantic_ai_slim/pydantic_ai/durable_exec/prefect/__init__.py

This file was deleted.

Loading