Skip to content
Open
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
Binary file added screen recording.mkv
Binary file not shown.
3 changes: 3 additions & 0 deletions voice_chat/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Hugging Face API Token
# Get your token from: https://huggingface.co/settings/tokens
HF_TOKEN=your_hugging_face_token_here
47 changes: 47 additions & 0 deletions voice_chat/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Environment variables
.env
.env.local
*.env

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Temporary files
temp/
*.wav
*.mp3
*.flac
*.tmp

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

# OS
.DS_Store
Thumbs.db
Loading