File size: 530 Bytes
7b7db64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
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'
]