webui / langchain /docstore /__init__.py
zhangyi617's picture
Upload folder using huggingface_hub
129cd69
raw
history blame contribute delete
519 Bytes
"""**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.docstore.arbitrary_fn import DocstoreFn
from langchain.docstore.in_memory import InMemoryDocstore
from langchain.docstore.wikipedia import Wikipedia
__all__ = ["DocstoreFn", "InMemoryDocstore", "Wikipedia"]