mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-22 01:22:34 +00:00
20 lines
438 B
Python
20 lines
438 B
Python
"""Module of chat history."""
|
|
|
|
from .chat_history_db import ( # noqa: F401
|
|
ChatHistoryDao,
|
|
ChatHistoryEntity,
|
|
ChatHistoryMessageEntity,
|
|
)
|
|
from .storage_adapter import ( # noqa: F401
|
|
DBMessageStorageItemAdapter,
|
|
DBStorageConversationItemAdapter,
|
|
)
|
|
|
|
__ALL__ = [
|
|
"ChatHistoryEntity",
|
|
"ChatHistoryMessageEntity",
|
|
"ChatHistoryDao",
|
|
"DBStorageConversationItemAdapter",
|
|
"DBMessageStorageItemAdapter",
|
|
]
|