-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (84 loc) · 1.81 KB
/
.gitignore
File metadata and controls
101 lines (84 loc) · 1.81 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
# === Environment & Secrets ===
.env
.env.*
# === Python ===
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml
# === Node / TypeScript ===
node_modules/
*.tsbuildinfo
package-lock.json
# === Rust ===
target/
Cargo.lock
# === OS / IDE ===
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
*~
# =============================================================
# Generated Benchmark Run Outputs
# =============================================================
# Any directory starting with "benchmark_results" (everywhere)
**/benchmark_results*/
# Keep the curated top-level benchmark_results/
!/benchmark_results/
!/benchmark_results/**
# Trajectory exports
**/trajectories/
**/*.art.jsonl
**/*.grpo.groups.json
# Re-allow trajectories inside curated benchmark_results
!/benchmark_results/**/trajectories/
!/benchmark_results/**/trajectories/**
# Test output
**/test_output/
# Benchmark caches
**/.benchmark_cache/
# --- Ad-hoc run output directories (all benchmarks) ---
**/canonical_*/
**/smoke_*/
**/traj_*/
**/verified_*/
**/post_b_*/
**/post_delete_*/
**/real_db/
**/real_eliza_*/
**/full_eliza_*/
**/eliza_run_*/
**/ws_test*/
**/lateral_test*/
**/smart_smoke/
**/final_benchmark_results/
# --- Social-alpha ---
social-alpha/results/
social-alpha/trust_marketplace_benchmark.egg-info/
# Large dataset files (should be fetched separately or use LFS)
social-alpha/trenches-chat-dataset/data/
social-alpha/trenches-chat-dataset/compressed/
social-alpha/trenches-chat-dataset/price_fetch_progress.json
# --- Framework generated results (keep .gitkeep) ---
framework/results/*.json
# --- Stale refs ---
**/refs/
# SWE-bench cloned task workspaces (nested git repos; local checkout only)
swe-bench-workspace/
benchmark_results