[PR #5433] docs: replace create and control loop image to accurately represent topic content #4438

Closed
opened 2026-02-20 17:50:12 -05:00 by yindo · 0 comments
Owner

Original Pull Request: https://github.com/langchain-ai/langgraph/pull/5433

State: closed
Merged: No


fix #5350
this topic explains the graph below

def route(state: State) -> Literal["b", END]:
    if len(state["aggregate"]) < 7:
        return "b"
    else:
        return END
        
builder.add_edge(START, "a")
builder.add_conditional_edges("a", route)
builder.add_edge("b", "a")

so, replace image from
https://github.com/langchain-ai/langgraph/blob/main/docs/docs/how-tos/assets/graph_api_image_3.png
to
https://github.com/langchain-ai/langgraph/blob/main/docs/docs/how-tos/assets/graph_api_image_7.png

**Original Pull Request:** https://github.com/langchain-ai/langgraph/pull/5433 **State:** closed **Merged:** No --- fix #5350 this topic explains the graph below ``` def route(state: State) -> Literal["b", END]: if len(state["aggregate"]) < 7: return "b" else: return END builder.add_edge(START, "a") builder.add_conditional_edges("a", route) builder.add_edge("b", "a") ``` so, replace image from https://github.com/langchain-ai/langgraph/blob/main/docs/docs/how-tos/assets/graph_api_image_3.png to https://github.com/langchain-ai/langgraph/blob/main/docs/docs/how-tos/assets/graph_api_image_7.png
yindo added the pull-request label 2026-02-20 17:50:12 -05:00
yindo closed this issue 2026-02-20 17:50:12 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#4438