Skip to content

Commit ccef455

Browse files
committed
fix(p3): cubic P3 batch — docs links, NOTICE copyright, areas __all__
- lucebox/README.md: fix the relative link to `cli.py`; resolves to `src/lucebox/cli.py` (the actual location), not the nonexistent `lucebox/cli.py` (#15). - luce-bench/NOTICE: the bundled forge_eval LICENSE says "Copyright (c) 2025-2026 Antoine Zambelli", not 2024 — sync NOTICE with the actual upstream LICENSE (#16). - luce-bench/src/lucebench/areas/__init__.py: `__all__` was missing agent / agent_recorded / forge / longctx / smoke. Add the imports + list entries so `from lucebench.areas import *` matches the actual area surface (#17). Addresses cubic #15#17 (P3) on PR #285.
1 parent 4e9fcf6 commit ccef455

3 files changed

Lines changed: 26 additions & 4 deletions

File tree

luce-bench/NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ the per-fixture README/header where space allows.
7474
(_forge/) is also vendored.
7575
License: MIT
7676
SPDX: MIT
77-
Copyright (c) 2024 Antoine Zambelli
77+
Copyright (c) 2025-2026 Antoine Zambelli
7878

7979
src/lucebench/fixtures/agent_recorded/cases.json
8080
Source: own — mined from local Claude Code + Codex session logs

luce-bench/src/lucebench/areas/__init__.py

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@
99
The dispatcher in lucebench.cli routes ``--area X`` to ``lucebench.areas.X``.
1010
"""
1111

12-
from . import ds4_eval, gsm8k, hellaswag, humaneval, truthfulqa_mc1
12+
from . import (
13+
agent,
14+
agent_recorded,
15+
ds4_eval,
16+
forge,
17+
gsm8k,
18+
hellaswag,
19+
humaneval,
20+
longctx,
21+
smoke,
22+
truthfulqa_mc1,
23+
)
1324

14-
__all__ = ["ds4_eval", "gsm8k", "hellaswag", "humaneval", "truthfulqa_mc1"]
25+
__all__ = [
26+
"agent",
27+
"agent_recorded",
28+
"ds4_eval",
29+
"forge",
30+
"gsm8k",
31+
"hellaswag",
32+
"humaneval",
33+
"longctx",
34+
"smoke",
35+
"truthfulqa_mc1",
36+
]

lucebox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ tests, model download) is Python in the container. Host facts (driver,
1313
GPU, RAM, VRAM, systemd availability) are passed in via `LUCEBOX_HOST_*`
1414
environment variables so the Python side doesn't reprobe.
1515

16-
Subcommands are defined in [`lucebox/cli.py`](lucebox/cli.py). See the
16+
Subcommands are defined in [`lucebox/cli.py`](src/lucebox/cli.py). See the
1717
top-level [README.md](../README.md) for the user-facing flow.

0 commit comments

Comments
 (0)