This repository has been archived on 2026-05-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

17 lines
548 B
Bash
Raw Permalink Normal View History

2025-08-05 15:17:40 -07:00
# 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