docs: document call transcription STT/LLM env vars for operators (LC-398) #413
Loading…
Reference in a new issue
No description provided.
Delete branch "docs/lc-398-transcription-env-docs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Documents the call-transcription env vars for operators. They were only in CLAUDE.md (internal dev guidance) - missing from every operator-facing surface.
Adds
LETS_CHAT_STT_URL/_API_KEY/_MODEL(server-side STT, LC-393 Phase 3) andLETS_CHAT_LLM_URL/_API_KEY/_MODEL(AI transcript summaries, LC-396/LC-398) to:LETS_CHAT_ICE_SERVERS).How to activate (the short version)
LETS_CHAT_STT_URLto an OpenAI-compatible/v1/audio/transcriptionsendpoint (e.g.http://127.0.0.1:8090/v1/audio/transcriptions). Unset = browsers transcribe locally.LETS_CHAT_LLM_URLto an OpenAI-compatible/v1/chat/completionsendpoint (e.g. Ollama athttp://127.0.0.1:11434/v1/chat/completions). Unset = the Summarize action is hidden._API_KEYoptional bearer token,_MODELoptional (defaultswhisper-1/gpt-4o-mini).Docs only; no code change, no tests affected.