Skip to content

Commit fc972b3

Browse files
committed
deprecate & delist llm moniotoring docs
1 parent 52e70c3 commit fc972b3

File tree

7 files changed

+31
-29
lines changed

7 files changed

+31
-29
lines changed

docs/platforms/python/integrations/anthropic/index.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: Anthropic
33
description: "Learn about using Sentry for Anthropic."
4+
sidebar_hidden: true
45
---
56

6-
<Alert title="Beta">
7+
<Alert level="info" title="Product compatibility">
78

8-
The support for **Anthropic** is in its beta phase.
9+
This integration is designed for legacy [LLM Monitoring](/product/insights/ai/llm-monitoring/) and is not currently compatible with [AI Agents Insights](/product/insights/agents/).
910

10-
We are working on supporting different AI libraries (see [GitHub discussion](https://github.com/getsentry/sentry-python/discussions/3007)).
11-
12-
If you want to try the beta features and are willing to give feedback, please let us know on [Discord](https://discord.com/invite/Ww9hbqr).
11+
We are working on this, and it will soon be compatible with [AI Agents Insights](/product/insights/agents/).
1312

1413
</Alert>
1514

docs/platforms/python/integrations/cohere/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
22
title: Cohere
33
description: "Learn about using Sentry for Cohere."
4+
sidebar_hidden: true
45
---
56

6-
<Alert title="Beta">
7+
<Alert level="info" title="Product compatibility">
78

8-
The support for **Cohere** is in its beta phase.
9+
This integration is designed for legacy [LLM Monitoring](/product/insights/ai/llm-monitoring/) and is not currently compatible with [AI Agents Insights](/product/insights/agents/).
910

10-
We are working on supporting different AI libraries (see [GitHub discussion](https://github.com/getsentry/sentry-python/discussions/3007)).
11-
12-
If you want to try the beta features and are willing to give feedback, please let us know on [Discord](https://discord.com/invite/Ww9hbqr).
11+
We are working on this, and it will soon be compatible with [AI Agents Insights](/product/insights/agents/).
1312

1413
</Alert>
1514

15+
1616
This integration connects Sentry with the [Cohere Python SDK](https://github.com/cohere-ai/cohere-python).
1717
The integration has been confirmed to work with Cohere 5.3.3.
1818

docs/platforms/python/integrations/huggingface_hub/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: Huggingface Hub
33
description: "Learn about using Sentry for Huggingface Hub."
4+
sidebar_hidden: true
45
---
56

6-
<Alert title="Beta">
7+
<Alert level="info" title="Product compatibility">
78

8-
The support for **Huggingface Hub** is in its beta phase.
9+
This integration is designed for legacy [LLM Monitoring](/product/insights/ai/llm-monitoring/) and is not currently compatible with [AI Agents Insights](/product/insights/agents/).
910

10-
We are working on supporting different AI libraries (see [GitHub discussion](https://github.com/getsentry/sentry-python/discussions/3007)).
11-
12-
If you want to try the beta features and are willing to give feedback, please let us know on [Discord](https://discord.com/invite/Ww9hbqr).
11+
We are working on this, and it will soon be compatible with [AI Agents Insights](/product/insights/agents/).
1312

1413
</Alert>
1514

@@ -26,6 +25,7 @@ Install `sentry-sdk` from PyPI with the `huggingface_hub` extra:
2625
```bash {tabTitle:pip}
2726
pip install "sentry-sdk[huggingface_hub]"
2827
```
28+
2929
```bash {tabTitle:uv}
3030
uv add "sentry-sdk[huggingface_hub]"
3131
```

docs/platforms/python/integrations/langchain/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
22
title: Langchain
33
description: "Learn about using Sentry for Langchain."
4+
sidebar_hidden: true
45
---
56

6-
<Alert title="Beta">
7+
<Alert level="info" title="Product compatibility">
78

8-
The support for **LangChain** is in its beta phase.
9+
This integration is designed for legacy [LLM Monitoring](/product/insights/ai/llm-monitoring/) and is not currently compatible with [AI Agents Insights](/product/insights/agents/).
910

10-
We are working on supporting different AI libraries (see [GitHub discussion](https://github.com/getsentry/sentry-python/discussions/3007)).
11-
12-
If you want to try the beta features and are willing to give feedback, please let us know on [Discord](https://discord.com/invite/Ww9hbqr).
11+
We are working on this, and it will soon be compatible with [AI Agents Insights](/product/insights/agents/).
1312

1413
</Alert>
1514

15+
1616
This integration connects Sentry with [Langchain](https://github.com/langchain-ai/langchain).
1717
The integration has been confirmed to work with Langchain 0.1.11.
1818

docs/platforms/python/integrations/openai/index.mdx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: OpenAI
33
description: "Learn about using Sentry for OpenAI."
4+
sidebar_hidden: true
45
---
56

6-
<Alert title="Beta">
7+
<Alert level="info" title="Product compatibility">
78

8-
The support for **OpenAI** is in its beta phase.
9+
This integration is designed for legacy [LLM Monitoring](/product/insights/ai/llm-monitoring/) and is not currently compatible with [AI Agents Insights](/product/insights/agents/).
910

10-
We are working on supporting different AI libraries (see [GitHub discussion](https://github.com/getsentry/sentry-python/discussions/3007)).
11-
12-
If you want to try the beta features and are willing to give feedback, please let us know on [Discord](https://discord.com/invite/Ww9hbqr).
11+
We are working on this, and it will soon be compatible with [AI Agents Insights](/product/insights/agents/).
1312

1413
</Alert>
1514

@@ -27,6 +26,7 @@ Install `sentry-sdk` from PyPI with the `openai` extra:
2726
```bash {tabTitle:pip}
2827
pip install "sentry-sdk[openai]"
2928
```
29+
3030
```bash {tabTitle:uv}
3131
uv add "sentry-sdk[openai]"
3232
```
@@ -43,7 +43,6 @@ An additional dependency, `tiktoken`, is required if you want to calculate token
4343

4444
Verify that the integration works by creating an AI pipeline. The resulting data should show up in your LLM monitoring dashboard.
4545

46-
4746
```python
4847
import sentry_sdk
4948
from sentry_sdk.ai.monitoring import ai_track
@@ -115,7 +114,6 @@ You can pass the following keyword arguments to `OpenAIIntegration()`:
115114

116115
The default is `None`.
117116

118-
119117
## Supported Versions
120118

121119
- OpenAI: 1.0+

docs/product/insights/agents/dashboard.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: "Learn how to use Sentry's AI Agents Dashboard."
66

77
<Include name="feature-limited-on-team-retention.mdx" />
88

9-
Once you've [configured the Sentry SDK](/product/insights/agents/getting-started/) for your AI agent project, you'll start receiving data in the Sentry AI Agents dashboard.
9+
Once you've [configured the Sentry SDK](/product/insights/agents/getting-started/) for your AI agent project, you'll start receiving data in the Sentry [AI Agents Insights](https://sentry.io/orgredirect/organizations/:orgslug/insights/agents/) dashboard.
1010

1111
The main dashboard provides a comprehensive view of all your AI agent activities, performance metrics, and recent executions.
1212

docs/product/insights/ai/llm-monitoring/index.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
title: "LLM Monitoring"
33
sidebar_order: 0
44
description: "Sentry LLM monitoring helps you understand your LLM calls."
5+
sidebar_hidden: true
56
---
67

7-
<Include name="feature-stage-beta.mdx" />
8+
<Alert level="warning" title="Deprecated">
9+
10+
This Insights module is now considered deprecated and will be faded out in the future. Please use [AI Agents Insights](/product/insights/agents/) instead.
11+
12+
</Alert>
813

914
<Include name="feature-limited-on-team-retention.mdx" />
1015

0 commit comments

Comments
 (0)