-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (49 loc) · 718 Bytes
/
Copy path.gitignore
File metadata and controls
62 lines (49 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Build artifacts
/target/
**/*.rs.bk
# Cargo lock for libraries
Cargo.lock
# Editor files
.idea/
.vscode/
*.swp
*.swo
*~
# Model files (too large for git)
*.bin
*.onnx
*.gguf
*.ggml
# Environment
.env
.env.*
# OS
.DS_Store
Thumbs.db
# Model files (downloaded by scripts/download_models.sh)
/models/
# Benchmark output
/target/criterion/
# Generated audio output
output.wav
output_*.wav
# Reference audio for TTS voice cloning
reference_voice.wav
# Research notes (not shipped)
/research/
# Local tooling
.claude/
/plans/
# Demo assets
demo.gif
demo.tape
# Python bindings
python/.venv/
python/target/
python/__pycache__/
python/**/__pycache__/
python/*.egg-info/
python/.pytest_cache/
*.so
*.dylib
*.pyd