30 lines
562 B
Python
30 lines
562 B
Python
"""Data models module."""
|
|
|
|
from .conversation import (
|
|
ConversationEntry,
|
|
ConversationRequest,
|
|
ConversationSession,
|
|
DetectIntentResponse,
|
|
QueryResult,
|
|
User,
|
|
)
|
|
from .notification import (
|
|
ExternalNotificationRequest,
|
|
Notification,
|
|
NotificationSession,
|
|
)
|
|
|
|
__all__ = [
|
|
"ConversationEntry",
|
|
"ConversationRequest",
|
|
"ConversationSession",
|
|
"DetectIntentResponse",
|
|
# Notification
|
|
"ExternalNotificationRequest",
|
|
"Notification",
|
|
"NotificationSession",
|
|
"QueryResult",
|
|
# Conversation
|
|
"User",
|
|
]
|