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

33 lines
657 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 .model_config import UserModelConfig
from .tooling import (
CodeKnowledgeBase,
ConsistencyJob,
ConsistencyResult,
SRSExtraction,
SRSRequirement,
TestingGeneration,
ToolJob,
)
2026-04-13 11:34:23 +08:00
__all__ = [
"User",
"KnowledgeBase",
"Document",
"DocumentChunk",
"Chat",
"Message",
"APIKey",
"UserModelConfig",
2026-04-13 11:34:23 +08:00
"ToolJob",
"SRSExtraction",
"SRSRequirement",
"TestingGeneration",
"CodeKnowledgeBase",
"ConsistencyJob",
"ConsistencyResult",
2026-04-13 11:34:23 +08:00
]