Safari Connection Issues
Safari blocks plain-HTTP traffic on localhost. When running Studio withlanggraph dev
, you may see “Failed to load assistants” errors.
Solution 1: Use Cloudflare Tunnel
baseUrl
parameter specifies your agent server endpoint.
Solution 2: Use Chromium Browser
Chrome and other Chromium browsers allow HTTP on localhost. Uselanggraph dev
without additional configuration.
Brave Connection Issues
Brave blocks plain-HTTP traffic on localhost when Brave Shields are enabled. When running Studio withlanggraph dev
, you may see “Failed to load assistants” errors.
Solution 1: Disable Brave Shields
Disable Brave Shields for LangSmith using the Brave icon in the URL bar.
Solution 2: Use Cloudflare Tunnel
baseUrl
parameter specifies your agent server endpoint.
Graph Edge Issues
Undefined conditional edges may show unexpected connections in your graph. This is because without proper definition, LangGraph Studio assumes the conditional edge could access all other nodes. To address this, explicitly define the routing paths using one of these methods:Solution 1: Path Map
Define a mapping between router outputs and target nodes:Solution 2: Router Type Definition
Specify possible routing destinations using Python’sLiteral
type:
Experiment troubleshooting in Studio
Run experiment button is disabled
Check the following:- Deployed application: If your application is deployed on LangGraph Platform, you may need to create a new revision to enable this feature.
- Local development server: If you are running your application locally, make sure you have upgraded to the latest version of the
langgraph-cli
(pip install -U langgraph-cli
). Additionally, ensure you have tracing enabled by setting theLANGSMITH_API_KEY
in your project’s.env
file.