Testing / components /__init__.py
Sidak Singh
question boundary works
7b7db64
raw
history blame contribute delete
530 Bytes
"""
Components package for the Live Speech Transcription App.
This package contains modular components for:
- Audio transcription (transcriber.py)
- GPT/LLM processing (gpt.py)
- Audio streaming functionality (streaming.py)
"""
from .transcriber import AudioProcessor
from .gpt import gen_llm_response, detect_question
from .streaming import StreamingManager, create_streaming_interface
__all__ = [
'AudioProcessor',
'gen_llm_response',
'detect_question',
'StreamingManager',
'create_streaming_interface'
]