From ada1e5cc64ac583fb86876a4ed68a7e7d3494342 Mon Sep 17 00:00:00 2001 From: Zeeshan Qureshi Date: Thu, 13 Jun 2024 21:37:12 -0400 Subject: [PATCH] docs: s/path_images/images/ for ImageCaptionLoader keyword arguments (#22857) Quick update to `ImageCaptionLoader` documentation to reflect what's in code. --- docs/docs/integrations/document_loaders/image_captions.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/document_loaders/image_captions.ipynb b/docs/docs/integrations/document_loaders/image_captions.ipynb index e398846226..4ad2ff7452 100644 --- a/docs/docs/integrations/document_loaders/image_captions.ipynb +++ b/docs/docs/integrations/document_loaders/image_captions.ipynb @@ -83,7 +83,7 @@ }, "outputs": [], "source": [ - "loader = ImageCaptionLoader(path_images=list_image_urls)\n", + "loader = ImageCaptionLoader(images=list_image_urls)\n", "list_docs = loader.load()\n", "list_docs" ]