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>
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
# As this is a starter template project, we don't want to check in the uv.lock and livekit.toml files in its template form
|
|
# However, once you have cloned this repo for your own use, LiveKit recommends you check them in and delete this github workflow entirely
|
|
|
|
name: Template Check
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
check-template-files:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Check template files not tracked in git
|
|
run: |
|
|
if git ls-files | grep -q "^uv\.lock$"; then
|
|
echo "Error: uv.lock should not be checked into git"
|
|
echo "Disable this test and commit the file once you have cloned this repo for your own use"
|
|
exit 1
|
|
fi
|
|
if git ls-files | grep -q "^livekit\.toml$"; then
|
|
echo "Error: livekit.toml should not be checked into git"
|
|
echo "Disable this test and commit the file once you have cloned this repo for your own use"
|
|
exit 1
|
|
fi
|
|
echo "✓ uv.lock and livekit.toml are correctly not tracked in git" |