You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input_metadata: InputMetadataSchema.describe('Metadata related to the input (dataset info, model config, session data, etc.).'),
152
162
rollout_status: StatusSchema.describe('The status of the rollout following AIP-193 standards.'),
153
163
execution_metadata: ExecutionMetadataSchema.optional().describe('Metadata about the execution of the evaluation.'),
154
-
ground_truth: z.string().optional().describe('Optional ground truth reference for this evaluation.'),
164
+
ground_truth: z.union([z.string(),z.number(),z.boolean(),z.array(z.any()),z.record(z.string(),z.any())]).nullable().optional().describe('JSON-serializable ground truth reference for this evaluation.'),
155
165
evaluation_result: EvaluateResultSchema.optional().describe('The evaluation result for this row/trajectory.'),
156
-
usage: CompletionUsageSchema.optional().describe('Token usage statistics from LLM calls during execution.'),
0 commit comments