From 105461f8c2e59986d5c28a9fbf5593d68987f649 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Wed, 20 Nov 2024 14:34:19 -0500 Subject: [PATCH] docs: Add missing streaming concept (#7228) --- docs/core_docs/docs/concepts/index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/core_docs/docs/concepts/index.mdx b/docs/core_docs/docs/concepts/index.mdx index 709e31ef9af1..4bda066c00bd 100644 --- a/docs/core_docs/docs/concepts/index.mdx +++ b/docs/core_docs/docs/concepts/index.mdx @@ -22,6 +22,7 @@ The conceptual guide does not cover step-by-step instructions or specific implem - **[Memory](https://langchain-ai.github.io/langgraphjs/concepts/memory/)**: Information about a conversation that is persisted so that it can be used in future conversations. - **[Multimodality](/docs/concepts/multimodality)**: The ability to work with data that comes in different forms, such as text, audio, images, and video. - **[Runnable interface](/docs/concepts/runnables)**: The base abstraction that many LangChain components and the LangChain Expression Language are built on. +- **[Streaming](/docs/concepts/streaming)**: LangChain streaming APIs for surfacing results as they are generated. - **[LangChain Expression Language (LCEL)](/docs/concepts/lcel)**: A syntax for orchestrating LangChain components. Most useful for simpler applications. - **[Document loaders](/docs/concepts/document_loaders)**: Load a source as a list of documents. - **[Retrieval](/docs/concepts/retrieval)**: Information retrieval systems can retrieve structured or unstructured data from a datasource in response to a query.