Spaces:
Running
Running
# --- General --- | |
.DS_Store | |
Thumbs.db | |
*.log | |
# --- Python --- | |
__pycache__/ | |
*.py[cod] | |
*.pyo | |
*.pyd | |
.Python | |
.ruff_cache/ | |
.mypy_cache/ | |
.pytest_cache/ | |
.ipynb_checkpoints/ | |
.langgraph_api/ | |
.cache/ | |
*.egg-info/ | |
*.egg | |
build/ | |
dist/ | |
develop-eggs/ | |
downloads/ | |
eggs/ | |
.eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
wheels/ | |
pip-wheel-metadata/ | |
.coverage | |
.coverage.* | |
coverage.xml | |
# Virtual environments | |
.venv/ | |
venv/ | |
env/ | |
ENV/ | |
.python-version | |
# --- Node / JS --- | |
node_modules/ | |
.pnpm-store/ | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
pnpm-debug.log* | |
**/dist/ | |
**/build/ | |
# Keep lockfiles tracked | |
!**/package-lock.json | |
!**/yarn.lock | |
# --- IDE --- | |
.idea/ | |
.vscode/ | |
# --- Environment files --- | |
.env | |
.env.* | |
!**/env.example | |
!**/.env.example | |
# --- Example runtime artifacts --- | |
examples/voice_agent_webrtc_langgraph/audio_dumps/ | |
examples/voice_agent_webrtc_langgraph/ui/dist/ | |
examples/voice_agent_webrtc_langgraph/audio_prompt.wav | |
tests/perf/audio_files/*.wav | |