chore: clean up project tracking

This commit is contained in:
sladro 2026-04-02 17:42:53 +08:00
parent 159d816d7f
commit b3bfbd43ca
5 changed files with 2798 additions and 0 deletions

3
.gitignore vendored
View File

@ -21,3 +21,6 @@ dev/
# Results file
results.tsv
# Runtime outputs
work/

View File

@ -64,6 +64,8 @@ The current CLI runs one baseline-aware single iteration:
5. Run and score the candidate in the sandbox.
6. Keep or discard the candidate without mutating the main workspace unless the candidate is accepted.
For AI-oriented usage guidance, see [USAGE.md](USAGE.md).
Optional sample task command:
```bash

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

2
uv.lock generated
View File

@ -53,6 +53,7 @@ dependencies = [
{ name = "pandas", version = "2.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" },
{ name = "pandas", version = "3.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" },
{ name = "pyarrow" },
{ name = "pyyaml" },
{ name = "requests" },
{ name = "rustbpe" },
{ name = "tiktoken" },
@ -66,6 +67,7 @@ requires-dist = [
{ name = "numpy", specifier = ">=2.2.6" },
{ name = "pandas", specifier = ">=2.3.3" },
{ name = "pyarrow", specifier = ">=21.0.0" },
{ name = "pyyaml", specifier = ">=6.0.2" },
{ name = "requests", specifier = ">=2.32.0" },
{ name = "rustbpe", specifier = ">=0.1.0" },
{ name = "tiktoken", specifier = ">=0.11.0" },