forked from vllm-project/semantic-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
213 lines (181 loc) · 3.62 KB
/
.gitignore
File metadata and controls
213 lines (181 loc) · 3.62 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# Rust
target/
**/*.rs.bk
# Note: Cargo.lock should be committed for applications and workspace roots
# Cargo.lock
# Python
*.pyc
*.pyo
*.pyd
*.pyw
*.pyz
__pycache__/
.venv/
.venv-agent/
pii_env/
# Python build artifacts
dist/
build/
*.egg-info/
*.whl
*.tar.gz
# Go
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
extproc-server
# Allow prebuilt CK Flash Attention shared library
!onnx-binding/ort-ck-flash-attn/prebuilt/libort_ck_flash_attn.so*
# IDE
.idea/
.vscode/
*.swp
*.swo
# Dependency directories
vendor/
# Environment variables
.env
# OS specific
.DS_Store
Thumbs.db
# Project specific
bin/
tools/bin/
.vllm-sr-sim/
# Model files (too large for git)
*.pt
*.pth
*.bin
*.onnx
*.h5
*/trained_model/*.pt
*/trained_model/*.pth
*/trained_model/*.bin
*/trained_model/*.onnx
*/trained_model/*.h5
*/trained_model/*.json
*/trained_model/*.txt
*/models/*.pt
*/models/*.pth
*/models/*.bin
*/models/*.onnx
*/models/*.h5
*/models/*.json
*/models/*.txt
# Allow README files in model directories
!*/trained_model/README.md
!*/models/README.md
models
# Exception for Go models package in dashboard backend
!dashboard/backend/models/
# Exception for the fleet-sim Python model catalog package
!src/fleet-sim/fleet_sim/models/
!src/fleet-sim/fleet_sim/models/**
# Training data
wikipedia_data/
# Added by Claude Task Master
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
dev-debug.log
node_modules/
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Task files
tasks.json
tasks/
.cursor/
.roo/
.env.example
.taskmasterconfig
example_prd.txt
.roomodes
.windsurfrules
scripts/prd.txt
.env.taskmaster
website/build
.docusaurus
website/static/install.sh
spec/
results/
reports/
test-results/
# AI tooling regulation docs
# Ignore Copilot/Claude/Cursor rule docs anywhere in the repo
**/[Cc]laude*.md
**/[Cc]ursor*.md
.github/[Cc]laude*.md
.github/[Cc]ursor*.md
# Cursor editor rules files
.cursorrules
.cursorrules.*
# augment editor rules
.augment
# Local agent harness artifacts
.agent-harness/
# Claude Code configuration (should not be committed)
CLAUDE.md
# Dashboard frontend (React + TypeScript + Vite)
dashboard/frontend/node_modules/
dashboard/frontend/dist/
dashboard/frontend/build/
dashboard/frontend/.vite/
dashboard/frontend/*.local
dashboard/frontend/test-results/
dashboard/frontend/playwright-report/
# WASM build artifacts (generated by cmd/wasm/Makefile)
dashboard/frontend/public/signal-compiler.wasm
dashboard/frontend/public/wasm_exec.js
src/semantic-router/dashboard/frontend/public/signal-compiler.wasm
src/semantic-router/dashboard/frontend/public/wasm_exec.js
# Go compiled binaries
src/semantic-router/dsl
# Dashboard backend build artifacts
dashboard/backend/dashboard-backend
dashboard/backend/dashboard-backend.exe
dashboard/backend/dashboard-server
dashboard/backend/dashboard-server.exe
# Dashboard backend runtime data (SQLite evaluation database)
dashboard/backend/data/*
!dashboard/backend/data/.gitignore
# Keep old HTML backup for reference
dashboard/frontend/index.html.old
* text=auto eol=lf
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.pdf binary
*.zip binary
# Kind cluster configuration
tools/kind/kind-config.yaml
FaithDial_dataset/
FactCHD_dataset/
# Trained model outputs (should use HuggingFace Hub or model registry)
**/lora_*_model/
**/lora_*_model_rust/
*.safetensors
.vllm-sr/
.codex-go-cache/
# AWS deployment files (contain instance IPs and IDs)
src/training/cache_embeddings/aws/vllm-instance-*.txt
src/training/cache_embeddings/aws/vllm-inventory-*.ini
# Dashboard Grafana configuration
grafana/
grafana-data/
prometheus-data/
# Local dev makefile (not committed)
Makefile.local