From 13b4a9db1ea541ba3b9b23b74b93c83fe82f152e Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Wed, 7 Feb 2024 18:53:43 -0800 Subject: [PATCH] Fix broken link (#4336) --- docs/core_docs/docs/expression_language/interface.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_docs/docs/expression_language/interface.mdx b/docs/core_docs/docs/expression_language/interface.mdx index c949059b22ff..5c37d202f55b 100644 --- a/docs/core_docs/docs/expression_language/interface.mdx +++ b/docs/core_docs/docs/expression_language/interface.mdx @@ -6,7 +6,7 @@ import CodeBlock from "@theme/CodeBlock"; # Interface -In an effort to make it as easy as possible to create custom chains, we've implemented a ["Runnable"](https://api.js.langchain.com/classes/schema_runnable.Runnable.html) protocol that most components implement. +In an effort to make it as easy as possible to create custom chains, we've implemented a ["Runnable"](https://api.js.langchain.com/classes/langchain_core_runnables.Runnable.html) protocol that most components implement. This is a standard interface with a few different methods, which make it easy to define custom chains as well as making it possible to invoke them in a standard way. The standard interface exposed includes: - [`stream`](/docs/expression_language/interface#stream): stream back chunks of the response