From 2c798622cd1508848a5f45546a839147745be511 Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Tue, 6 Aug 2024 09:46:50 -0700 Subject: [PATCH] docs: runnable docstring space (#25106) --- libs/core/langchain_core/runnables/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/core/langchain_core/runnables/base.py b/libs/core/langchain_core/runnables/base.py index a79e59dd587..357a135adf8 100644 --- a/libs/core/langchain_core/runnables/base.py +++ b/libs/core/langchain_core/runnables/base.py @@ -108,8 +108,8 @@ Other = TypeVar("Other") class Runnable(Generic[Input, Output], ABC): """A unit of work that can be invoked, batched, streamed, transformed and composed. - Key Methods - =========== + Key Methods + =========== - **invoke/ainvoke**: Transforms a single input into an output. - **batch/abatch**: Efficiently transforms multiple inputs into outputs.