Skip to content

Commit 2cddfb8

Browse files
authored
fix: disable_studio_auth type (#1188)
1 parent 113e371 commit 2cddfb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/langsmith/set-up-custom-auth.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ Start the server again to test everything out:
142142
langgraph dev --no-browser
143143
```
144144

145-
If you didn't add the `--no-browser`, the Studio UI will open in the browser. By default, we also permit access from Studio, even when using custom auth. This makes it easier to develop and test your bot in Studio. You can remove this alternative authentication option by setting `disable_studio_auth: "true"` in your auth configuration:
145+
If you didn't add the `--no-browser`, the Studio UI will open in the browser. By default, we also permit access from Studio, even when using custom auth. This makes it easier to develop and test your bot in Studio. You can remove this alternative authentication option by setting `disable_studio_auth: true` in your auth configuration:
146146

147147
```json
148148
{
149149
"auth": {
150150
"path": "src/security/auth.py:auth",
151-
"disable_studio_auth": "true"
151+
"disable_studio_auth": true
152152
}
153153
}
154154
```

0 commit comments

Comments
 (0)