Add the 54 MB SWE 50sess replay trace to the repo under
third_party/traces/ so it travels with `git clone` to GPU nodes that
can't reach the sandbox network. Previously the trace only lived under
outputs/ which is .gitignored.
Whitelist third_party/traces/ in .gitignore (same pattern as the
existing third_party/sglang/ allowlist).
After cloning on a new host, either symlink the file into outputs/ for
backward compatibility:
ln -sf ../third_party/traces/qwen35-swebench-50sess.jsonl \
outputs/qwen35-swebench-50sess.jsonl
or update sweep scripts to point --trace at third_party/traces/.
README in the new directory documents the file's lineage
(SiCo → SiBench → audit.jsonl → convert_audit_to_trace.py) and the
100 MB GitLab single-file limit warning for future trace additions.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
505 B
Plaintext
24 lines
505 B
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
src/*.egg-info
|
|
|
|
# Virtual environments
|
|
.venv
|
|
.deps/
|
|
outputs/
|
|
|
|
# Vendored dependencies. Track only the maintained SGLang fork/snapshot.
|
|
# third_party/traces/ holds the replay trace files used by the benchmark
|
|
# (~56 MB each) for convenient transfer between hosts; they would otherwise
|
|
# live under outputs/ but outputs/ is gitignored.
|
|
third_party/*
|
|
!third_party/sglang/
|
|
!third_party/agentic-kvcache/
|
|
!third_party/traces/
|
|
*.log
|