Initial commit: breakpilot-lehrer - Lehrer KI Platform
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>
This commit is contained in:
40
voice-service/models/__init__.py
Normal file
40
voice-service/models/__init__.py
Normal file
@@ -0,0 +1,40 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user