Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix incorrect import path for create_retrieval_chain in documentation #29560 #29562

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/integrations/document_loaders/docling.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [

Check failure on line 102 in docs/docs/integrations/document_loaders/docling.ipynb

View workflow job for this annotation

GitHub Actions / cd . / make lint #3.12

Ruff (I001)

docs/docs/integrations/document_loaders/docling.ipynb:1:1: I001 Import block is un-sorted or un-formatted

Check failure on line 102 in docs/docs/integrations/document_loaders/docling.ipynb

View workflow job for this annotation

GitHub Actions / cd . / make lint #3.9

Ruff (I001)

docs/docs/integrations/document_loaders/docling.ipynb:1:1: I001 Import block is un-sorted or un-formatted
"from langchain_docling import DoclingLoader\n",
"\n",
"FILE_PATH = \"https://arxiv.org/pdf/2408.09869\"\n",
Expand Down Expand Up @@ -435,7 +435,7 @@
"metadata": {},
"outputs": [],
"source": [
"from langchain.chains import create_retrieval_chain\n",
"from langchain.chains.retrieval import create_retrieval_chain\n",
"from langchain.chains.combine_documents import create_stuff_documents_chain\n",
"from langchain_huggingface import HuggingFaceEndpoint\n",
"\n",
Expand Down
Loading