feat: voice-service von lehrer nach core verschoben, Pipeline erweitert (voice, BQAS, embedding, night-scheduler)
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