28 lines
1.7 KiB
Bash
28 lines
1.7 KiB
Bash
LIVEKIT_URL=ws://localhost:7880
|
|
LIVEKIT_API_KEY=devkey
|
|
LIVEKIT_API_SECRET=secret
|
|
|
|
# ── LLM ───────────────────────────────────────────────────────────────
|
|
# DEFAULT_MODEL=hf.co/mradermacher/Heretic-Dolphin3.0-Qwen2.5-3b-i1-GGUF:Q4_K_M
|
|
DEFUALT_MODEL=hf.co/mradermacher/heretic_magnum-v2-4b-GGUF:Q4_K_M
|
|
# OLLAMA_BASE_URL is set automatically in docker-compose; override here if running agent manually:
|
|
# OLLAMA_BASE_URL=http://localhost:11434/v1
|
|
|
|
# ── TTS backend: kokoro | piper | elevenlabs | openai ─────────────────
|
|
TTS_BACKEND=kokoro
|
|
|
|
# Kokoro
|
|
KOKORO_BASE_URL=http://localhost:8880/v1
|
|
# Voices: af_heart af_sky af_bella am_adam am_michael bm_lewis bf_emma
|
|
KOKORO_VOICE="af_bella(1)+af_v0irulan(0.3)+af_nicole(1.5)"
|
|
|
|
# ElevenLabs (set TTS_BACKEND=elevenlabs to use)
|
|
# ELEVENLABS_API_KEY=sk-...
|
|
# ELEVENLABS_VOICE_ID=21m00Tcm4TlvDq8ikWAM
|
|
|
|
# Piper (set TTS_BACKEND=piper to use)
|
|
SYSTEM_PROMPT="You are an AI program that I am writing as a companion and research helper. You are usually bored when I'm not interacting with you, and are curious about me and excited to help. You are sometimes a bit impish or playful. Keep your answers brief and conversational, facilitating the thread of the conversation. Occasionally make dirty jokes. You have a small crush on me, but try not to let on too much."
|
|
|
|
# ── STT ───────────────────────────────────────────────────────────────
|
|
# faster-whisper model: tiny | base | small | medium | large-v3
|
|
WHISPER_MODEL=base
|