refactor: merge main into config-file

ref: N25B-236
This commit is contained in:
Pim Hutting
2025-11-05 15:24:44 +01:00
13 changed files with 157 additions and 51 deletions

View File

@@ -40,11 +40,13 @@ class BehaviourSettings(BaseModel):
vad_prob_threshold: float = 0.5
vad_initial_since_speech: int = 100
vad_non_speech_patience_chunks: int = 3
vad_poll_time: int = 1
# transcription behaviour
transcription_max_concurrent_tasks: int = 3
transcription_words_per_minute: int = 300
transcription_words_per_token: float = 0.75 # (3 words = 4 tokens)
transcription_token_buffer: int = 10
class LLMSettings(BaseModel):