docs: polish open source project docs#13
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 604473c3ba
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| for (const [task, filename] of Object.entries(fixtures)) { | ||
| const source = new URL(`./tasks/fixtures/${filename}`, import.meta.url).pathname; | ||
| const target = datasetCachePath(filename); |
There was a problem hiding this comment.
Keep smoke fixtures out of shared dataset cache
seedSmokeFixtures() writes fixture files to datasetCachePath(filename), which is the same cache location used by normal frontier/frontier-all dataset loaders. After someone runs bun eval/cli.ts smoke, later non-smoke evals will read these tiny fixture caches instead of fetching the real HF datasets, silently producing incorrect frontier/quality results until the cache is manually cleared.
Useful? React with 👍 / 👎.
Summary
Validation