From 02bac2c74715480cb430bb15c90a72a5d51825ce Mon Sep 17 00:00:00 2001 From: David Wu Date: Wed, 30 Apr 2025 16:58:35 -0700 Subject: [PATCH 1/2] Add evaluation Id --- specification/ai/Azure.AI.Projects/evaluations/models.tsp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/specification/ai/Azure.AI.Projects/evaluations/models.tsp b/specification/ai/Azure.AI.Projects/evaluations/models.tsp index 6fe7a05bda28..1819c1b83bc0 100644 --- a/specification/ai/Azure.AI.Projects/evaluations/models.tsp +++ b/specification/ai/Azure.AI.Projects/evaluations/models.tsp @@ -132,6 +132,9 @@ model AgentEvaluationResult { @doc("Evaluator's name. This is the name of the evaluator that was used to evaluate the agent's completion.") evaluator: string; + @doc("Identifier of the evaluator.") + evaluatorId: string; + @doc("Score of the given evaluator. No restriction on range.") score: float32; From 38d923a74c702d578880aa79a37a8d5dc3ead785 Mon Sep 17 00:00:00 2001 From: David Wu Date: Wed, 30 Apr 2025 17:02:55 -0700 Subject: [PATCH 2/2] Update JSON --- .../preview/2025-05-15-preview/azure-ai-projects.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/specification/ai/data-plane/Azure.AI.Projects/preview/2025-05-15-preview/azure-ai-projects.json b/specification/ai/data-plane/Azure.AI.Projects/preview/2025-05-15-preview/azure-ai-projects.json index efbc9b3dccdf..85b709a2330a 100644 --- a/specification/ai/data-plane/Azure.AI.Projects/preview/2025-05-15-preview/azure-ai-projects.json +++ b/specification/ai/data-plane/Azure.AI.Projects/preview/2025-05-15-preview/azure-ai-projects.json @@ -1560,6 +1560,10 @@ "type": "string", "description": "Evaluator's name. This is the name of the evaluator that was used to evaluate the agent's completion." }, + "evaluatorId": { + "type": "string", + "description": "Identifier of the evaluator." + }, "score": { "type": "number", "format": "float", @@ -1599,6 +1603,7 @@ }, "required": [ "evaluator", + "evaluatorId", "score", "status", "runId"