Skip to content
Merged
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
12 changes: 12 additions & 0 deletions stt-livekit-plugin/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# STT API Configuration
WHISPER_MODEL_SIZE=base # Options: tiny, base, small, medium, large-v2, large-v3
WHISPER_DEVICE=cpu # Options: cpu, cuda
WHISPER_COMPUTE_TYPE=int8 # Options: int8, float16, float32

# LiveKit Configuration (for voice agent examples)
LIVEKIT_URL=ws://localhost:7880
LIVEKIT_API_KEY=your-api-key-here
LIVEKIT_API_SECRET=your-api-secret-here

# STT API URL (for LiveKit plugin)
STT_API_URL=http://localhost:8000
69 changes: 69 additions & 0 deletions stt-livekit-plugin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
env/
ENV/
.venv

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Environment variables
.env
.env.local

# Model cache
models/
*.pt
*.onnx

# Audio files (for testing)
*.wav
*.mp3
*.flac
*.ogg

# Logs
*.log
logs/

# Docker
docker-compose.override.yml

# Testing
.pytest_cache/
.coverage
htmlcov/

# Jupyter
.ipynb_checkpoints/
Loading