mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Per-token trace logs from the query pump fire twice per streaming event and contribute to memory growth under heavy use. Gate them behind an opt-in env var so they're available for debugging but silent by default.
24 lines
768 B
Plaintext
24 lines
768 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
|
|
|
|
# Enable verbose Claude SDK stream logging (trace-level per-token logs)
|
|
PASEO_CLAUDE_DEBUG=1
|