Merged
Conversation
…racking Adds a VersionInfo TypedDict (vf_version, vf_commit, env_version, env_commit) to GenerateMetadata so every generate run records which verifiers framework version and environment package version/commit produced the results. - New verifiers/utils/version_utils.py with utilities to detect package versions (importlib.metadata) and git commit hashes (subprocess) - VersionInfo populated eagerly in GenerateOutputsBuilder.__init__ - Test fixture and docs updated Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
saves vf version commit + env version and commit into the metadata of an eval run. useful to show on platform for y reasons and to match an eval run to env versions
Type of Change
Testing
uv run pytestlocally.Checklist
Additional Notes
Note
Medium Risk
Low-impact API extension, but it introduces
subprocesscalls togitduring metadata construction which could behave differently across runtime environments and affect performance/timeouts.Overview
Eval run metadata now includes a new
version_infoblock containing the verifiers framework version/commit and the environment package version/commit.This adds a
VersionInfotype, populates it automatically inGenerateOutputsBuildervia a newversion_utilshelper (using package metadata andgit rev-parsewhen available), updates test fixtures to include defaults, and documents the new metadata field in the reference docs.Written by Cursor Bugbot for commit d9f2580. This will update automatically on new commits. Configure here.