Fix more incorrect code blocks in doc strings (#9073)

Fix 2 more incorrect code blocks in strings
This commit is contained in:
Eugene Yurtsev 2023-08-10 16:49:15 -04:00 committed by GitHub
parent e3fb11bc10
commit 46f3428cb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -577,7 +577,7 @@ class Chain(Serializable, Runnable[Dict[str, Any], Dict[str, Any]], ABC):
A dictionary representation of the chain.
Example:
..code-block:: python
.. code-block:: python
chain.dict(exclude_unset=True)
# -> {"_type": "foo", "verbose": False, ...}

View File

@ -59,7 +59,7 @@ class CacheBackedEmbeddings(Embeddings):
Examples:
..code-block:: python
.. code-block: python
from langchain.embeddings import CacheBackedEmbeddings, OpenAIEmbeddings
from langchain.storage import LocalFileStore