1
0
mirror of https://github.com/hwchase17/langchain.git synced 2025-05-08 00:28:47 +00:00

Fix a tiny typo in create_retrieval_chain docstring ()

Hi there!

To fix a tiny typo in `create_retrieval_chain` docstring.
This commit is contained in:
AmirPoursaberi 2025-02-03 19:24:49 +03:30 committed by GitHub
parent 48fa3894c2
commit a6efd22ba1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,7 +52,7 @@ def create_retrieval_chain(
)
retrieval_chain = create_retrieval_chain(retriever, combine_docs_chain)
chain.invoke({"input": "..."})
retrieval_chain.invoke({"input": "..."})
"""
if not isinstance(retriever, BaseRetriever):