Draft Proposal: Agent Session Result Layer#1
Closed
elronbandel wants to merge 1 commit into
Closed
Conversation
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.
Draft Proposal: Agent Session Result Layer
This PR proposes extending Every Eval Ever with session-level reporting for agentic evaluations. It is a starting point for discussion, not a finished specification.
Full context and motivation: *What Agent Evaluation Teams Don’t Tell You*
The gap
EEE already captures:
agentic_eval_config,eval_limits,sandbox)interaction_type,messages,tool_calls)What is missing is standardized session-level semantics: how the run ended, which side failed, how much interaction occurred, and what system was actually evaluated. These are part of the evaluation result, not just diagnostics.
Proposed extensions (all optional under
evaluation_results[])session_resultstatus:success | unsuccessful | unfinished | error | cancelled | limit_reachedis_finished:booleanfinish_accepted:booleanstop_reason:agent_done | timeout | max_steps | error | cancelled | benchmark_policyerror_attribution:agent | benchmark | external | unknownerror_detail:stringsession_accountingstep_count,action_count,invalid_action_count,parallel_action_max:integertime_to_first_action,wall_clock_seconds,agent_cost,benchmark_cost:numberagent_system/benchmark_systemeval_conditionsinternet_access,memory_exposure,reset_policy,permissions,repeated_runs,seedrobustness(optional / emerging)method,num_variants,variance_metric,variance_valueBackward compatibility
Suggested rollout
session_resultandsession_accountingDiscussion welcome
Feedback is especially welcome on:
This proposal grew out of building the Open General Agent Leaderboard and surveying eight evaluation systems. More detail is in the linked post above.