LangGraph Streaming Outputs explores the step-by-step streaming capabilities within LangGraph.
This approach allows developers to observe and interact with each graph processing stage in real-time, offering insights into the internal workings and progress of graph computations.
Step-by-Step Streaming
The streaming functionality breaks down the graph execution into individual steps, providing detailed outputs at each stage. This makes it easier to debug and understand how data flows through the graph, as well as how decisions are made along the way.
Real-Time Feedback
By leveraging streaming outputs, users receive immediate feedback from the system. This real-time interaction can greatly enhance the debugging process and the ability to fine-tune graph configurations on the fly.
Enhanced Transparency and Control
Streaming outputs offer greater transparency into the execution of LangGraph pipelines. Users can monitor each transformation or computation, enabling more precise control over the process and facilitating a deeper comprehension of complex graph-based workflows.
output_keys (Optional[Union[str, Sequence[str]]] ) : Keys to stream
interrupt_before (Optional[Union[All, Sequence[str]]] ) : Nodes to interrupt before execution
interrupt_after (Optional[Union[All, Sequence[str]]] ) : Nodes to interrupt after execution
debug (Optional[bool] ) : Whether to output debug information
subgraphs (bool) : Whether to stream subgraphs
Returns
Iterator[Union[dict[str, Any], Any]] : Outputs from each step of the graph. The output format depends on stream_mode .
Key Features
Processes graph execution in a streaming manner according to the given configuration
Supports various streaming modes (values , updates , debug)
Manages callbacks and error handling
Handles recursion limits and interruption conditions
Streaming Modes
values : Outputs the current state values at each step
updates : Outputs only state updates at each step
debug : Outputs debug events at each step
from langchain_core.runnables import RunnableConfig
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input state
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-tag"], # Tag
)
We set up the config and proceed with streaming output.
for event in graph.stream(input=input, config=config):
for key, value in event.items():
print(f"\n[ {key} ]\n")
# If messages exist in value
if "messages" in value:
messages = value["messages"]
# Print only the most recent message
value["messages"][-1].pretty_print()
[ chatbot ]
================================== Ai Message ==================================
Tool Calls:
search_keyword (call_a9QA6AiVxJjPvTJbd92lPbiw)
Call ID: call_a9QA6AiVxJjPvTJbd92lPbiw
Args:
query: 2024 Nobel Prize in Literature
[ tools ]
================================= Tool Message =================================
Name: search_keyword
[{"title": "We Do Not Part is Han Kang’s most ambitious work yet", "link": "https://chicagoreader.com/books/book-review/we-do-not-part-han-kang/&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQICBAC&usg=AOvVaw17aQ9BgzWGdDWg5upvavvj"}, {"title": "2024 Nobel Prize for Literature #KoreaNetPerson of the Year #Vegetarian #TheBoy Is ComingNovelist H..", "link": "https://www.mk.co.kr/en/culture/11206720&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQICRAC&usg=AOvVaw3ZUIOTxml6j8wvurAioOGU"}, {"title": "S. Korea's Han Kang receives Nobel literature prize amid turmoil at home", "link": "https://english.kyodonews.net/news/2024/12/45926507c4d5-s-korea-writer-receives-nobel-prize-amid-political-turmoil-at-home.html&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQIBBAC&usg=AOvVaw3egcTV9I3PqS2-ES3hqtqc"}, {"title": "Olga Tokarczuk attends 2024 Nobel Prize ceremony as special guest - English Section", "link": "https://www.polskieradio.pl/395/7791/artykul/3457545,olga-tokarczuk-attends-2024-nobel-prize-ceremony-as-special-guest&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQIABAC&usg=AOvVaw3-wDuRXlMqzlno72eEe8WL"}, {"title": "Han Kang asserts literature combats life-destructive acts - CHOSUNBIZ", "link": "https://biz.chosun.com/en/en-society/2024/12/11/CAGKFC32LFEN3DIXJH4HI72M64/&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQIARAC&usg=AOvVaw3zOSaUYmkiuOyM8xzYOMz3"}]
[ chatbot ]
================================== Ai Message ==================================
Here are the latest news articles related to the 2024 Nobel Prize in Literature:
1. **We Do Not Part is Han Kang’s most ambitious work yet**
[Read more](https://chicagoreader.com/books/book-review/we-do-not-part-han-kang/&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQICBAC&usg=AOvVaw17aQ9BgzWGdDWg5upvavvj)
2. **2024 Nobel Prize for Literature #KoreaNetPerson of the Year #Vegetarian #TheBoy Is Coming Novelist H..**
[Read more](https://www.mk.co.kr/en/culture/11206720&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQICRAC&usg=AOvVaw3ZUIOTxml6j8wvurAioOGU)
3. **S. Korea's Han Kang receives Nobel literature prize amid turmoil at home**
[Read more](https://english.kyodonews.net/news/2024/12/45926507c4d5-s-korea-writer-receives-nobel-prize-amid-political-turmoil-at-home.html&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQIBBAC&usg=AOvVaw3egcTV9I3PqS2-ES3hqtqc)
4. **Olga Tokarczuk attends 2024 Nobel Prize ceremony as special guest**
[Read more](https://www.polskieradio.pl/395/7791/artykul/3457545,olga-tokarczuk-attends-2024-nobel-prize-ceremony-as-special-guest&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQIABAC&usg=AOvVaw3-wDuRXlMqzlno72eEe8WL)
5. **Han Kang asserts literature combats life-destructive acts**
[Read more](https://biz.chosun.com/en/en-society/2024/12/11/CAGKFC32LFEN3DIXJH4HI72M64/&ved=2ahUKEwikieP5xImLAxUvsFYBHd8MEEMQxfQBegQIARAC&usg=AOvVaw3zOSaUYmkiuOyM8xzYOMz3)
These articles cover various aspects of the event and the laureate, Han Kang.
Advanced Streaming Options
Advanced streaming options in LangGraph allow for more fine-grained control over how graph execution outputs are handled. By configuring parameters like output_keys, stream_mode, interrupt_before, and interrupt_after, users can tailor the streaming behavior to their specific debugging and monitoring needs.
The output_keys Option
The output_keys option is used to specify which keys to stream.
You can specify it in list format, and it must be one of the keys defined in channels.
Tip
If a large number of State keys is output at each step, this is useful when you only want to stream some of them.
# Print the list of keys defined in channels
print(list(graph.channels.keys()))
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input State
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-rag"], # Tag
)
for event in graph.stream(
input=input,
config=config,
output_keys=["dummy_data"], # Try adding messages!
):
for key, value in event.items():
# key is the node name
print(f"\n[ {key} ]\n")
# If dummy_data exists
if value:
# value is the node output
print(value.keys())
if "dummy_data" in value:
print(value["dummy_data"])
[ chatbot ]
dict_keys(['dummy_data'])
[chatbot] called, dummy data
[ tools ]
[ chatbot ]
dict_keys(['dummy_data'])
[chatbot] called, dummy data
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input State
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-rag"], # Tag
)
for event in graph.stream(
input=input,
config=config,
output_keys=["messages"], # Only output messages
):
for key, value in event.items():
# If messages exist
if value and "messages" in value:
# key is the node name
print(f"\n[ {key} ]\n")
# Print the content of the last message
print(value["messages"][-1].content)
[ chatbot ]
[ tools ]
[{"title": "We Do Not Part is Han Kang’s most ambitious work yet", "link": "https://chicagoreader.com/books/book-review/we-do-not-part-han-kang/&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQICBAC&usg=AOvVaw3jYW04OKoIxGH_sgMIenuZ"}, {"title": "2024 Nobel Prize for Literature #KoreaNetPerson of the Year #Vegetarian #TheBoy Is ComingNovelist H..", "link": "https://www.mk.co.kr/en/culture/11206720&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQICRAC&usg=AOvVaw190Hz6ubn7ksSuhWWP7O_P"}, {"title": "Author Han Kang receives Nobel Prize in Literature at awards ceremony in Stockholm", "link": "https://koreajoongangdaily.joins.com/news/2024-12-11/culture/books/Author-Han-Kang-receives-Nobel-Prize-in-Literature-at-awards-ceremony-in-Stockholm/2197328&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQIAxAC&usg=AOvVaw37fTur2s0T9Bc6uTF0-fj7"}, {"title": "S. Korea's Han Kang receives Nobel literature prize amid turmoil at home", "link": "https://english.kyodonews.net/news/2024/12/45926507c4d5-s-korea-writer-receives-nobel-prize-amid-political-turmoil-at-home.html&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQIBxAC&usg=AOvVaw3v-DiyzN-XftJHXXJxFSAI"}, {"title": "Han Kang asserts literature combats life-destructive acts - CHOSUNBIZ", "link": "https://biz.chosun.com/en/en-society/2024/12/11/CAGKFC32LFEN3DIXJH4HI72M64/&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQIBBAC&usg=AOvVaw1QBF6iIuC3Z60lOhFgm5TR"}]
[ chatbot ]
Here are the latest news articles regarding the 2024 Nobel Prize in Literature:
1. **We Do Not Part is Han Kang’s most ambitious work yet**
[Read more](https://chicagoreader.com/books/book-review/we-do-not-part-han-kang/&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQICBAC&usg=AOvVaw3jYW04OKoIxGH_sgMIenuZ)
2. **2024 Nobel Prize for Literature: #KoreaNetPerson of the Year #Vegetarian #TheBoy Is Coming Novelist Han Kang**
[Read more](https://www.mk.co.kr/en/culture/11206720&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQICRAC&usg=AOvVaw190Hz6ubn7ksSuhWWP7O_P)
3. **Author Han Kang receives Nobel Prize in Literature at awards ceremony in Stockholm**
[Read more](https://koreajoongangdaily.joins.com/news/2024-12-11/culture/books/Author-Han-Kang-receives-Nobel-Prize-in-Literature-at-awards-ceremony-in-Stockholm/2197328&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQIAxAC&usg=AOvVaw37fTur2s0T9Bc6uTF0-fj7)
4. **S. Korea's Han Kang receives Nobel literature prize amid turmoil at home**
[Read more](https://english.kyodonews.net/news/2024/12/45926507c4d5-s-korea-writer-receives-nobel-prize-amid-political-turmoil-at-home.html&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQIBxAC&usg=AOvVaw3v-DiyzN-XftJHXXJxFSAI)
5. **Han Kang asserts literature combats life-destructive acts**
[Read more](https://biz.chosun.com/en/en-society/2024/12/11/CAGKFC32LFEN3DIXJH4HI72M64/&ved=2ahUKEwj2h9CFxYmLAxV6klYBHcDiKqgQxfQBegQIBBAC&usg=AOvVaw1QBF6iIuC3Z60lOhFgm5TR)
These articles discuss Han Kang's work and her recent receipt of the Nobel Prize amid various contexts and challenges.
The stream_mode Option
The stream_mode option is used to specify the streaming output mode.
values: Outputs the current state values at each step
updates: Outputs only state updates at each step (default)
stream_mode = "values"
In values mode, the current state values of each step are output.
Note
event.items()
key: Key of the State
value: The value corresponding to the key of the State
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input State
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-rag"], # Tag
)
# Stream output in values mode
for event in graph.stream(
input=input,
stream_mode="values", # Default
):
for key, value in event.items():
# key is the State key
print(f"\n[ {key} ]\n")
if key == "messages":
print(f"Number of messages: {len(value)}")
print("===" * 10, " Step ", "===" * 10)
[ messages ]
Number of messages: 1
[ dummy_data ]
============================== Step ==============================
[ messages ]
Number of messages: 2
[ dummy_data ]
============================== Step ==============================
[ messages ]
Number of messages: 3
[ dummy_data ]
============================== Step ==============================
[ messages ]
Number of messages: 4
[ dummy_data ]
============================== Step ==============================
stream_mode = "updates"
In updates mode, only the updated State for each step is output.
The output is a dictionary whose key is the node name, and values are the updated outputs.
Note
event.items()
key: The node name
value: The output of that node in dictionary form (it can have multiple key-value pairs).
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input State
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-rag"], # Tag
)
# Stream output in updates mode
for event in graph.stream(
input=input,
stream_mode="updates", # Default
):
for key, value in event.items():
# key is the node name
print(f"\n[ {key} ]\n")
# value is the output of the node
print(value.keys())
# The state is stored in dict form under the keys of 'values'
if "messages" in value:
print(f"Number of messages: {len(value['messages'])}")
print("===" * 10, " Step ", "===" * 10)
[ chatbot ]
dict_keys(['messages', 'dummy_data'])
Number of messages: 1
============================== Step ==============================
[ tools ]
dict_keys(['messages'])
Number of messages: 1
============================== Step ==============================
[ chatbot ]
dict_keys(['messages', 'dummy_data'])
Number of messages: 1
============================== Step ==============================
The interrupt_before and interrupt_after Options
The interrupt_before and interrupt_after options are used to specify when to interrupt streaming.
interrupt_before: Interrupt streaming before the specified node
interrupt_after: Interrupt streaming after the specified node
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input State
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-rag"], # Tag
)
for event in graph.stream(
input=input,
config=config,
stream_mode="updates", # Default
interrupt_before=["tools"], # Interrupt before the 'tools' node
):
for key, value in event.items():
# key is the node name
print(f"\n[{key}]\n")
# value is the node's output
if isinstance(value, dict):
print(value.keys())
if "messages" in value:
print(value["messages"])
# The state is stored as a dict (keys of 'values')
if "messages" in value:
print(f"Number of messages: {len(value['messages'])}")
print("===" * 10, " Step ", "===" * 10)
# Question
question = "Please provide the latest news about the 2024 Nobel Prize in Literature."
# Define the initial input State
input = State(dummy_data="Test string", messages=[("user", question)])
# Configure config
config = RunnableConfig(
recursion_limit=10, # Visit up to 10 nodes; beyond that, RecursionError will occur
configurable={"thread_id": "1"}, # Set the thread ID
tags=["my-rag"], # Tag
)
for event in graph.stream(
input=input,
config=config,
stream_mode="updates",
interrupt_after=["tools"], # Interrupt after executing 'tools'
):
for value in event.values():
# key is the node name
print(f"\n[{key}]\n")
if isinstance(value, dict):
# value is the node's output
print(value.keys())
if "messages" in value:
print(value["messages"])
# The state is stored as a dict (keys of 'values')
if "messages" in value:
print(f"Number of messages: {len(value['messages'])}")
[__interrupt__]
dict_keys(['messages', 'dummy_data'])
[AIMessage(content='', additional_kwargs={'tool_calls': [{'id': 'call_isKC85TbbCIdWDhhQiWbUsNv', 'function': {'arguments': '{"query":"2024 Nobel Prize in Literature"}', 'name': 'search_keyword'}, 'type': 'function'}], 'refusal': None}, response_metadata={'token_usage': {'completion_tokens': 20, 'prompt_tokens': 58, 'total_tokens': 78, 'completion_tokens_details': {'accepted_prediction_tokens': 0, 'audio_tokens': 0, 'reasoning_tokens': 0, 'rejected_prediction_tokens': 0}, 'prompt_tokens_details': {'audio_tokens': 0, 'cached_tokens': 0}}, 'model_name': 'gpt-4o-mini-2024-07-18', 'system_fingerprint': 'fp_72ed7ab54c', 'finish_reason': 'tool_calls', 'logprobs': None}, id='run-e06fd180-ec4e-4773-899c-9414072be3ca-0', tool_calls=[{'name': 'search_keyword', 'args': {'query': '2024 Nobel Prize in Literature'}, 'id': 'call_isKC85TbbCIdWDhhQiWbUsNv', 'type': 'tool_call'}], usage_metadata={'input_tokens': 58, 'output_tokens': 20, 'total_tokens': 78, 'input_token_details': {'audio': 0, 'cache_read': 0}, 'output_token_details': {'audio': 0, 'reasoning': 0}})]
Number of messages: 1
[__interrupt__]
dict_keys(['messages'])
[ToolMessage(content='[{"title": "We Do Not Part is Han Kang’s most ambitious work yet", "link": "https://chicagoreader.com/books/book-review/we-do-not-part-han-kang/&ved=2ahUKEwjlgY6XxYmLAxWIglYBHfzBAeIQxfQBegQIABAC&usg=AOvVaw3OvrSf4pMr7lptlLN_vUn9"}, {"title": "2024 Nobel Prize for Literature #KoreaNetPerson of the Year #Vegetarian #TheBoy Is ComingNovelist H..", "link": "https://www.mk.co.kr/en/culture/11206720&ved=2ahUKEwjlgY6XxYmLAxWIglYBHfzBAeIQxfQBegQICRAC&usg=AOvVaw2hwLfAERiJ1CNc1PSxSYb3"}, {"title": "S. Korea\'s Han Kang receives Nobel literature prize amid turmoil at home", "link": "https://english.kyodonews.net/news/2024/12/45926507c4d5-s-korea-writer-receives-nobel-prize-amid-political-turmoil-at-home.html&ved=2ahUKEwjlgY6XxYmLAxWIglYBHfzBAeIQxfQBegQIBxAC&usg=AOvVaw0B_087AxDtCmUrSHxGId_P"}, {"title": "Olga Tokarczuk attends 2024 Nobel Prize ceremony as special guest - English Section", "link": "https://www.polskieradio.pl/395/7791/artykul/3457545,olga-tokarczuk-attends-2024-nobel-prize-ceremony-as-special-guest&ved=2ahUKEwjlgY6XxYmLAxWIglYBHfzBAeIQxfQBegQIAhAC&usg=AOvVaw2mVeaIHVC89aBgMoIHWAc8"}, {"title": "Han Kang asserts literature combats life-destructive acts - CHOSUNBIZ", "link": "https://biz.chosun.com/en/en-society/2024/12/11/CAGKFC32LFEN3DIXJH4HI72M64/&ved=2ahUKEwjlgY6XxYmLAxWIglYBHfzBAeIQxfQBegQIBRAC&usg=AOvVaw367b4QKTF5jqlbLcVgGYqV"}]', name='search_keyword', id='9055fb49-3a96-43e2-b005-e99baaf4ce72', tool_call_id='call_isKC85TbbCIdWDhhQiWbUsNv')]
Number of messages: 1
[__interrupt__]