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:
18
voice-service/services/__init__.py
Normal file
18
voice-service/services/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
Voice Service Core Services
|
||||
"""
|
||||
from services.encryption_service import EncryptionService
|
||||
from services.task_orchestrator import TaskOrchestrator
|
||||
from services.personaplex_client import PersonaPlexClient
|
||||
from services.fallback_llm_client import FallbackLLMClient
|
||||
from services.intent_router import IntentRouter
|
||||
from services.audio_processor import AudioProcessor
|
||||
|
||||
__all__ = [
|
||||
"EncryptionService",
|
||||
"TaskOrchestrator",
|
||||
"PersonaPlexClient",
|
||||
"FallbackLLMClient",
|
||||
"IntentRouter",
|
||||
"AudioProcessor",
|
||||
]
|
||||
Reference in New Issue
Block a user