DB-GPT/dbgpt/rag/__init__.py
2024-03-22 15:36:57 +08:00

12 lines
200 B
Python

"""Module of RAG."""
from dbgpt.core import Chunk, Document # noqa: F401
from .chunk_manager import ChunkParameters # noqa: F401
__ALL__ = [
"Chunk",
"Document",
"ChunkParameters",
]