This repository was archived by the owner on Jul 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (33 loc) · 1.34 KB
/
Copy path.env.example
File metadata and controls
42 lines (33 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Audio Extraction Analysis - Configuration Template
# Copy this file to .env and fill in your API keys
# ========================================
# Provider API Keys (Required)
# ========================================
# At least one API key required for transcription
# Get keys from: https://deepgram.com/ or https://elevenlabs.io/
DEEPGRAM_API_KEY=your-deepgram-key-here
ELEVENLABS_API_KEY=your-elevenlabs-key-here
# ========================================
# Whisper Configuration (Optional)
# ========================================
# Local Whisper model settings (if using Whisper provider)
WHISPER_MODEL=base
WHISPER_DEVICE=cpu
# ========================================
# File Paths (Optional)
# ========================================
# Custom paths for temporary files and output
# Defaults to system temp dir if not specified
# TEMP_DIR=/custom/temp/path
# OUTPUT_DIR=./output
# ========================================
# Logging (Optional)
# ========================================
LOG_LEVEL=INFO
# ========================================
# Security Notes
# ========================================
# - Never commit .env file to version control (.env is in .gitignore)
# - Keep API keys secret and rotate them regularly
# - Use environment variables in production deployments
# - Test keys should use separate accounts with limited permissions