mirror of
https://github.com/hwchase17/langchain
synced 2024-11-13 19:10:52 +00:00
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 <erick@langchain.dev>
This commit is contained in:
parent
0b36ed09cf
commit
9b7bdf1a26
@ -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:")
|
||||
|
Loading…
Reference in New Issue
Block a user