mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
24 lines
703 B
Plaintext
24 lines
703 B
Plaintext
# OpenAI API Key (for GPT-4, Whisper STT, and TTS)
|
|
OPENAI_API_KEY=sk-...
|
|
|
|
# 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
|
|
|
|
# Voice server port (overrides PORT). Defaults to 6767
|
|
PASEO_PORT=6767
|
|
|
|
# Legacy web server port used by the legacy Express app
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Debug recordings (dictation + STT input + TTS output)
|
|
# When enabled, recordings are saved under `${cwd}/.debug/recordings/`
|
|
PASEO_DICTATION_DEBUG=1
|