-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing Nodes Arrows In LangGraph Platform #3175
Comments
For context, using langgraph without langgraph platform works properly. So we'd need to look specifically at langgraph studio to see what's going on from IPython.display import Image, display
from langchain_core.runnables.graph import CurveStyle, MermaidDrawMethod, NodeStyles
display(
Image(
works.get_graph().draw_mermaid_png(
draw_method=MermaidDrawMethod.API,
)
)
)
display(
Image(
fails.get_graph().draw_mermaid_png(
draw_method=MermaidDrawMethod.API,
)
)
) |
Confirmed on langgraph platform |
Looks like bug w/ UI since the data is present {
"nodes": [
{
"id": "__start__",
"type": "schema",
"data": "__start__"
},
{
"id": "retrieve docs",
"type": "runnable",
"data": {
"id": [
"langgraph",
"utils",
"runnable",
"RunnableCallable"
],
"name": "retrieve docs"
}
},
{
"id": "grade_data",
"type": "runnable",
"data": {
"id": [
"langgraph",
"utils",
"runnable",
"RunnableCallable"
],
"name": "grade_data"
}
},
{
"id": "__end__",
"type": "schema",
"data": "__end__"
}
],
"edges": [
{
"source": "__start__",
"target": "retrieve docs"
},
{
"source": "grade_data",
"target": "__end__"
},
{
"source": "retrieve docs",
"target": "grade_data"
}
]
} |
Hi, I'm eager to contribute to this project and would love to work on this issue. Is it still open? I checked the issue, and the LangGraph server correctly provides the graph data as mentioned. The problem seems to be with rendering the graph UI. Could you confirm where I can find the LangSmith frontend repo that contains the relevant code for this? Looking forward to your guidance! |
@dqbd i think this is fixed already, right? |
Think that the issue is still happening? cc @lc-arjun |
Checked other resources
Example Code
Error Message and Stack Trace (if applicable)
Description
The arrows are missing in the fails graph as shown in the pics:
OK
NOK
System Info
System Information
Package Information
Optional packages not installed
Other Dependencies
The text was updated successfully, but these errors were encountered: