From 585479e1ff3ddb4f064af1843c4388155c489939 Mon Sep 17 00:00:00 2001 From: ccurme Date: Fri, 15 Nov 2024 13:06:48 -0500 Subject: [PATCH] docs: add legacy LLM page to concepts index (#28135) This page was previously not discoverable. --- 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 cd7339daa63..c53cc21ce21 100644 --- a/docs/docs/concepts/index.mdx +++ b/docs/docs/concepts/index.mdx @@ -68,6 +68,7 @@ The conceptual guide does not cover step-by-step instructions or specific implem - **[langchain](/docs/concepts/architecture#langchain)**: A package for higher level components (e.g., some pre-built chains). - **[langgraph](/docs/concepts/architecture#langgraph)**: Powerful orchestration layer for LangChain. Use to build complex pipelines and workflows. - **[langserve](/docs/concepts/architecture#langserve)**: Use to deploy LangChain Runnables as REST endpoints. Uses FastAPI. Works primarily for LangChain Runnables, does not currently integrate with LangGraph. +- **[LLMs (legacy)](/docs/concepts/text_llms)**: Older language models that take a string as input and return a string as output. - **[Managing chat history](/docs/concepts/chat_history#managing-chat-history)**: Techniques to maintain and manage the chat history. - **[OpenAI format](/docs/concepts/messages#openai-format)**: OpenAI's message format for chat models. - **[Propagation of RunnableConfig](/docs/concepts/runnables/#propagation-of-runnableconfig)**: Propagating configuration through Runnables. Read if working with python 3.9, 3.10 and async.