From c5ac80d2f0621bdfa9454b87522d8f5ca0a262e0 Mon Sep 17 00:00:00 2001 From: Tat Dat Duong Date: Wed, 16 Apr 2025 22:28:27 +0200 Subject: [PATCH] fix(docs): fix typo --- docs/docs/cloud/how-tos/use_stream_react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/cloud/how-tos/use_stream_react.md b/docs/docs/cloud/how-tos/use_stream_react.md index 02185989f..41445178d 100644 --- a/docs/docs/cloud/how-tos/use_stream_react.md +++ b/docs/docs/cloud/how-tos/use_stream_react.md @@ -158,7 +158,7 @@ export default function HomePage() { } ``` -Under the hood, the `useStream()` hook will use the `streamMode: "messages-key"` to receive a stream of messages (i.e. individual LLM tokens) from any LangChain chat model invocations inside your graph nodes. Learn more about messages streaming in the [How to stream messages from your graph](./stream_messages.md) guide. +Under the hood, the `useStream()` hook will use the `streamMode: "messages-tuple"` to receive a stream of messages (i.e. individual LLM tokens) from any LangChain chat model invocations inside your graph nodes. Learn more about messages streaming in the [How to stream messages from your graph](./stream_messages.md) guide. ### Interrupts