Skip to content

Commit 2d2bf15

Browse files
authored
Update Grader Ids for AOAI graders in _patch_evaluations.py (#42064)
1 parent 5fd6418 commit 2d2bf15

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

sdk/ai/azure-ai-projects/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 1.0.0b13 (Unreleased)
4+
5+
### Breaking changes
6+
7+
* Updated evaluator ids for AOAI graders.
8+
39
## 1.0.0b12 (2025-06-23)
410

511
### Breaking changes

sdk/ai/azure-ai-projects/azure/ai/projects/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "1.0.0b12"
9+
VERSION = "1.0.0b13"

sdk/ai/azure-ai-projects/azure/ai/projects/models/_patch_evaluations.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ class EvaluatorIds(str, Enum, metaclass=CaseInsensitiveEnumMeta):
4141
UNGROUNDED_ATTRIBUTES = "azureai://built-in/evaluators/ungrounded_attributes"
4242
RESPONSE_COMPLETENESS = "azureai://built-in/evaluators/response_completeness"
4343
# AOAI Graders
44-
LABEL_GRADER = "aoai://label_model"
45-
STRING_CHECK_GRADER = "aoai://string_check"
46-
TEXT_SIMILARITY_GRADER = "aoai://text_similarity"
47-
GENERAL_GRADER = "aoai://general"
44+
LABEL_GRADER = "azureai://built-in/evaluators/azure-openai/label_grader"
45+
STRING_CHECK_GRADER = "azureai://built-in/evaluators/azure-openai/string_check_grader"
46+
TEXT_SIMILARITY_GRADER = "azureai://built-in/evaluators/azure-openai/text_similarity_grader"
47+
GENERAL_GRADER = "azureai://built-in/evaluators/azure-openai/custom_grader"
48+
SCORE_MODEL_GRADER = "azureai://built-in/evaluators/azure-openai/score_model_grader"

0 commit comments

Comments
 (0)