Skip to content

Commit 6362cb6

Browse files
nagkumar91Nagkumar ArkalgudNagkumar ArkalgudCopilot
authored
Fix/make image tag not mandatory (#43572)
* Prepare evals SDK Release * Fix bug * Fix for ADV_CONV for FDP projects * Update release date * re-add pyrit to matrix * Change grader ids * Update unit test * replace all old grader IDs in tests * Update platform-matrix.json Add pyrit and not remove the other one * Update test to ensure everything is mocked * tox/black fixes * Skip that test with issues * update grader ID according to API View feedback * Update test * remove string check for grader ID * Update changelog and officialy start freeze * update the enum according to suggestions * update the changelog * Finalize logic * Initial plan * Fix client request ID headers in azure-ai-evaluation Co-authored-by: nagkumar91 <[email protected]> * Fix client request ID header format in rai_service.py Co-authored-by: nagkumar91 <[email protected]> * Passing threshold in AzureOpenAIScoreModelGrader * Add changelog * Adding the self.pass_threshold instead of pass_threshold * Add the python grader * Remove redundant test * Add class to exception list and format code * Add properties to evaluation upload run for FDP * Remove debug * Remove the redundant property * Fix changelog * Fix the multiple features added section * removed the properties in update * Release 1.12.0 * make the image tag not mandatory * udpate changelog --------- Co-authored-by: Nagkumar Arkalgud <[email protected]> Co-authored-by: Nagkumar Arkalgud <[email protected]> Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: nagkumar91 <[email protected]>
1 parent be5ff0b commit 6362cb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
### Bugs Fixed
1010

11-
-
11+
- `image_tag` parameter in `AzureOpenAIPythonGrader` is now optional.
1212

1313
## 1.12.0 (2025-10-02)
1414

sdk/evaluation/azure-ai-evaluation/azure/ai/evaluation/_aoai/python_grader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def __init__(
6060
*,
6161
model_config: Union[AzureOpenAIModelConfiguration, OpenAIModelConfiguration],
6262
name: str,
63-
image_tag: str,
6463
pass_threshold: float,
6564
source: str,
65+
image_tag: Optional[str] = None,
6666
credential: Optional[TokenCredential] = None,
6767
**kwargs: Any,
6868
):

0 commit comments

Comments
 (0)