Archived
17 lines
548 B
Bash
17 lines
548 B
Bash
# Whisper Configuration
|
|||
|
|
# For local Whisper, ensure whisper is installed via pip
|
||
|
|
WHISPER_MODEL=base # Options: tiny, base, small, medium, large
|
||
|
|
|
||
|
|
# Remote Whisper API (e.g., OpenAI Whisper API)
|
||
|
|
OPENAI_API_KEY=your_openai_api_key_here
|
||
|
|
|
||
|
|
# ElevenLabs Speech-to-Text API
|
||
|
|
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
|
||
|
|
|
||
|
|
# Audio Processing Configuration
|
||
|
|
# Audio threshold for silence detection (0.0-1.0, lower = more sensitive)
|
||
|
|
# 0.005 = Very sensitive, 0.01 = Default, 0.05 = Less sensitive
|
||
|
|
AUDIO_THRESHOLD=0.01
|
||
|
|
|
||
|
|
# Server Configuration
|
||
|
|
SERVER_PORT=3000
|