f363fe6c84
Cut-offs were the max_tokens=1200 ceiling (~14.6s of audio), not memory (~1250 tokens << 4096 context). Diagnosis: the repetition penalty is load-bearing for clean stops — rep 1.0 => the model never emits end-of-speech and rambles to the cap; rep 1.1 (the wrapper default) => clean natural stop. So normal lines already complete; only genuinely long dialogue (>~14.6s, ~25+ words) hit the cap. Raised default + client max_tokens to 2400 (~29s), still within the 4096 context (no memory cost). Verified: a 49-word line now finishes at 16.73s (was clipped at 14.6s).