FailureFeedback

data class FailureFeedback(val input: String, val expectedLabel: String, val actualOutput: String, val score: Double, val trajectory: Prompt)

Feedback collected from a single failed execution, fed to the reflection LM.

Constructors

Link copied to clipboard
constructor(input: String, expectedLabel: String, actualOutput: String, score: Double, trajectory: Prompt)

Properties

Link copied to clipboard

the output the agent actually produced.

Link copied to clipboard

the expected (ground-truth) output, as a string.

Link copied to clipboard

the agent input for the failed item.

Link copied to clipboard

the metric score for this item (0.0 = complete failure, 1.0 = perfect).

Link copied to clipboard
val trajectory: Prompt

the full conversation trace of the failed run.