Skip to content
Closed
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
6 changes: 6 additions & 0 deletions sdk/ai/azure-ai-projects/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 1.0.0b13 (Unreleased)

### Breaking changes

* Updated evaluator ids for AOAI graders.

## 1.0.0b12 (2025-06-23)

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/ai/azure-ai-projects/azure/ai/projects/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "1.0.0b12"
VERSION = "1.0.0b13"
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ class EvaluatorIds(str, Enum, metaclass=CaseInsensitiveEnumMeta):
UNGROUNDED_ATTRIBUTES = "azureai://built-in/evaluators/ungrounded_attributes"
RESPONSE_COMPLETENESS = "azureai://built-in/evaluators/response_completeness"
# AOAI Graders
LABEL_GRADER = "aoai://label_model"
STRING_CHECK_GRADER = "aoai://string_check"
TEXT_SIMILARITY_GRADER = "aoai://text_similarity"
GENERAL_GRADER = "aoai://general"
LABEL_GRADER = "azureai://built-in/evaluators/azure-openai/label_grader"
STRING_CHECK_GRADER = "azureai://built-in/evaluators/azure-openai/string_check_grader"
TEXT_SIMILARITY_GRADER = "azureai://built-in/evaluators/azure-openai/text_similarity_grader"
GENERAL_GRADER = "azureai://built-in/evaluators/azure-openai/custom_grader"
SCORE_MODEL_GRADER = "azureai://built-in/evaluators/azure-openai/score_model_grader"