From 3a63055ce239ceacc70fcdaa2983c5a2222cf9ff Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Mon, 18 Nov 2024 14:35:10 -0500 Subject: [PATCH] docs[patch]: Add missing link to streaming concepts page (#28189) Add missing streaming concept --- docs/docs/concepts/index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docs/concepts/index.mdx b/docs/docs/concepts/index.mdx index c53cc21ce21..9b7272643b4 100644 --- a/docs/docs/concepts/index.mdx +++ b/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/langgraph/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.