Files
rag_agent/rag-web-ui/backend/app/models/__init__.py

19 lines
389 B
Python
Raw Normal View History

2026-04-13 11:34:23 +08:00
from .user import User
from .knowledge import KnowledgeBase, Document, DocumentChunk
from .chat import Chat, Message
from .api_key import APIKey
from .tooling import ToolJob, SRSExtraction, SRSRequirement
__all__ = [
"User",
"KnowledgeBase",
"Document",
"DocumentChunk",
"Chat",
"Message",
"APIKey",
"ToolJob",
"SRSExtraction",
"SRSRequirement",
]