File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/platforms/python/integrations/langgraph Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,26 +97,26 @@ It may take a couple of moments for the data to appear in [sentry.io](https://se
97
97
98
98
## Options
99
99
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:
101
101
102
102
``` python
103
103
import sentry_sdk
104
- from sentry_sdk.integrations.langgraph import LangGraphIntegration
104
+ from sentry_sdk.integrations.langgraph import LanggraphIntegration
105
105
106
106
sentry_sdk.init(
107
107
# ...
108
108
# Add data like inputs and responses;
109
109
# see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info
110
110
send_default_pii = True ,
111
111
integrations = [
112
- LangGraphIntegration (
112
+ LanggraphIntegration (
113
113
include_prompts = False , # LLM inputs/outputs will be not sent to Sentry, despite send_default_pii=True
114
114
),
115
115
],
116
116
)
117
117
```
118
118
119
- You can pass the following keyword arguments to ` LangGraphIntegration ()` :
119
+ You can pass the following keyword arguments to ` LanggraphIntegration ()` :
120
120
121
121
- ` include_prompts `
122
122
You can’t perform that action at this time.
0 commit comments