agent simulation: add conciseness and conversation_progression to RunMetrics - #1742
Merged
Conversation
🦋 Changeset detectedLatest commit: 9c4de5f The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
u9g
force-pushed
the
jason/run-metrics-quality-members
branch
from
August 25, 2026 20:33
79a6046 to
296d8ae
Compare
…Metrics RunMetrics carried accuracy_score and experience_score but not all of what they are made of: conciseness and conversation_progression exist on JobMetrics alone, so a run's Quality cards show those rows empty. Each is the mean over the jobs that report it. task_completion is not added: at run scope it is scenario_pass_rate.
u9g
force-pushed
the
jason/run-metrics-quality-members
branch
from
August 25, 2026 20:35
0f9d101 to
e4c6f37
Compare
theomonnom
approved these changes
Aug 25, 2026
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.
SimulationRun.RunMetricscarriesaccuracy_scoreandexperience_scorebut not all of what those composites are made of.concisenessandconversation_progressionexist onJobMetricsalone, so the run-level Quality cards on the simulation summary render those rows as "Not measured" while the headline above them has a value (OCD-3071; OCD-3000 gap 2).Adds the two as
optional floatonRunMetrics, each the mean over the jobs that report it.task_completionis deliberately not added: at run scope it is the mean of a 1/0 verdict over scored jobs, which isscenario_pass_rate. The dashboard's Task completion row reads that field.Producer: livekit/agents-private#400. Consumer: livekit/web#5762. Both stack on this one.