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: