7 lines
276 B
Python
7 lines
276 B
Python
"""Import all ORM models so Alembic can discover metadata."""
|
|
|
|
from kbqa.chat.models import ChatSession, Message, MessageSource
|
|
from kbqa.documents.models import Chunk, Document, IndexJob
|
|
|
|
__all__ = ["ChatSession", "Chunk", "Document", "IndexJob", "Message", "MessageSource"]
|