From cfbdb493902372e8751a4944c342bf43df8be22c Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Wed, 29 Oct 2025 12:42:43 -0700 Subject: [PATCH 1/2] fix: disable_studio_auth type --- src/langsmith/set-up-custom-auth.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/langsmith/set-up-custom-auth.mdx b/src/langsmith/set-up-custom-auth.mdx index 58d90edfd..da8e75e5c 100644 --- a/src/langsmith/set-up-custom-auth.mdx +++ b/src/langsmith/set-up-custom-auth.mdx @@ -148,7 +148,7 @@ If you didn't add the `--no-browser`, the Studio UI will open in the browser. By { "auth": { "path": "src/security/auth.py:auth", - "disable_studio_auth": "true" + "disable_studio_auth": true } } ``` From 5e0428d9b1840a61cb88fc18d6873c9269f4bbeb Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Wed, 29 Oct 2025 12:43:09 -0700 Subject: [PATCH 2/2] update --- src/langsmith/set-up-custom-auth.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/langsmith/set-up-custom-auth.mdx b/src/langsmith/set-up-custom-auth.mdx index da8e75e5c..13451c96e 100644 --- a/src/langsmith/set-up-custom-auth.mdx +++ b/src/langsmith/set-up-custom-auth.mdx @@ -142,7 +142,7 @@ Start the server again to test everything out: langgraph dev --no-browser ``` -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: +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: ```json {