From 6eb21fd86ee706651198c1ce0825622dc51fb348 Mon Sep 17 00:00:00 2001 From: Drew Hoskins Date: Wed, 18 Feb 2026 21:22:13 -0800 Subject: [PATCH 1/3] Add AI Integrations to Python list --- docs/develop/python/integrations/index.mdx | 8 ++++++-- docs/develop/typescript/integrations/index.mdx | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/develop/python/integrations/index.mdx b/docs/develop/python/integrations/index.mdx index b85a493df3..636d1872d4 100644 --- a/docs/develop/python/integrations/index.mdx +++ b/docs/develop/python/integrations/index.mdx @@ -5,11 +5,15 @@ sidebar_label: AI integrations toc_max_heading_level: 2 keywords: - integrations + - ai frameworks tags: - Integrations + - AI Frameworks description: Integrations with other tools and services. --- -Temporal Python SDK provides integrations with the following tools and services: +[Plugins](/develop/plugins-guide) are available for the Temporal Python SDK to integrate with the following tools and services: -- [Braintrust](./braintrust.mdx) +- Braintrust - [SDK docs](https://braintrust.dev/docs), [Integrator's Guide](./braintrust.mdx) +- Pydantic AI - [SDK docs](https://ai.pydantic.dev/), [Integrator's Guide](https://ai.pydantic.dev/durable_execution/temporal/) +- OpenAI Agents SDK - [SDK docs](https://openai.github.io/openai-agents-python/), [Integrator's Guide](https://github.com/temporalio/sdk-python/blob/main/temporalio/contrib/openai_agents/README.md) diff --git a/docs/develop/typescript/integrations/index.mdx b/docs/develop/typescript/integrations/index.mdx index 6f91dac5e2..43d8900a44 100644 --- a/docs/develop/typescript/integrations/index.mdx +++ b/docs/develop/typescript/integrations/index.mdx @@ -12,4 +12,4 @@ description: Integrations with other tools and services. Temporal TypeScript SDK provides integrations with the following tools and services: -- [AI SDK by Vercel](/develop/typescript/integrations/ai-sdk) +- AI SDK by Vercel - [SDK Docs](https://ai-sdk.dev/docs/introduction), [Integrator's Guide](/develop/typescript/integrations/ai-sdk) From 4246fa26c9a2819d3dc8e0e029f4ceef16b139e7 Mon Sep 17 00:00:00 2001 From: Drew Hoskins Date: Wed, 18 Feb 2026 21:29:11 -0800 Subject: [PATCH 2/3] add searchable tags --- docs/develop/python/integrations/index.mdx | 2 ++ docs/develop/typescript/integrations/index.mdx | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/docs/develop/python/integrations/index.mdx b/docs/develop/python/integrations/index.mdx index 636d1872d4..85670fc504 100644 --- a/docs/develop/python/integrations/index.mdx +++ b/docs/develop/python/integrations/index.mdx @@ -6,9 +6,11 @@ toc_max_heading_level: 2 keywords: - integrations - ai frameworks + - agent frameworks tags: - Integrations - AI Frameworks + - Agent Frameworks description: Integrations with other tools and services. --- diff --git a/docs/develop/typescript/integrations/index.mdx b/docs/develop/typescript/integrations/index.mdx index 43d8900a44..7e1469dd82 100644 --- a/docs/develop/typescript/integrations/index.mdx +++ b/docs/develop/typescript/integrations/index.mdx @@ -5,8 +5,12 @@ sidebar_label: AI integrations toc_max_heading_level: 2 keywords: - integrations + - ai frameworks + - agent frameworks tags: - Integrations + - AI Frameworks + - Agent Frameworks description: Integrations with other tools and services. --- From 213757e19b8e3c9e97dfba6f1bb35c78f17f1136 Mon Sep 17 00:00:00 2001 From: Lenny Chen Date: Thu, 19 Feb 2026 14:07:44 -0800 Subject: [PATCH 3/3] docs: small edit --- docs/develop/python/integrations/index.mdx | 12 ++++++++---- docs/develop/typescript/integrations/index.mdx | 6 ++++-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/docs/develop/python/integrations/index.mdx b/docs/develop/python/integrations/index.mdx index 85670fc504..dbdc62e463 100644 --- a/docs/develop/python/integrations/index.mdx +++ b/docs/develop/python/integrations/index.mdx @@ -14,8 +14,12 @@ tags: description: Integrations with other tools and services. --- -[Plugins](/develop/plugins-guide) are available for the Temporal Python SDK to integrate with the following tools and services: +The following AI framework integrations are available for the Temporal Python SDK: -- Braintrust - [SDK docs](https://braintrust.dev/docs), [Integrator's Guide](./braintrust.mdx) -- Pydantic AI - [SDK docs](https://ai.pydantic.dev/), [Integrator's Guide](https://ai.pydantic.dev/durable_execution/temporal/) -- OpenAI Agents SDK - [SDK docs](https://openai.github.io/openai-agents-python/), [Integrator's Guide](https://github.com/temporalio/sdk-python/blob/main/temporalio/contrib/openai_agents/README.md) +| Framework | SDK docs | Integration guide | +| --- | --- | --- | +| Braintrust | [braintrust.dev](https://braintrust.dev/docs) | [Guide](./braintrust.mdx) | +| Pydantic AI | [ai.pydantic.dev](https://ai.pydantic.dev/) | [Guide](https://ai.pydantic.dev/durable_execution/temporal/) | +| OpenAI Agents SDK | [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) | + +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. diff --git a/docs/develop/typescript/integrations/index.mdx b/docs/develop/typescript/integrations/index.mdx index 7e1469dd82..630cd80d9e 100644 --- a/docs/develop/typescript/integrations/index.mdx +++ b/docs/develop/typescript/integrations/index.mdx @@ -14,6 +14,8 @@ tags: description: Integrations with other tools and services. --- -Temporal TypeScript SDK provides integrations with the following tools and services: +The following AI framework integrations are available for the Temporal TypeScript SDK: -- AI SDK by Vercel - [SDK Docs](https://ai-sdk.dev/docs/introduction), [Integrator's Guide](/develop/typescript/integrations/ai-sdk) +| Framework | SDK docs | Integration guide | +| --- | --- | --- | +| AI SDK by Vercel | [ai-sdk.dev](https://ai-sdk.dev/docs/introduction) | [Guide](/develop/typescript/integrations/ai-sdk) |