mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 12:05:54 +00:00
24 lines
332 B
Python
24 lines
332 B
Python
# 全部迁移过去
|
|
|
|
from pkg.entity.persistence.rag import (
|
|
create_db_and_tables,
|
|
SessionLocal,
|
|
Base,
|
|
engine,
|
|
KnowledgeBase,
|
|
File,
|
|
Chunk,
|
|
Vector,
|
|
)
|
|
|
|
__all__ = [
|
|
"create_db_and_tables",
|
|
"SessionLocal",
|
|
"Base",
|
|
"engine",
|
|
"KnowledgeBase",
|
|
"File",
|
|
"Chunk",
|
|
"Vector",
|
|
]
|