.
This commit is contained in:
43
src/capa_de_integracion/models/__init__.py
Normal file
43
src/capa_de_integracion/models/__init__.py
Normal file
@@ -0,0 +1,43 @@
|
||||
"""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",
|
||||
]
|
||||
Reference in New Issue
Block a user