init. project
This commit is contained in:
18
rag-web-ui/backend/app/models/__init__.py
Normal file
18
rag-web-ui/backend/app/models/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user