44 lines
938 B
Python
44 lines
938 B
Python
"""Data models module."""
|
|
|
|
from .conversation import (
|
|
ConversationSessionDTO,
|
|
ConversationEntryDTO,
|
|
ConversationMessageDTO,
|
|
ExternalConvRequestDTO,
|
|
DetectIntentRequestDTO,
|
|
DetectIntentResponseDTO,
|
|
QueryInputDTO,
|
|
TextInputDTO,
|
|
EventInputDTO,
|
|
QueryParamsDTO,
|
|
QueryResultDTO,
|
|
MessageType,
|
|
ConversationEntryType,
|
|
)
|
|
from .notification import (
|
|
ExternalNotRequestDTO,
|
|
NotificationSessionDTO,
|
|
NotificationDTO,
|
|
)
|
|
|
|
__all__ = [
|
|
# Conversation
|
|
"ConversationSessionDTO",
|
|
"ConversationEntryDTO",
|
|
"ConversationMessageDTO",
|
|
"ExternalConvRequestDTO",
|
|
"DetectIntentRequestDTO",
|
|
"DetectIntentResponseDTO",
|
|
"QueryInputDTO",
|
|
"TextInputDTO",
|
|
"EventInputDTO",
|
|
"QueryParamsDTO",
|
|
"QueryResultDTO",
|
|
"MessageType",
|
|
"ConversationEntryType",
|
|
# Notification
|
|
"ExternalNotRequestDTO",
|
|
"NotificationSessionDTO",
|
|
"NotificationDTO",
|
|
]
|