Skip to content

Commit a355c2c

Browse files
authored
fix(langgraph-docs): wrong integration casing (#14833)
1 parent ed08f68 commit a355c2c

File tree

1 file changed

+4
-4
lines changed
  • docs/platforms/python/integrations/langgraph

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,26 +97,26 @@ It may take a couple of moments for the data to appear in [sentry.io](https://se
9797

9898
## Options
9999

100-
By adding `LangGraphIntegration` to your `sentry_sdk.init()` call explicitly, you can set options for `LangGraphIntegration` to change its behavior:
100+
By adding `LanggraphIntegration` to your `sentry_sdk.init()` call explicitly, you can set options for `LanggraphIntegration` to change its behavior:
101101

102102
```python
103103
import sentry_sdk
104-
from sentry_sdk.integrations.langgraph import LangGraphIntegration
104+
from sentry_sdk.integrations.langgraph import LanggraphIntegration
105105

106106
sentry_sdk.init(
107107
# ...
108108
# Add data like inputs and responses;
109109
# see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
110110
send_default_pii=True,
111111
integrations=[
112-
LangGraphIntegration(
112+
LanggraphIntegration(
113113
include_prompts=False, # LLM inputs/outputs will be not sent to Sentry, despite send_default_pii=True
114114
),
115115
],
116116
)
117117
```
118118

119-
You can pass the following keyword arguments to `LangGraphIntegration()`:
119+
You can pass the following keyword arguments to `LanggraphIntegration()`:
120120

121121
- `include_prompts`
122122

0 commit comments

Comments
 (0)