Skip to content
Draft
2 changes: 2 additions & 0 deletions docs/develop/plugins-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ If you prefer to learn by getting hands-on with code, check out some existing pl

- Temporal's Python SDK ships with an
[OpenAI Agents SDK](https://github.com/temporalio/sdk-python/tree/main/temporalio/contrib/openai_agents) plugin
- Temporal's Python SDK ships with a
[LangGraph](https://github.com/temporalio/sdk-python/tree/main/temporalio/contrib/langgraph) plugin
- [Temporal client and Worker plugin for Pydantic AI](https://github.com/pydantic/pydantic-ai/blob/757d40932ebb8ef00f25cc469ff44e9b267b1aa3/pydantic_ai_slim/pydantic_ai/durable_exec/temporal/__init__.py#L83)
- Temporal's TypeScript SDK ships with an
[OpenTelemetry Plugin](https://github.com/temporalio/sdk-typescript/blob/main/packages/interceptors-opentelemetry/src/plugin.ts)
Expand Down
15 changes: 8 additions & 7 deletions docs/develop/python/integrations/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ description: Integrations with other tools and services.

The following integrations are available between the Temporal Python SDK and third-party AI frameworks and tooling:

| Framework | Tags | SDK docs | Integration guide |
| ----------------- | --------------- | ------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
| Braintrust | Observability | [braintrust.dev](https://braintrust.dev/docs) | [Guide](./braintrust.mdx) |
| Google ADK | Agent framework | [adk.dev](https://adk.dev/) | [Guide](https://adk.dev/integrations/temporal/) |
| OpenAI Agents SDK | Agent framework | [openai.github.io](https://openai.github.io/openai-agents-python/) | [Guide](https://github.com/temporalio/sdk-python/blob/main/temporalio/contrib/openai_agents/README.md) |
| Pydantic AI | Agent framework | [ai.pydantic.dev](https://ai.pydantic.dev/) | [Guide](https://ai.pydantic.dev/durable_execution/temporal/) |
| Tenuo | Governance | [tenuo.ai](https://tenuo.ai/docs) | [Guide](https://tenuo.ai/temporal) |
| Framework | Tags | SDK docs | Integration guide |
| ----------------- | --------------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
| Braintrust | Observability | [braintrust.dev](https://braintrust.dev/docs) | [Guide](./braintrust.mdx) |
| Google ADK | Agent framework | [adk.dev](https://adk.dev/) | [Guide](https://adk.dev/integrations/temporal/) |
| LangGraph | Agent framework | [langchain-ai.github.io/langgraph](https://langchain-ai.github.io/langgraph/) | [Guide](./langgraph.mdx) |
| OpenAI Agents SDK | Agent framework | [openai.github.io](https://openai.github.io/openai-agents-python/) | [Guide](https://github.com/temporalio/sdk-python/blob/main/temporalio/contrib/openai_agents/README.md) |
| Pydantic AI | Agent framework | [ai.pydantic.dev](https://ai.pydantic.dev/) | [Guide](https://ai.pydantic.dev/durable_execution/temporal/) |
| Tenuo | Governance | [tenuo.ai](https://tenuo.ai/docs) | [Guide](https://tenuo.ai/temporal) |

These integrations are built on the Temporal Python SDK's [Plugin system](/develop/plugins-guide), which you can also
use to build your own integrations.
Loading
Loading