From 2c1e735403492b27551a3f1f6effbb2e0b48de96 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Wed, 11 Oct 2023 13:11:23 -0700 Subject: [PATCH] Fix runnable docs link (#11675) --- docs/docs/expression_language/interface.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/expression_language/interface.ipynb b/docs/docs/expression_language/interface.ipynb index da52fcb77f..f615b50359 100644 --- a/docs/docs/expression_language/interface.ipynb +++ b/docs/docs/expression_language/interface.ipynb @@ -16,7 +16,7 @@ "id": "9a9acd2e", "metadata": {}, "source": [ - "In an effort to make it as easy as possible to create custom chains, we've implemented a [\"Runnable\"](https://api.python.langchain.com/en/latest/schema/langchain.schema.runnable.Runnable.html#langchain.schema.runnable.Runnable) protocol that most components implement. This is a standard interface with a few different methods, which makes it easy to define custom chains as well as making it possible to invoke them in a standard way. The standard interface exposed includes:\n", + "In an effort to make it as easy as possible to create custom chains, we've implemented a [\"Runnable\"](https://api.python.langchain.com/en/latest/schema/langchain.schema.runnable.base.Runnable.html#langchain.schema.runnable.base.Runnable) protocol that most components implement. This is a standard interface with a few different methods, which makes it easy to define custom chains as well as making it possible to invoke them in a standard way. The standard interface exposed includes:\n", "\n", "- [`stream`](#stream): stream back chunks of the response\n", "- [`invoke`](#invoke): call the chain on an input\n",