mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
22 lines
549 B
Python
22 lines
549 B
Python
|
"""**Docstores** are classes to store and load Documents.
|
||
|
|
||
|
The **Docstore** is a simplified version of the Document Loader.
|
||
|
|
||
|
**Class hierarchy:**
|
||
|
|
||
|
.. code-block::
|
||
|
|
||
|
Docstore --> <name> # Examples: InMemoryDocstore, Wikipedia
|
||
|
|
||
|
**Main helpers:**
|
||
|
|
||
|
.. code-block::
|
||
|
|
||
|
Document, AddableMixin
|
||
|
"""
|
||
|
from langchain_community.docstore.arbitrary_fn import DocstoreFn
|
||
|
from langchain_community.docstore.in_memory import InMemoryDocstore
|
||
|
from langchain_community.docstore.wikipedia import Wikipedia
|
||
|
|
||
|
__all__ = ["DocstoreFn", "InMemoryDocstore", "Wikipedia"]
|