chore: revert audio_transcription_service temperature change (out of scope)

Whisper temperature tuning belongs with the transcription stack work,
not with WhatsApp call wiring. Restoring develop's value to keep the
PR focused.
This commit is contained in:
Tanmay Deep Sharma
2026-05-05 16:28:07 +07:00
parent 14a9b48d49
commit 61a8511f7a
@@ -67,9 +67,7 @@ class Messages::AudioTranscriptionService< Llm::LegacyBaseOpenAiService
parameters: {
model: WHISPER_MODEL,
file: file,
# 0.0 minimises Whisper's hallucinations on silence / sub-vocal segments —
# higher temperatures produce phantom phrases that look like real transcripts.
temperature: 0.0
temperature: 0.4
}
)
transcribed_text = response['text']