mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 20:46:23 +00:00
29 lines
541 B
Python
29 lines
541 B
Python
"""Data Models"""
|
|
from .transcript import (
|
|
ConsolidateRequest,
|
|
ConsolidateResponse,
|
|
AgendaSummary,
|
|
ParticipantMinutes,
|
|
ExtractedTodo
|
|
)
|
|
from .response import (
|
|
SimpleSuggestion,
|
|
RealtimeSuggestionsResponse
|
|
)
|
|
from .summary import (
|
|
SummaryRequest,
|
|
SummaryResponse
|
|
)
|
|
|
|
__all__ = [
|
|
"ConsolidateRequest",
|
|
"ConsolidateResponse",
|
|
"AgendaSummary",
|
|
"ParticipantMinutes",
|
|
"ExtractedTodo",
|
|
"SimpleSuggestion",
|
|
"RealtimeSuggestionsResponse",
|
|
"SummaryRequest",
|
|
"SummaryResponse",
|
|
]
|