Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,10 +286,9 @@ Friend-Lite supports multiple transcription services:
TRANSCRIPTION_PROVIDER=deepgram
DEEPGRAM_API_KEY=your-deepgram-key-here

# Option 2: Mistral (Voxtral models)
TRANSCRIPTION_PROVIDER=mistral
MISTRAL_API_KEY=your-mistral-key-here
MISTRAL_MODEL=voxtral-mini-2507
# Option 2: ElevenLabs (99 languages, speaker diarization)
TRANSCRIPTION_PROVIDER=elevenlabs
ELEVENLABS_API_KEY=your-elevenlabs-key-here

# Option 3: Local ASR (Parakeet)
PARAKEET_ASR_URL=http://host.docker.internal:8767
Expand Down
8 changes: 6 additions & 2 deletions backends/advanced/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,14 @@ OPENAI_MODEL=gpt-4o-mini
# Option 1: Deepgram (recommended for best transcription quality)
DEEPGRAM_API_KEY=

# Option 2: Parakeet ASR service from extras/asr-services
# Option 2: ElevenLabs (high quality with 99 language support)
# Get your API key from: https://elevenlabs.io/app/settings/api-keys
# ELEVENLABS_API_KEY=

# Option 3: Parakeet ASR service from extras/asr-services
# PARAKEET_ASR_URL=http://host.docker.internal:8767

# Optional: Specify which provider to use ('deepgram' or 'parakeet')
# Optional: Specify which provider to use ('deepgram', 'elevenlabs', or 'parakeet')
# If not set, will auto-select based on available configuration (Deepgram preferred)
# TRANSCRIPTION_PROVIDER=

Expand Down
Loading
Loading