16 lines
359 B
Python
16 lines
359 B
Python
from __future__ import annotations
|
|
|
|
"""
|
|
Compatibility entrypoint for the real-time voice service.
|
|
|
|
This module allows running the voice runtime under:
|
|
`services.real_time_voice.app:app`
|
|
while reusing the canonical implementation from:
|
|
`services.ai_voice_runtime_service.app:app`.
|
|
"""
|
|
|
|
from services.ai_voice_runtime_service.app import app
|
|
|
|
__all__ = ["app"]
|
|
|