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
1 change: 1 addition & 0 deletions docs/develop/go/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ From there, you can dive deeper into any of the Temporal primitives to start bui

## [Integrations](/develop/go/integrations)

- [Braintrust integration](https://www.braintrust.dev/docs/integrations/sdk-integrations/temporal#go)
- [Google ADK integration](/develop/go/integrations/google-adk)
- [OpenTelemetry v2 integration](/develop/go/integrations/opentelemetry-v2)

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/python/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ From there, you can dive deeper into any of the Temporal primitives to start bui

## [Integrations](/develop/python/integrations)

- [Braintrust integration](/develop/python/integrations/braintrust)
- [Braintrust integration](https://www.braintrust.dev/docs/integrations/sdk-integrations/temporal#python)
- [Deep Agents integration](/develop/python/integrations/deepagents)
- [Google ADK integration](/develop/python/integrations/google-adk)
- [Google GenAI integration](/develop/python/integrations/google-genai)
Expand Down
266 changes: 0 additions & 266 deletions docs/develop/python/integrations/braintrust.mdx

This file was deleted.

4 changes: 2 additions & 2 deletions readme/COMPONENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ Add a new entry to the `integrations` array with the following shape:
| `description` | `string` | Yes | One-sentence summary shown on the card. |
| `tags` | `string[]` | Yes | One or more category tags. Existing tags: `Agent framework`, `Agent observability`, `Framework`, `Governance`, `Observability`, `Temporal Cloud`. New tags appear in the filter row automatically. |
| `sdk` | `SDK` | No | The language SDK this integration targets. Omit for language-agnostic integrations (such as Temporal Cloud metrics exporters). |
| `href` | `string` | Yes | Link target. Use a relative path for internal docs (e.g. `/develop/python/integrations/braintrust`). Use a full URL for external partner docs (e.g. `https://docs.partner.com/temporal`). External links automatically get an external icon and open in a new tab. |
| `href` | `string` | Yes | Link target. Use a relative path for internal docs (e.g. `/develop/python/integrations/langsmith`). Use a full URL for external partner docs (e.g. `https://docs.partner.com/temporal`). External links automatically get an external icon and open in a new tab. |

**Multi-SDK integrations:** If an integration supports multiple SDKs with different guide pages, add a separate entry for each SDK. Both entries can share the same `name`. For example, Braintrust has one entry for Python and one for TypeScript, each with a different `href`.
**Multi-SDK integrations:** If an integration supports multiple SDKs with different guide pages, add a separate entry for each SDK. Both entries can share the same `name`. For example, LangSmith has one entry for Python and one for TypeScript, each with a different `href`.

**Language-agnostic integrations:** Omit the `sdk` field. These integrations appear when the "Language-agnostic" SDK filter is selected and do not display a language icon on the card.

Expand Down
1 change: 0 additions & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,6 @@ const developPythonCategory = {
id: 'develop/python/integrations/index',
},
items: [
'develop/python/integrations/braintrust',
'develop/python/integrations/deepagents',
'develop/python/integrations/google-adk',
'develop/python/integrations/google-genai',
Expand Down
11 changes: 10 additions & 1 deletion src/components/IntegrationsGrid/integrations-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,23 @@
"sdk": "TypeScript",
"href": "/develop/typescript/integrations/ai-sdk"
},
{
"name": "Braintrust",
"description": "Monitor and evaluate AI application performance with Braintrust observability.",
"tags": [
"Agent observability"
],
"sdk": "Go",
"href": "https://www.braintrust.dev/docs/integrations/sdk-integrations/temporal#go"
},
{
"name": "Braintrust",
"description": "Monitor and evaluate AI application performance with Braintrust observability.",
"tags": [
"Agent observability"
],
"sdk": "Python",
"href": "/develop/python/integrations/braintrust"
"href": "https://www.braintrust.dev/docs/integrations/sdk-integrations/temporal#python"
},
{
"name": "Braintrust",
Expand Down
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2309,6 +2309,11 @@
"source": "/production-deployment/multi-tenant-patterns",
"destination": "/best-practices/multi-tenant-patterns",
"permanent": true
},
{
"source": "/develop/python/integrations/braintrust",
"destination": "https://www.braintrust.dev/docs/integrations/sdk-integrations/temporal#python",
"permanent": true
}
]
}