From 1cf80a5956860aa9249ac82a745eba94db14421d Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Thu, 16 May 2024 13:49:37 -0700 Subject: [PATCH] docs: link runnable api (#21783) --- docs/docs/how_to/index.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/how_to/index.mdx b/docs/docs/how_to/index.mdx index ecfecd16e9d..2b069bc4913 100644 --- a/docs/docs/how_to/index.mdx +++ b/docs/docs/how_to/index.mdx @@ -7,9 +7,9 @@ sidebar_class_name: hidden Here you’ll find answers to “How do I….?” types of questions. These guides are *goal-oriented* and *concrete*; they're meant to help you complete a specific task. -For conceptual explanations see [Conceptual Guides](/docs/concepts/). +For conceptual explanations see the [Conceptual guide](/docs/concepts/). For end-to-end walkthroughs see [Tutorials](/docs/tutorials). -For comprehensive descriptions of every class and function see [API Reference](https://api.python.langchain.com/en/latest/). +For comprehensive descriptions of every class and function see the [API Reference](https://api.python.langchain.com/en/latest/). ## Installation @@ -26,7 +26,7 @@ This highlights functionality that is core to using LangChain. ## LangChain Expression Language (LCEL) -LangChain Expression Language is a way to create arbitrary custom chains. It is built on the Runnable protocol. +LangChain Expression Language is a way to create arbitrary custom chains. It is built on the [Runnable](https://api.python.langchain.com/en/latest/runnables/langchain_core.runnables.base.Runnable.html) protocol. - [How to: chain runnables](/docs/how_to/sequence) - [How to: stream runnables](/docs/how_to/streaming)