Voice AI Features: - LiveKit Agents integration for real-time voice calls - Julia AI agent (Python) deployed to LiveKit Cloud - Token server for authentication - Debug screen with voice call testing - Voice call screen with full-screen UI Agent Configuration: - STT: Deepgram Nova-2 - LLM: OpenAI GPT-4o - TTS: Deepgram Aura Asteria (female voice) - Turn Detection: LiveKit Multilingual Model - VAD: Silero - Noise Cancellation: LiveKit BVC Files added: - julia-agent/ - Complete agent code and token server - app/voice-call.tsx - Full-screen voice call UI - services/livekitService.ts - LiveKit client service - contexts/VoiceTranscriptContext.tsx - Transcript state - polyfills/livekit-globals.ts - WebRTC polyfills 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
460 B
Plaintext
48 lines
460 B
Plaintext
# Python bytecode and artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Caches and test output
|
|
.cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
coverage/
|
|
|
|
# Logs and temp files
|
|
*.log
|
|
*.gz
|
|
*.tgz
|
|
.tmp
|
|
.cache
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
|
|
# VCS, editor, OS
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github/
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
|
|
# Project docs and misc
|
|
README.md
|
|
LICENSE
|
|
|
|
# Project tests
|
|
test/
|
|
tests/
|
|
eval/
|
|
evals/ |