Services: Admin-Lehrer, Backend-Lehrer, Studio v2, Website, Klausur-Service, School-Service, Voice-Service, Geo-Service, BreakPilot Drive, Agent-Core Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
687 B
Python
41 lines
687 B
Python
"""
|
|
Voice Service Models
|
|
Pydantic models for sessions, tasks, and audit logging
|
|
"""
|
|
from models.session import (
|
|
VoiceSession,
|
|
SessionCreate,
|
|
SessionResponse,
|
|
AudioChunk,
|
|
TranscriptMessage,
|
|
)
|
|
from models.task import (
|
|
TaskState,
|
|
Task,
|
|
TaskCreate,
|
|
TaskResponse,
|
|
TaskTransition,
|
|
)
|
|
from models.audit import (
|
|
AuditEntry,
|
|
AuditCreate,
|
|
)
|
|
|
|
__all__ = [
|
|
# Session models
|
|
"VoiceSession",
|
|
"SessionCreate",
|
|
"SessionResponse",
|
|
"AudioChunk",
|
|
"TranscriptMessage",
|
|
# Task models
|
|
"TaskState",
|
|
"Task",
|
|
"TaskCreate",
|
|
"TaskResponse",
|
|
"TaskTransition",
|
|
# Audit models
|
|
"AuditEntry",
|
|
"AuditCreate",
|
|
]
|