-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathagent-voice.env.example
More file actions
26 lines (21 loc) · 1.38 KB
/
Copy pathagent-voice.env.example
File metadata and controls
26 lines (21 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# agent-voice configuration. Copy to agent-voice.env (install.sh does this).
# Read from the current directory; real environment variables override it.
# Lines starting with # are ignored; "export" is optional.
# --- required: the OmniVoice TTS server (INSTALL.md step 2) -----------------
export AGENT_VOICE_TTS_URL=http://127.0.0.1:8181
# --- voices (INSTALL.md step 3) --------------------------------------------
export AGENT_VOICE_VOICES_DIR=voices
# export AGENT_VOICE_VOICE=skippy # default voice; first in the library if unset
# --- optional: writer model that turns a whole reply into one spoken line --
# export AGENT_VOICE_LLM_URL=http://127.0.0.1:11434 # Ollama / LM Studio / llama.cpp / oMLX / hosted
# export AGENT_VOICE_LLM_MODEL=qwen3:8b
# export AGENT_VOICE_LLM_API_KEY= # only for endpoints that need one
# export AGENT_VOICE_MAX_WORDS=35
# --- synthesis and playback -------------------------------------------------
# export AGENT_VOICE_NUM_STEPS=10 # 10-20 on scorbo2's server; more = slower, slightly cleaner
# export AGENT_VOICE_GUIDANCE_SCALE=1.2
# export AGENT_VOICE_OUT_DIR=out # WAVs are kept here
# export AGENT_VOICE_PLAY=true # false = save the WAV, stay silent
# --- agent-voice serve ------------------------------------------------------
# export AGENT_VOICE_HOST=127.0.0.1
# export AGENT_VOICE_PORT=7161