File size: 2,530 Bytes
7a41e18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# ─── Python bytecode ──────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so

# ─── Virtual environments ──────────────────────────────────────
venv/
.venv/
env/

# ─── Secrets & local config ────────────────────────────────────
.env
.env.*
*.key
secrets.json

# ─── Dev / VCS / IDE ───────────────────────────────────────────
.git/
.github/
.gitignore
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
*.swp
*.swo
.DS_Store
.vscode/
.idea/

# ─── Documentation (not needed inside Docker image) ────────────
project_knowledge.md

# ══════════════════════════════════════════════════════════════
# TRAINING β€” not needed in the env server Docker image
# (Training runs on a separate GPU machine, not in HF Spaces)
# ══════════════════════════════════════════════════════════════
training/grpo_dataset.jsonl
training/checkpoints/
training/merged_model/
training/logs/
training/*.safetensors
training/*.bin
training/*.png
training/*.zip

# ══════════════════════════════════════════════════════════════
# EVALUATION β€” generated artifacts, not needed in Docker image
# ══════════════════════════════════════════════════════════════
evaluation/results/
evaluation/charts/

# ══════════════════════════════════════════════════════════════
# RUNTIME GENERATED FILES
# ══════════════════════════════════════════════════════════════
memory_bank.json
*.jsonl
*.parquet
*.pkl
*.pickle
uv.lock