forked from noonghunna/club-3090
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
78 lines (65 loc) · 2.65 KB
/
Copy path.gitignore
File metadata and controls
78 lines (65 loc) · 2.65 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
# Model weights — never commit. Default download dir is models-cache/ (set
# via MODEL_DIR env var if you want a different path).
models-cache/
*.safetensors
*.gguf
*.bin
# Genesis patches fetched by setup.sh (upstream, not ours to vendor).
# Lives at models/<model>/vllm/patches/genesis/ in the new layout.
# No trailing slash — also matches local symlinks pointing at out-of-tree clones.
models/*/vllm/patches/genesis
# v0.8.0 [E] Pull-Emit-Derived runtime capture artifacts (the §6 capture
# points + manifest; consumed by the later [F] Loop phase). Per-run output,
# never committed.
.pull-captures/
# serve-cockpit producer lane ② Serve — temp composes generated by
# generate-compose.sh (CockpitData.generate_compose). Written under the repo
# root so their relative ../ mounts resolve; cleaned up on serve/decline, but
# gitignored so a crash-leftover never lands in `git add -A`.
c3-genc-*.yml
# BYO Route-C apply-swap serve-locally composes (pull.sh --apply-swap): a clone
# of the sibling compose with --model → the brought weights, written IN the
# sibling's compose dir so its relative ../ mounts resolve. Generated artifact.
_brought-*.yml
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
.venv/
venv/
# Editor
.vscode/
.idea/
*.swp
.DS_Store
# Docker compose state
**/compose/*.log
# Local env overrides
.env
*.env.local
# Local safety backups of compose files (e.g. docker-compose.yml.default)
**/compose/*.default
# Patched vLLM source clone (volume-mounted by dual-card composes)
vllm-src/
# Internal diagnostics / feasibility memos — kept local, not published.
# Per-model published diagnostics live at models/<name>/vllm/diagnostics/.
docs/diagnostics/
# Bench output. Most runs are intermediate investigations (cliff probes, soak
# validation matrices, residency instrumentation) — those live in issue threads
# and gitignored docs/diagnostics/. Bench evidence backing numbers in BENCHMARKS.md
# / STRUCTURED_COT.md / CHANGELOG is tracked via the negations below; future
# grammar-ab-* and grammar-full-* runs will auto-track when committed.
results/*
!results/grammar-ab-*/
!results/grammar-full-*/
!results/lucebox-*/
!results/v0.20-migration/
# #252: curated quality-baseline corpus (committed; the trusted n>=3 aggregates
# `quality-baseline.sh` diffs fresh runs against). Run output elsewhere stays ignored.
!results/baselines/
# Local AI-agent working state (Claude Code, and anything that mirrors its layout).
# Never committed: it holds per-machine settings, session scratch, and local
# worktree bookkeeping that is meaningless — and occasionally sensitive — to
# anyone else. Listed explicitly because `git add -A` would otherwise sweep it in.
.claude/