mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-23 04:12:13 +00:00
12 lines
200 B
Python
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",
|
|
]
|