docs: make the studio web UI docs more clear (#2812)

This commit is contained in:
Vadym Barda
2024-12-18 22:40:22 +00:00
committed by GitHub
parent 0496128e6b
commit 1e62b175ba
3 changed files with 24 additions and 12 deletions
@@ -86,10 +86,19 @@ This will start up the LangGraph API server locally. If this runs successfully,
## LangGraph Studio Web UI
Test your graph in the LangGraph Studio Web UI by visiting the URL provided in the output of the `langgraph dev` command.
LangGraph Studio Web is a specialized UI that you can connect to LangGraph API server to enable visualization, interaction, and debugging of your application locally. Test your graph in the LangGraph Studio Web UI by visiting the URL provided in the output of the `langgraph dev` command.
> - LangGraph Studio Web UI: https://smith.langchain.com/studio/?baseUrl=http://127.0.0.1:2024
!!! info "Connecting to a server with a custom host/port"
If you are running the LangGraph API server with a custom host / port, you can point the Studio Web UI at it by changing the `baseUrl` URL param. For example, if you are running your server on port 8000, you can change the above URL to the following:
```
https://smith.langchain.com/studio/baseUrl=http://127.0.0.1:8000
```
!!! warning "Safari Compatibility"
Currently, LangGraph Studio Web does not support Safari when running a server locally.