Spaces:
Running
Running
File size: 429 Bytes
b0b150b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
"""
MEXAR Models Package
Import all models in correct order to resolve relationships.
"""
# Import in correct order to resolve relationships
from models.user import User
from models.agent import Agent, CompilationJob
from models.conversation import Conversation, Message
from models.chunk import DocumentChunk
__all__ = [
"User",
"Agent",
"CompilationJob",
"Conversation",
"Message",
"DocumentChunk"
]
|