Fix cost report generation for JSONL files with null entries #288
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.
Problem
GAIA evaluations were failing to create PRs because cost report generation was crashing with:
This prevented
cost_report.jsonlfrom being created, which causedpush_to_index.pyto fail and prevented PR creation.Root Cause
The
extract_accumulated_cost()andcalculate_line_duration()functions inbenchmarks/utils/report_costs.pywere not handling null entries in JSONL files. GAIA evaluations can have null entries in their output files, which caused the functions to crash when trying to call.get()onNoneobjects.Solution
NoneCode Changes
Impact
Testing
Tested with GAIA evaluation data containing null entries - cost reports now generate successfully.
Fixes the issue where GAIA evaluations sent Slack notifications but failed to create PRs due to cost report generation errors.