From 9b7bdf1a26c4083a30a9e6910bf0be0509b1245d Mon Sep 17 00:00:00 2001 From: Ajayeswar Reddy Date: Tue, 8 Oct 2024 12:51:26 -0500 Subject: [PATCH] Fixed typo in llibs/community/langchain_community/storage/sql.py (#27029) - [ ] **PR title**: docs: fix typo in SQLStore import path - [ ] **PR message**: - **Description:** This PR corrects a typo in the docstrings for the class SQLStore(BaseStore[str, bytes]). The import path in the docstring currently reads from langchain_rag.storage import SQLStore, which should be changed to langchain_community.storage import SQLStore. This typo is also reflected in the official documentation. - **Issue:** N/A - **Dependencies:** None - **Twitter handle:** N/A Co-authored-by: Erick Friis --- libs/community/langchain_community/storage/sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/storage/sql.py b/libs/community/langchain_community/storage/sql.py index aae7e1149e4..c5b4ae978ff 100644 --- a/libs/community/langchain_community/storage/sql.py +++ b/libs/community/langchain_community/storage/sql.py @@ -95,7 +95,7 @@ class SQLStore(BaseStore[str, bytes]): .. code-block:: python - from langchain_rag.storage import SQLStore + from langchain_community.storage import SQLStore # Instantiate the SQLStore with the root path sql_store = SQLStore(namespace="test", db_url="sqlite://:memory:")