Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions specification/ai/Azure.AI.Projects/evaluations/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -1599,6 +1603,7 @@
},
"required": [
"evaluator",
"evaluatorId",
"score",
"status",
"runId"
Expand Down
Loading