Initial commit: meeting assistant

This commit is contained in:
Charles Wambua
2026-05-22 15:16:01 +03:00
commit b7b7397876
18 changed files with 155011 additions and 0 deletions

14
config/settings.py Normal file
View File

@@ -0,0 +1,14 @@
class Config:
def __init__(self):
# Audio settings
self.sample_rate = 16000
self.chunk_duration = 2.0
self.vad_threshold = 0.5
# AI settings
self.context_window = 8192
self.max_history = 10
# Recognition settings
self.whisper_model = "base" # 'tiny', 'base', 'small', 'medium'
self.language = "en"