mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
21 lines
674 B
Plaintext
21 lines
674 B
Plaintext
# OpenAI API Key (for GPT-4, Whisper STT, and TTS)
|
|
OPENAI_API_KEY=
|
|
|
|
# TTS Configuration (optional - defaults shown)
|
|
TTS_VOICE=alloy
|
|
# Available voices: alloy, echo, fable, onyx, nova, shimmer
|
|
TTS_MODEL=tts-1
|
|
# Available models: tts-1 (faster), tts-1-hd (higher quality)
|
|
|
|
# Server Configuration
|
|
# Location for runtime state (agents.json, etc.). Defaults to ~/.paseo
|
|
PASEO_HOME=~/.paseo
|
|
|
|
# Listen address. Defaults to 127.0.0.1:6767
|
|
# Can be host:port, /path/to/socket, or unix:///path/to/socket
|
|
PASEO_LISTEN=127.0.0.1:6767
|
|
|
|
# Debug recordings (dictation + STT input + TTS output)
|
|
# When enabled, recordings are saved under `${cwd}/.debug/recordings/`
|
|
PASEO_DICTATION_DEBUG=1
|