-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (49 loc) · 896 Bytes
/
.gitignore
File metadata and controls
61 lines (49 loc) · 896 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
# Build output
build/
build-*/
cmake-build-*/
dist/
# Dependencies (cloned by scripts/setup.sh, or symlinked for local dev)
deps/
# Models (large binary files, download via scripts/download_models.sh)
# Use /models/ (root-level only) to avoid ignoring src/models/ headers
/models/
*.gguf
*.onnx
*.safetensors
# IDE / editor caches
.cache/
.vscode/
.idea/
.claude/
*.swp
*.swo
*~
# AI assistant config (developer-only)
CLAUDE.md
# Release artifacts
*.tar.gz
# macOS
.DS_Store
._*
# Generated audio output
*.wav
# Benchmark result JSON (regenerated by running benchmarks)
*benchmark_results.json
**/benchmark_results.json
**/final.json
# RAG indexes (generated by indexing pipeline)
benchmark_index/
**/index/*.bin
**/index/*.usearch
# RAG benchmark docs (generated text corpus)
benchmark_docs/
# Object files / libraries
*.o
*.a
*.dylib
*.so
*.idx
# CMake FetchContent
_deps/
EXTERNAL/