From 5b99bb2437a00a6ec3dfea0ba2652bbd5edee71f Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Tue, 3 Sep 2024 01:12:58 -0700 Subject: [PATCH] docs: fix bullet list spacing (#25950) Fix #25935 --- libs/core/langchain_core/runnables/base.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libs/core/langchain_core/runnables/base.py b/libs/core/langchain_core/runnables/base.py index 89cc282269..21ec7caad3 100644 --- a/libs/core/langchain_core/runnables/base.py +++ b/libs/core/langchain_core/runnables/base.py @@ -5332,12 +5332,13 @@ class RunnableBinding(RunnableBindingBase[Input, Output]): `RunnableWithFallbacks`) that add additional functionality. These methods include: - - `bind`: Bind kwargs to pass to the underlying Runnable when running it. - - `with_config`: Bind config to pass to the underlying Runnable when running it. - - `with_listeners`: Bind lifecycle listeners to the underlying Runnable. - - `with_types`: Override the input and output types of the underlying Runnable. - - `with_retry`: Bind a retry policy to the underlying Runnable. - - `with_fallbacks`: Bind a fallback policy to the underlying Runnable. + + - ``bind``: Bind kwargs to pass to the underlying Runnable when running it. + - ``with_config``: Bind config to pass to the underlying Runnable when running it. + - ``with_listeners``: Bind lifecycle listeners to the underlying Runnable. + - ``with_types``: Override the input and output types of the underlying Runnable. + - ``with_retry``: Bind a retry policy to the underlying Runnable. + - ``with_fallbacks``: Bind a fallback policy to the underlying Runnable. Example: