azure-ai-evaluation 1.0.0b2__py3-none-any.whl → 1.13.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of azure-ai-evaluation might be problematic. Click here for more details.

Files changed (299) hide show
  1. azure/ai/evaluation/__init__.py +100 -5
  2. azure/ai/evaluation/{_evaluators/_chat → _aoai}/__init__.py +3 -2
  3. azure/ai/evaluation/_aoai/aoai_grader.py +140 -0
  4. azure/ai/evaluation/_aoai/label_grader.py +68 -0
  5. azure/ai/evaluation/_aoai/python_grader.py +86 -0
  6. azure/ai/evaluation/_aoai/score_model_grader.py +94 -0
  7. azure/ai/evaluation/_aoai/string_check_grader.py +66 -0
  8. azure/ai/evaluation/_aoai/text_similarity_grader.py +80 -0
  9. azure/ai/evaluation/_azure/__init__.py +3 -0
  10. azure/ai/evaluation/_azure/_clients.py +204 -0
  11. azure/ai/evaluation/_azure/_envs.py +207 -0
  12. azure/ai/evaluation/_azure/_models.py +227 -0
  13. azure/ai/evaluation/_azure/_token_manager.py +129 -0
  14. azure/ai/evaluation/_common/__init__.py +9 -1
  15. azure/ai/evaluation/{simulator/_helpers → _common}/_experimental.py +24 -9
  16. azure/ai/evaluation/_common/constants.py +131 -2
  17. azure/ai/evaluation/_common/evaluation_onedp_client.py +169 -0
  18. azure/ai/evaluation/_common/math.py +89 -0
  19. azure/ai/evaluation/_common/onedp/__init__.py +32 -0
  20. azure/ai/evaluation/_common/onedp/_client.py +166 -0
  21. azure/ai/evaluation/_common/onedp/_configuration.py +72 -0
  22. azure/ai/evaluation/_common/onedp/_model_base.py +1232 -0
  23. azure/ai/evaluation/_common/onedp/_patch.py +21 -0
  24. azure/ai/evaluation/_common/onedp/_serialization.py +2032 -0
  25. azure/ai/evaluation/_common/onedp/_types.py +21 -0
  26. azure/ai/evaluation/_common/onedp/_utils/__init__.py +6 -0
  27. azure/ai/evaluation/_common/onedp/_utils/model_base.py +1232 -0
  28. azure/ai/evaluation/_common/onedp/_utils/serialization.py +2032 -0
  29. azure/ai/evaluation/_common/onedp/_validation.py +66 -0
  30. azure/ai/evaluation/_common/onedp/_vendor.py +50 -0
  31. azure/ai/evaluation/_common/onedp/_version.py +9 -0
  32. azure/ai/evaluation/_common/onedp/aio/__init__.py +29 -0
  33. azure/ai/evaluation/_common/onedp/aio/_client.py +168 -0
  34. azure/ai/evaluation/_common/onedp/aio/_configuration.py +72 -0
  35. azure/ai/evaluation/_common/onedp/aio/_patch.py +21 -0
  36. azure/ai/evaluation/_common/onedp/aio/operations/__init__.py +49 -0
  37. azure/ai/evaluation/_common/onedp/aio/operations/_operations.py +7143 -0
  38. azure/ai/evaluation/_common/onedp/aio/operations/_patch.py +21 -0
  39. azure/ai/evaluation/_common/onedp/models/__init__.py +358 -0
  40. azure/ai/evaluation/_common/onedp/models/_enums.py +447 -0
  41. azure/ai/evaluation/_common/onedp/models/_models.py +5963 -0
  42. azure/ai/evaluation/_common/onedp/models/_patch.py +21 -0
  43. azure/ai/evaluation/_common/onedp/operations/__init__.py +49 -0
  44. azure/ai/evaluation/_common/onedp/operations/_operations.py +8951 -0
  45. azure/ai/evaluation/_common/onedp/operations/_patch.py +21 -0
  46. azure/ai/evaluation/_common/onedp/py.typed +1 -0
  47. azure/ai/evaluation/_common/onedp/servicepatterns/__init__.py +1 -0
  48. azure/ai/evaluation/_common/onedp/servicepatterns/aio/__init__.py +1 -0
  49. azure/ai/evaluation/_common/onedp/servicepatterns/aio/operations/__init__.py +25 -0
  50. azure/ai/evaluation/_common/onedp/servicepatterns/aio/operations/_operations.py +34 -0
  51. azure/ai/evaluation/_common/onedp/servicepatterns/aio/operations/_patch.py +20 -0
  52. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/__init__.py +1 -0
  53. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/aio/__init__.py +1 -0
  54. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/aio/operations/__init__.py +22 -0
  55. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/aio/operations/_operations.py +29 -0
  56. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/aio/operations/_patch.py +20 -0
  57. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/operations/__init__.py +22 -0
  58. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/operations/_operations.py +29 -0
  59. azure/ai/evaluation/_common/onedp/servicepatterns/buildingblocks/operations/_patch.py +20 -0
  60. azure/ai/evaluation/_common/onedp/servicepatterns/operations/__init__.py +25 -0
  61. azure/ai/evaluation/_common/onedp/servicepatterns/operations/_operations.py +34 -0
  62. azure/ai/evaluation/_common/onedp/servicepatterns/operations/_patch.py +20 -0
  63. azure/ai/evaluation/_common/rai_service.py +831 -142
  64. azure/ai/evaluation/_common/raiclient/__init__.py +34 -0
  65. azure/ai/evaluation/_common/raiclient/_client.py +128 -0
  66. azure/ai/evaluation/_common/raiclient/_configuration.py +87 -0
  67. azure/ai/evaluation/_common/raiclient/_model_base.py +1235 -0
  68. azure/ai/evaluation/_common/raiclient/_patch.py +20 -0
  69. azure/ai/evaluation/_common/raiclient/_serialization.py +2050 -0
  70. azure/ai/evaluation/_common/raiclient/_version.py +9 -0
  71. azure/ai/evaluation/_common/raiclient/aio/__init__.py +29 -0
  72. azure/ai/evaluation/_common/raiclient/aio/_client.py +130 -0
  73. azure/ai/evaluation/_common/raiclient/aio/_configuration.py +87 -0
  74. azure/ai/evaluation/_common/raiclient/aio/_patch.py +20 -0
  75. azure/ai/evaluation/_common/raiclient/aio/operations/__init__.py +25 -0
  76. azure/ai/evaluation/_common/raiclient/aio/operations/_operations.py +981 -0
  77. azure/ai/evaluation/_common/raiclient/aio/operations/_patch.py +20 -0
  78. azure/ai/evaluation/_common/raiclient/models/__init__.py +60 -0
  79. azure/ai/evaluation/_common/raiclient/models/_enums.py +18 -0
  80. azure/ai/evaluation/_common/raiclient/models/_models.py +651 -0
  81. azure/ai/evaluation/_common/raiclient/models/_patch.py +20 -0
  82. azure/ai/evaluation/_common/raiclient/operations/__init__.py +25 -0
  83. azure/ai/evaluation/_common/raiclient/operations/_operations.py +1238 -0
  84. azure/ai/evaluation/_common/raiclient/operations/_patch.py +20 -0
  85. azure/ai/evaluation/_common/raiclient/py.typed +1 -0
  86. azure/ai/evaluation/_common/utils.py +870 -34
  87. azure/ai/evaluation/_constants.py +167 -6
  88. azure/ai/evaluation/_converters/__init__.py +3 -0
  89. azure/ai/evaluation/_converters/_ai_services.py +899 -0
  90. azure/ai/evaluation/_converters/_models.py +467 -0
  91. azure/ai/evaluation/_converters/_sk_services.py +495 -0
  92. azure/ai/evaluation/_eval_mapping.py +83 -0
  93. azure/ai/evaluation/_evaluate/_batch_run/__init__.py +17 -0
  94. azure/ai/evaluation/_evaluate/_batch_run/_run_submitter_client.py +176 -0
  95. azure/ai/evaluation/_evaluate/_batch_run/batch_clients.py +82 -0
  96. azure/ai/evaluation/_evaluate/{_batch_run_client → _batch_run}/code_client.py +47 -25
  97. azure/ai/evaluation/_evaluate/{_batch_run_client/batch_run_context.py → _batch_run/eval_run_context.py} +42 -13
  98. azure/ai/evaluation/_evaluate/_batch_run/proxy_client.py +124 -0
  99. azure/ai/evaluation/_evaluate/_batch_run/target_run_context.py +62 -0
  100. azure/ai/evaluation/_evaluate/_eval_run.py +102 -59
  101. azure/ai/evaluation/_evaluate/_evaluate.py +2134 -311
  102. azure/ai/evaluation/_evaluate/_evaluate_aoai.py +992 -0
  103. azure/ai/evaluation/_evaluate/_telemetry/__init__.py +14 -99
  104. azure/ai/evaluation/_evaluate/_utils.py +289 -40
  105. azure/ai/evaluation/_evaluator_definition.py +76 -0
  106. azure/ai/evaluation/_evaluators/_bleu/_bleu.py +93 -42
  107. azure/ai/evaluation/_evaluators/_code_vulnerability/__init__.py +5 -0
  108. azure/ai/evaluation/_evaluators/_code_vulnerability/_code_vulnerability.py +119 -0
  109. azure/ai/evaluation/_evaluators/_coherence/_coherence.py +117 -91
  110. azure/ai/evaluation/_evaluators/_coherence/coherence.prompty +76 -39
  111. azure/ai/evaluation/_evaluators/_common/__init__.py +15 -0
  112. azure/ai/evaluation/_evaluators/_common/_base_eval.py +742 -0
  113. azure/ai/evaluation/_evaluators/_common/_base_multi_eval.py +63 -0
  114. azure/ai/evaluation/_evaluators/_common/_base_prompty_eval.py +345 -0
  115. azure/ai/evaluation/_evaluators/_common/_base_rai_svc_eval.py +198 -0
  116. azure/ai/evaluation/_evaluators/_common/_conversation_aggregators.py +49 -0
  117. azure/ai/evaluation/_evaluators/_content_safety/__init__.py +0 -4
  118. azure/ai/evaluation/_evaluators/_content_safety/_content_safety.py +144 -86
  119. azure/ai/evaluation/_evaluators/_content_safety/_hate_unfairness.py +138 -57
  120. azure/ai/evaluation/_evaluators/_content_safety/_self_harm.py +123 -55
  121. azure/ai/evaluation/_evaluators/_content_safety/_sexual.py +133 -54
  122. azure/ai/evaluation/_evaluators/_content_safety/_violence.py +134 -54
  123. azure/ai/evaluation/_evaluators/_document_retrieval/__init__.py +7 -0
  124. azure/ai/evaluation/_evaluators/_document_retrieval/_document_retrieval.py +442 -0
  125. azure/ai/evaluation/_evaluators/_eci/_eci.py +49 -56
  126. azure/ai/evaluation/_evaluators/_f1_score/_f1_score.py +102 -60
  127. azure/ai/evaluation/_evaluators/_fluency/_fluency.py +115 -92
  128. azure/ai/evaluation/_evaluators/_fluency/fluency.prompty +66 -41
  129. azure/ai/evaluation/_evaluators/_gleu/_gleu.py +90 -37
  130. azure/ai/evaluation/_evaluators/_groundedness/_groundedness.py +318 -82
  131. azure/ai/evaluation/_evaluators/_groundedness/groundedness_with_query.prompty +114 -0
  132. azure/ai/evaluation/_evaluators/_groundedness/groundedness_without_query.prompty +104 -0
  133. azure/ai/evaluation/{_evaluate/_batch_run_client → _evaluators/_intent_resolution}/__init__.py +3 -4
  134. azure/ai/evaluation/_evaluators/_intent_resolution/_intent_resolution.py +196 -0
  135. azure/ai/evaluation/_evaluators/_intent_resolution/intent_resolution.prompty +275 -0
  136. azure/ai/evaluation/_evaluators/_meteor/_meteor.py +107 -61
  137. azure/ai/evaluation/_evaluators/_protected_material/_protected_material.py +104 -77
  138. azure/ai/evaluation/_evaluators/_qa/_qa.py +115 -63
  139. azure/ai/evaluation/_evaluators/_relevance/_relevance.py +182 -98
  140. azure/ai/evaluation/_evaluators/_relevance/relevance.prompty +178 -49
  141. azure/ai/evaluation/_evaluators/_response_completeness/__init__.py +7 -0
  142. azure/ai/evaluation/_evaluators/_response_completeness/_response_completeness.py +202 -0
  143. azure/ai/evaluation/_evaluators/_response_completeness/response_completeness.prompty +84 -0
  144. azure/ai/evaluation/_evaluators/{_chat/retrieval → _retrieval}/__init__.py +2 -2
  145. azure/ai/evaluation/_evaluators/_retrieval/_retrieval.py +148 -0
  146. azure/ai/evaluation/_evaluators/_retrieval/retrieval.prompty +93 -0
  147. azure/ai/evaluation/_evaluators/_rouge/_rouge.py +189 -50
  148. azure/ai/evaluation/_evaluators/_service_groundedness/__init__.py +9 -0
  149. azure/ai/evaluation/_evaluators/_service_groundedness/_service_groundedness.py +179 -0
  150. azure/ai/evaluation/_evaluators/_similarity/_similarity.py +102 -91
  151. azure/ai/evaluation/_evaluators/_similarity/similarity.prompty +0 -5
  152. azure/ai/evaluation/_evaluators/_task_adherence/__init__.py +7 -0
  153. azure/ai/evaluation/_evaluators/_task_adherence/_task_adherence.py +226 -0
  154. azure/ai/evaluation/_evaluators/_task_adherence/task_adherence.prompty +101 -0
  155. azure/ai/evaluation/_evaluators/_task_completion/__init__.py +7 -0
  156. azure/ai/evaluation/_evaluators/_task_completion/_task_completion.py +177 -0
  157. azure/ai/evaluation/_evaluators/_task_completion/task_completion.prompty +220 -0
  158. azure/ai/evaluation/_evaluators/_task_navigation_efficiency/__init__.py +7 -0
  159. azure/ai/evaluation/_evaluators/_task_navigation_efficiency/_task_navigation_efficiency.py +384 -0
  160. azure/ai/evaluation/_evaluators/_tool_call_accuracy/__init__.py +9 -0
  161. azure/ai/evaluation/_evaluators/_tool_call_accuracy/_tool_call_accuracy.py +298 -0
  162. azure/ai/evaluation/_evaluators/_tool_call_accuracy/tool_call_accuracy.prompty +166 -0
  163. azure/ai/evaluation/_evaluators/_tool_input_accuracy/__init__.py +9 -0
  164. azure/ai/evaluation/_evaluators/_tool_input_accuracy/_tool_input_accuracy.py +263 -0
  165. azure/ai/evaluation/_evaluators/_tool_input_accuracy/tool_input_accuracy.prompty +76 -0
  166. azure/ai/evaluation/_evaluators/_tool_output_utilization/__init__.py +7 -0
  167. azure/ai/evaluation/_evaluators/_tool_output_utilization/_tool_output_utilization.py +225 -0
  168. azure/ai/evaluation/_evaluators/_tool_output_utilization/tool_output_utilization.prompty +221 -0
  169. azure/ai/evaluation/_evaluators/_tool_selection/__init__.py +9 -0
  170. azure/ai/evaluation/_evaluators/_tool_selection/_tool_selection.py +266 -0
  171. azure/ai/evaluation/_evaluators/_tool_selection/tool_selection.prompty +104 -0
  172. azure/ai/evaluation/_evaluators/_tool_success/__init__.py +7 -0
  173. azure/ai/evaluation/_evaluators/_tool_success/_tool_success.py +301 -0
  174. azure/ai/evaluation/_evaluators/_tool_success/tool_success.prompty +321 -0
  175. azure/ai/evaluation/_evaluators/_ungrounded_attributes/__init__.py +5 -0
  176. azure/ai/evaluation/_evaluators/_ungrounded_attributes/_ungrounded_attributes.py +102 -0
  177. azure/ai/evaluation/_evaluators/_xpia/xpia.py +109 -107
  178. azure/ai/evaluation/_exceptions.py +51 -7
  179. azure/ai/evaluation/_http_utils.py +210 -137
  180. azure/ai/evaluation/_legacy/__init__.py +3 -0
  181. azure/ai/evaluation/_legacy/_adapters/__init__.py +7 -0
  182. azure/ai/evaluation/_legacy/_adapters/_check.py +17 -0
  183. azure/ai/evaluation/_legacy/_adapters/_configuration.py +45 -0
  184. azure/ai/evaluation/_legacy/_adapters/_constants.py +10 -0
  185. azure/ai/evaluation/_legacy/_adapters/_errors.py +29 -0
  186. azure/ai/evaluation/_legacy/_adapters/_flows.py +28 -0
  187. azure/ai/evaluation/_legacy/_adapters/_service.py +16 -0
  188. azure/ai/evaluation/_legacy/_adapters/client.py +51 -0
  189. azure/ai/evaluation/_legacy/_adapters/entities.py +26 -0
  190. azure/ai/evaluation/_legacy/_adapters/tracing.py +28 -0
  191. azure/ai/evaluation/_legacy/_adapters/types.py +15 -0
  192. azure/ai/evaluation/_legacy/_adapters/utils.py +31 -0
  193. azure/ai/evaluation/_legacy/_batch_engine/__init__.py +9 -0
  194. azure/ai/evaluation/_legacy/_batch_engine/_config.py +48 -0
  195. azure/ai/evaluation/_legacy/_batch_engine/_engine.py +477 -0
  196. azure/ai/evaluation/_legacy/_batch_engine/_exceptions.py +88 -0
  197. azure/ai/evaluation/_legacy/_batch_engine/_openai_injector.py +132 -0
  198. azure/ai/evaluation/_legacy/_batch_engine/_result.py +107 -0
  199. azure/ai/evaluation/_legacy/_batch_engine/_run.py +127 -0
  200. azure/ai/evaluation/_legacy/_batch_engine/_run_storage.py +128 -0
  201. azure/ai/evaluation/_legacy/_batch_engine/_run_submitter.py +262 -0
  202. azure/ai/evaluation/_legacy/_batch_engine/_status.py +25 -0
  203. azure/ai/evaluation/_legacy/_batch_engine/_trace.py +97 -0
  204. azure/ai/evaluation/_legacy/_batch_engine/_utils.py +97 -0
  205. azure/ai/evaluation/_legacy/_batch_engine/_utils_deprecated.py +131 -0
  206. azure/ai/evaluation/_legacy/_common/__init__.py +3 -0
  207. azure/ai/evaluation/_legacy/_common/_async_token_provider.py +117 -0
  208. azure/ai/evaluation/_legacy/_common/_logging.py +292 -0
  209. azure/ai/evaluation/_legacy/_common/_thread_pool_executor_with_context.py +17 -0
  210. azure/ai/evaluation/_legacy/prompty/__init__.py +36 -0
  211. azure/ai/evaluation/_legacy/prompty/_connection.py +119 -0
  212. azure/ai/evaluation/_legacy/prompty/_exceptions.py +139 -0
  213. azure/ai/evaluation/_legacy/prompty/_prompty.py +430 -0
  214. azure/ai/evaluation/_legacy/prompty/_utils.py +663 -0
  215. azure/ai/evaluation/_legacy/prompty/_yaml_utils.py +99 -0
  216. azure/ai/evaluation/_model_configurations.py +130 -8
  217. azure/ai/evaluation/_safety_evaluation/__init__.py +3 -0
  218. azure/ai/evaluation/_safety_evaluation/_generated_rai_client.py +0 -0
  219. azure/ai/evaluation/_safety_evaluation/_safety_evaluation.py +917 -0
  220. azure/ai/evaluation/_user_agent.py +32 -1
  221. azure/ai/evaluation/_vendor/__init__.py +3 -0
  222. azure/ai/evaluation/_vendor/rouge_score/__init__.py +14 -0
  223. azure/ai/evaluation/_vendor/rouge_score/rouge_scorer.py +324 -0
  224. azure/ai/evaluation/_vendor/rouge_score/scoring.py +59 -0
  225. azure/ai/evaluation/_vendor/rouge_score/tokenize.py +59 -0
  226. azure/ai/evaluation/_vendor/rouge_score/tokenizers.py +53 -0
  227. azure/ai/evaluation/_version.py +2 -1
  228. azure/ai/evaluation/red_team/__init__.py +22 -0
  229. azure/ai/evaluation/red_team/_agent/__init__.py +3 -0
  230. azure/ai/evaluation/red_team/_agent/_agent_functions.py +261 -0
  231. azure/ai/evaluation/red_team/_agent/_agent_tools.py +461 -0
  232. azure/ai/evaluation/red_team/_agent/_agent_utils.py +89 -0
  233. azure/ai/evaluation/red_team/_agent/_semantic_kernel_plugin.py +228 -0
  234. azure/ai/evaluation/red_team/_attack_objective_generator.py +268 -0
  235. azure/ai/evaluation/red_team/_attack_strategy.py +49 -0
  236. azure/ai/evaluation/red_team/_callback_chat_target.py +115 -0
  237. azure/ai/evaluation/red_team/_default_converter.py +21 -0
  238. azure/ai/evaluation/red_team/_evaluation_processor.py +505 -0
  239. azure/ai/evaluation/red_team/_mlflow_integration.py +430 -0
  240. azure/ai/evaluation/red_team/_orchestrator_manager.py +803 -0
  241. azure/ai/evaluation/red_team/_red_team.py +1717 -0
  242. azure/ai/evaluation/red_team/_red_team_result.py +661 -0
  243. azure/ai/evaluation/red_team/_result_processor.py +1708 -0
  244. azure/ai/evaluation/red_team/_utils/__init__.py +37 -0
  245. azure/ai/evaluation/red_team/_utils/_rai_service_eval_chat_target.py +128 -0
  246. azure/ai/evaluation/red_team/_utils/_rai_service_target.py +601 -0
  247. azure/ai/evaluation/red_team/_utils/_rai_service_true_false_scorer.py +114 -0
  248. azure/ai/evaluation/red_team/_utils/constants.py +72 -0
  249. azure/ai/evaluation/red_team/_utils/exception_utils.py +345 -0
  250. azure/ai/evaluation/red_team/_utils/file_utils.py +266 -0
  251. azure/ai/evaluation/red_team/_utils/formatting_utils.py +365 -0
  252. azure/ai/evaluation/red_team/_utils/logging_utils.py +139 -0
  253. azure/ai/evaluation/red_team/_utils/metric_mapping.py +73 -0
  254. azure/ai/evaluation/red_team/_utils/objective_utils.py +46 -0
  255. azure/ai/evaluation/red_team/_utils/progress_utils.py +252 -0
  256. azure/ai/evaluation/red_team/_utils/retry_utils.py +218 -0
  257. azure/ai/evaluation/red_team/_utils/strategy_utils.py +218 -0
  258. azure/ai/evaluation/simulator/__init__.py +2 -1
  259. azure/ai/evaluation/simulator/_adversarial_scenario.py +26 -1
  260. azure/ai/evaluation/simulator/_adversarial_simulator.py +270 -144
  261. azure/ai/evaluation/simulator/_constants.py +12 -1
  262. azure/ai/evaluation/simulator/_conversation/__init__.py +151 -23
  263. azure/ai/evaluation/simulator/_conversation/_conversation.py +10 -6
  264. azure/ai/evaluation/simulator/_conversation/constants.py +1 -1
  265. azure/ai/evaluation/simulator/_data_sources/__init__.py +3 -0
  266. azure/ai/evaluation/simulator/_data_sources/grounding.json +1150 -0
  267. azure/ai/evaluation/simulator/_direct_attack_simulator.py +54 -75
  268. azure/ai/evaluation/simulator/_helpers/__init__.py +1 -2
  269. azure/ai/evaluation/simulator/_helpers/_language_suffix_mapping.py +1 -0
  270. azure/ai/evaluation/simulator/_helpers/_simulator_data_classes.py +26 -5
  271. azure/ai/evaluation/simulator/_indirect_attack_simulator.py +145 -104
  272. azure/ai/evaluation/simulator/_model_tools/__init__.py +2 -1
  273. azure/ai/evaluation/simulator/_model_tools/_generated_rai_client.py +225 -0
  274. azure/ai/evaluation/simulator/_model_tools/_identity_manager.py +80 -30
  275. azure/ai/evaluation/simulator/_model_tools/_proxy_completion_model.py +117 -45
  276. azure/ai/evaluation/simulator/_model_tools/_rai_client.py +109 -7
  277. azure/ai/evaluation/simulator/_model_tools/_template_handler.py +97 -33
  278. azure/ai/evaluation/simulator/_model_tools/models.py +30 -27
  279. azure/ai/evaluation/simulator/_prompty/task_query_response.prompty +6 -10
  280. azure/ai/evaluation/simulator/_prompty/task_simulate.prompty +6 -5
  281. azure/ai/evaluation/simulator/_simulator.py +302 -208
  282. azure/ai/evaluation/simulator/_utils.py +31 -13
  283. azure_ai_evaluation-1.13.3.dist-info/METADATA +939 -0
  284. azure_ai_evaluation-1.13.3.dist-info/RECORD +305 -0
  285. {azure_ai_evaluation-1.0.0b2.dist-info → azure_ai_evaluation-1.13.3.dist-info}/WHEEL +1 -1
  286. azure_ai_evaluation-1.13.3.dist-info/licenses/NOTICE.txt +70 -0
  287. azure/ai/evaluation/_evaluate/_batch_run_client/proxy_client.py +0 -71
  288. azure/ai/evaluation/_evaluators/_chat/_chat.py +0 -357
  289. azure/ai/evaluation/_evaluators/_chat/retrieval/_retrieval.py +0 -157
  290. azure/ai/evaluation/_evaluators/_chat/retrieval/retrieval.prompty +0 -48
  291. azure/ai/evaluation/_evaluators/_content_safety/_content_safety_base.py +0 -65
  292. azure/ai/evaluation/_evaluators/_content_safety/_content_safety_chat.py +0 -301
  293. azure/ai/evaluation/_evaluators/_groundedness/groundedness.prompty +0 -54
  294. azure/ai/evaluation/_evaluators/_protected_materials/__init__.py +0 -5
  295. azure/ai/evaluation/_evaluators/_protected_materials/_protected_materials.py +0 -104
  296. azure/ai/evaluation/simulator/_tracing.py +0 -89
  297. azure_ai_evaluation-1.0.0b2.dist-info/METADATA +0 -449
  298. azure_ai_evaluation-1.0.0b2.dist-info/RECORD +0 -99
  299. {azure_ai_evaluation-1.0.0b2.dist-info → azure_ai_evaluation-1.13.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,442 @@
1
+ # ---------------------------------------------------------
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # ---------------------------------------------------------
4
+ import math
5
+ import operator
6
+ from itertools import starmap
7
+ from typing import Any, Dict, List, TypedDict, Tuple, Optional, Union
8
+ from azure.ai.evaluation._evaluators._common import EvaluatorBase
9
+ from azure.ai.evaluation._exceptions import EvaluationException
10
+ from typing_extensions import override, overload
11
+
12
+
13
+ RetrievalGroundTruthDocument = TypedDict(
14
+ "RetrievalGroundTruthDocument", {"document_id": str, "query_relevance_label": int}
15
+ )
16
+
17
+ RetrievedDocument = TypedDict("RetrievedDocument", {"document_id": str, "relevance_score": float})
18
+
19
+
20
+ class DocumentRetrievalEvaluator(EvaluatorBase):
21
+ """
22
+ Calculate document retrieval metrics, such as NDCG, XDCG, Fidelity, Top K Relevance and Holes.
23
+
24
+ .. admonition:: Example:
25
+
26
+ .. literalinclude:: ../samples/evaluation_samples_evaluate.py
27
+ :start-after: [START document_retrieval_evaluator]
28
+ :end-before: [END document_retrieval_evaluator]
29
+ :language: python
30
+ :dedent: 8
31
+ :caption: Initialize and call a DocumentRetrievalEvaluator
32
+
33
+ .. admonition:: Example using Azure AI Project URL:
34
+
35
+ .. literalinclude:: ../samples/evaluation_samples_evaluate_fdp.py
36
+ :start-after: [START document_retrieval_evaluator]
37
+ :end-before: [END document_retrieval_evaluator]
38
+ :language: python
39
+ :dedent: 8
40
+ :caption: Initialize and call DocumentRetrievalEvaluator using Azure AI Project URL in following format
41
+ https://{resource_name}.services.ai.azure.com/api/projects/{project_name}
42
+
43
+ .. admonition:: Example with Threshold:
44
+ .. literalinclude:: ../samples/evaluation_samples_threshold.py
45
+ :start-after: [START threshold_document_retrieval_evaluator]
46
+ :end-before: [END threshold_document_retrieval_evaluator]
47
+ :language: python
48
+ :dedent: 8
49
+ :caption: Initialize with threshold and call a DocumentRetrievalEvaluator.
50
+ """
51
+
52
+ id = "azureai://built-in/evaluators/document_retrieval"
53
+ """Evaluator identifier, experimental and to be used only with evaluation in cloud."""
54
+
55
+ def __init__(
56
+ self,
57
+ *,
58
+ ground_truth_label_min: int = 0,
59
+ ground_truth_label_max: int = 4,
60
+ ndcg_threshold: Optional[float] = 0.5,
61
+ xdcg_threshold: Optional[float] = 50.0,
62
+ fidelity_threshold: Optional[float] = 0.5,
63
+ top1_relevance_threshold: Optional[float] = 50.0,
64
+ top3_max_relevance_threshold: Optional[float] = 50.0,
65
+ total_retrieved_documents_threshold: Optional[int] = 50,
66
+ total_ground_truth_documents_threshold: Optional[int] = 50,
67
+ ):
68
+ super().__init__()
69
+ self.k = 3
70
+ self.xdcg_discount_factor = 0.6
71
+
72
+ if ground_truth_label_min >= ground_truth_label_max:
73
+ raise EvaluationException(
74
+ "The ground truth label maximum must be strictly greater than the ground truth label minimum."
75
+ )
76
+
77
+ if not isinstance(ground_truth_label_min, int):
78
+ raise EvaluationException("The ground truth label minimum must be an integer value.")
79
+
80
+ if not isinstance(ground_truth_label_max, int):
81
+ raise EvaluationException("The ground truth label maximum must be an integer value.")
82
+
83
+ self.ground_truth_label_min = ground_truth_label_min
84
+ self.ground_truth_label_max = ground_truth_label_max
85
+
86
+ # The default threshold for metrics where higher numbers are better.
87
+ self._threshold_metrics: Dict[str, Any] = {
88
+ "ndcg@3": ndcg_threshold,
89
+ "xdcg@3": xdcg_threshold,
90
+ "fidelity": fidelity_threshold,
91
+ "top1_relevance": top1_relevance_threshold,
92
+ "top3_max_relevance": top3_max_relevance_threshold,
93
+ "total_retrieved_documents": total_retrieved_documents_threshold,
94
+ "total_ground_truth_documents": total_ground_truth_documents_threshold,
95
+ }
96
+
97
+ # Ideally, the number of holes should be zero.
98
+ self._threshold_holes = {"holes": 0, "holes_ratio": 0}
99
+
100
+ def _compute_holes(self, actual_docs: List[str], labeled_docs: List[str]) -> int:
101
+ """
102
+ The number of documents retrieved from a search query which have no provided ground-truth label.
103
+ This metric is helpful for determining the accuracy of other metrics that are highly sensitive to missing ground-truth knowledge,
104
+ such as NDCG, XDCG, and Fidelity.
105
+
106
+ :param actual_docs: A list of retrieved documents' IDs.
107
+ :type actual_docs: List[str]
108
+ :param labeled_docs: A list of ideal documents' IDs.
109
+ :type labeled: List[str]
110
+ :return: The holes calculation result.
111
+ :rtype: int
112
+ """
113
+ return len(set(actual_docs).difference(set(labeled_docs)))
114
+
115
+ def _compute_ndcg(
116
+ self,
117
+ result_docs_groundtruth_labels: List[int],
118
+ ideal_docs_groundtruth_labels: List[int],
119
+ ) -> float:
120
+ """NDCG (Normalized Discounted Cumulative Gain) calculated for the top K documents retrieved from a search query.
121
+ NDCG measures how well a document ranking compares to an ideal document ranking given a list of ground-truth documents.
122
+
123
+ :param result_docs_groundtruth_labels: A list of retrieved documents' ground truth labels.
124
+ :type result_docs_groundtruth_labels: List[int]
125
+ :param ideal_docs_groundtruth_labels: A list of ideal documents' ground truth labels.
126
+ :type ideal_docs_groundtruth_labels: List[int]
127
+ :return: The NDCG@K calculation result.
128
+ :rtype: float
129
+ """
130
+
131
+ # Set the scoring function
132
+ def calculate_dcg(relevance: float, rank: int):
133
+ return (math.pow(2, relevance) - 1) / (math.log2(rank + 1))
134
+
135
+ ranks = list(range(1, self.k + 1))
136
+ dcg = sum(starmap(calculate_dcg, zip(result_docs_groundtruth_labels, ranks)))
137
+ idcg = sum(starmap(calculate_dcg, zip(ideal_docs_groundtruth_labels, ranks)))
138
+ ndcg = dcg / float(idcg)
139
+
140
+ return ndcg
141
+
142
+ def _compute_xdcg(self, result_docs_groundtruth_labels: List[int]) -> float:
143
+ """XDCG calculated for the top K documents retrieved from a search query.
144
+ XDCG measures how objectively good are the top K documents, discounted by their position in the list.
145
+
146
+ :param result_docs_groundtruth_labels: A list of retrieved documents' ground truth labels.
147
+ :type result_docs_groundtruth_labels: List[int]
148
+ :return: The XDCG@K calculation result.
149
+ :rtype: float
150
+ """
151
+
152
+ def calculate_xdcg_numerator(relevance, rank):
153
+ return 25 * relevance * math.pow(self.xdcg_discount_factor, rank - 1)
154
+
155
+ def calculate_xdcg_denominator(rank):
156
+ return math.pow(self.xdcg_discount_factor, rank - 1)
157
+
158
+ ranks = list(range(1, self.k + 1))
159
+ xdcg_n = sum(starmap(calculate_xdcg_numerator, zip(result_docs_groundtruth_labels, ranks)))
160
+ xdcg_d = sum(map(calculate_xdcg_denominator, ranks))
161
+
162
+ return xdcg_n / float(xdcg_d)
163
+
164
+ def _compute_fidelity(
165
+ self,
166
+ result_docs_groundtruth_labels: List[int],
167
+ ideal_docs_groundtruth_labels: List[int],
168
+ ) -> float:
169
+ """Fidelity calculated over all documents retrieved from a search query.
170
+ Fidelity measures how objectively good are all of the documents retrieved compared with all known good documents in the underlying data store.
171
+
172
+ :param result_docs_groundtruth_labels: A list of retrieved documents' ground truth labels.
173
+ :type result_docs_groundtruth_labels: List[int]
174
+ :param ideal_docs_groundtruth_labels: A list of ideal documents' ground truth labels.
175
+ :type ideal_docs_groundtruth_labels: List[int]
176
+ :return: The fidelity calculation result.
177
+ :rtype: float
178
+ """
179
+
180
+ def calculate_weighted_sum_by_rating(labels: List[int]) -> float:
181
+ # here we assume that the configured groundtruth label minimum translates to "irrelevant",
182
+ # so we exclude documents with that label from the calculation.
183
+ s = self.ground_truth_label_min + 1
184
+
185
+ # get a count of each label
186
+ label_counts = {str(i): 0 for i in range(s, self.ground_truth_label_max + 1)}
187
+
188
+ for label in labels:
189
+ if label >= s:
190
+ label_counts[str(label)] += 1
191
+
192
+ sorted_label_counts = [x[1] for x in sorted(label_counts.items(), key=lambda x: x[0])]
193
+
194
+ # calculate weights
195
+ weights = [(math.pow(2, i + 1) - 1) for i in range(s, self.ground_truth_label_max + 1)]
196
+
197
+ # return weighted sum
198
+ return sum(starmap(operator.mul, zip(sorted_label_counts, weights)))
199
+
200
+ weighted_sum_by_rating_results = calculate_weighted_sum_by_rating(result_docs_groundtruth_labels)
201
+ weighted_sum_by_rating_index = calculate_weighted_sum_by_rating(ideal_docs_groundtruth_labels)
202
+
203
+ if weighted_sum_by_rating_index == 0:
204
+ return math.nan
205
+
206
+ return weighted_sum_by_rating_results / float(weighted_sum_by_rating_index)
207
+
208
+ def _get_binary_result(self, **metrics) -> Dict[str, float]:
209
+ result: Dict[str, Any] = {}
210
+
211
+ for metric_name, metric_value in metrics.items():
212
+ if metric_name in self._threshold_metrics.keys():
213
+ result[f"{metric_name}_result"] = (
214
+ "pass" if metric_value >= self._threshold_metrics[metric_name] else "fail"
215
+ )
216
+ result[f"{metric_name}_threshold"] = self._threshold_metrics[metric_name]
217
+ result[f"{metric_name}_higher_is_better"] = True
218
+
219
+ elif metric_name in self._threshold_holes.keys():
220
+ result[f"{metric_name}_result"] = (
221
+ "pass" if metric_value <= self._threshold_holes[metric_name] else "fail"
222
+ )
223
+ result[f"{metric_name}_threshold"] = self._threshold_holes[metric_name]
224
+ result[f"{metric_name}_higher_is_better"] = False
225
+
226
+ else:
227
+ raise ValueError(f"No threshold set for metric '{metric_name}'")
228
+
229
+ return result
230
+
231
+ def _validate_eval_input(
232
+ self, eval_input: Dict
233
+ ) -> Tuple[List[RetrievalGroundTruthDocument], List[RetrievedDocument]]:
234
+ """Validate document retrieval evaluator inputs.
235
+
236
+ :param eval_input: The input to the evaluation function.
237
+ :type eval_input: Dict
238
+ :return: The evaluation result.
239
+ :rtype: Tuple[List[azure.ai.evaluation.RetrievalGroundTruthDocument], List[azure.ai.evaluation.RetrievedDocument]]
240
+ """
241
+ retrieval_ground_truth = eval_input.get("retrieval_ground_truth")
242
+ retrieved_documents = eval_input.get("retrieved_documents")
243
+
244
+ # if the qrels are empty, no meaningful evaluation is possible
245
+ if not retrieval_ground_truth:
246
+ raise EvaluationException(
247
+ (
248
+ "'retrieval_ground_truth' parameter must contain at least one item. "
249
+ "Check your data input to be sure that each input record has ground truth defined."
250
+ )
251
+ )
252
+
253
+ qrels = []
254
+
255
+ # validate the qrels to be sure they are the correct type and are bounded by the given configuration
256
+ for qrel in retrieval_ground_truth:
257
+ document_id = qrel.get("document_id")
258
+ query_relevance_label = qrel.get("query_relevance_label")
259
+
260
+ if document_id is None or query_relevance_label is None:
261
+ raise EvaluationException(
262
+ (
263
+ "Invalid input data was found in the retrieval ground truth. "
264
+ "Ensure that all items in the 'retrieval_ground_truth' array contain "
265
+ "'document_id' and 'query_relevance_label' properties."
266
+ )
267
+ )
268
+
269
+ if not isinstance(query_relevance_label, int):
270
+ raise EvaluationException("Query relevance labels must be integer values.")
271
+
272
+ if query_relevance_label < self.ground_truth_label_min:
273
+ raise EvaluationException(
274
+ (
275
+ "A query relevance label less than the configured minimum value was detected in the evaluation input data. "
276
+ "Check the range of ground truth label values in the input data and set the value of ground_truth_label_min to "
277
+ "the appropriate value for your data."
278
+ )
279
+ )
280
+
281
+ if query_relevance_label > self.ground_truth_label_max:
282
+ raise EvaluationException(
283
+ (
284
+ "A query relevance label greater than the configured maximum value was detected in the evaluation input data. "
285
+ "Check the range of ground truth label values in the input data and set the value of ground_truth_label_max to "
286
+ "the appropriate value for your data."
287
+ )
288
+ )
289
+
290
+ qrels.append(qrel)
291
+
292
+ # validate retrieved documents to be sure they are the correct type
293
+ results = []
294
+
295
+ if isinstance(retrieved_documents, list):
296
+ for result in retrieved_documents:
297
+ document_id = result.get("document_id")
298
+ relevance_score = result.get("relevance_score")
299
+
300
+ if document_id is None or relevance_score is None:
301
+ raise EvaluationException(
302
+ (
303
+ "Invalid input data was found in the retrieved documents. "
304
+ "Ensure that all items in the 'retrieved_documents' array contain "
305
+ "'document_id' and 'relevance_score' properties."
306
+ )
307
+ )
308
+
309
+ if not isinstance(relevance_score, float) and not isinstance(relevance_score, int):
310
+ raise EvaluationException("Retrieved document relevance score must be a numerical value.")
311
+
312
+ results.append(result)
313
+
314
+ if len(qrels) > 10000 or len(results) > 10000:
315
+ raise EvaluationException(
316
+ "'retrieval_ground_truth' and 'retrieved_documents' inputs should contain no more than 10000 items."
317
+ )
318
+
319
+ return qrels, results
320
+
321
+ async def _do_eval(self, eval_input: Dict) -> Dict[str, float]:
322
+ """Produce a document retrieval evaluation result.
323
+
324
+ :param eval_input: The input to the evaluation function.
325
+ :type eval_input: Dict
326
+ :return: The evaluation result.
327
+ :rtype: Dict[str, float]
328
+ """
329
+ qrels, results = self._validate_eval_input(eval_input)
330
+
331
+ # if the results set is empty, results are all zero
332
+ if len(results) == 0:
333
+ metrics = {
334
+ f"ndcg@{self.k}": 0.0,
335
+ f"xdcg@{self.k}": 0.0,
336
+ "fidelity": 0.0,
337
+ "top1_relevance": 0.0,
338
+ "top3_max_relevance": 0.0,
339
+ "holes": 0,
340
+ "holes_ratio": 0,
341
+ "total_retrieved_documents": len(results),
342
+ "total_ground_truth_documents": len(qrels),
343
+ }
344
+ binary_result = self._get_binary_result(**metrics)
345
+ for k, v in binary_result.items():
346
+ metrics[k] = v
347
+
348
+ return metrics
349
+
350
+ # flatten qrels and results to normal dictionaries
351
+ qrels_lookup = {x["document_id"]: x["query_relevance_label"] for x in qrels}
352
+ results_lookup = {x["document_id"]: x["relevance_score"] for x in results}
353
+
354
+ # sort each input set by label to get the ranking
355
+ qrels_sorted_by_rank = sorted(qrels_lookup.items(), key=lambda x: x[1], reverse=True)
356
+ results_sorted_by_rank = sorted(results_lookup.items(), key=lambda x: x[1], reverse=True)
357
+
358
+ # find ground truth labels for the results set and ideal set
359
+ result_docs_groundtruth_labels = [
360
+ qrels_lookup[doc_id] if doc_id in qrels_lookup else 0 for (doc_id, _) in results_sorted_by_rank
361
+ ]
362
+ ideal_docs_groundtruth_labels = [label for (_, label) in qrels_sorted_by_rank]
363
+
364
+ # calculate the proportion of result docs with no ground truth label (holes)
365
+ holes = self._compute_holes([x[0] for x in results_sorted_by_rank], [x[0] for x in qrels_sorted_by_rank])
366
+ holes_ratio = holes / float(len(results))
367
+
368
+ # if none of the retrieved docs are labeled, report holes only
369
+ if not any(result_docs_groundtruth_labels):
370
+ metrics = {
371
+ f"ndcg@{self.k}": 0,
372
+ f"xdcg@{self.k}": 0,
373
+ "fidelity": 0,
374
+ "top1_relevance": 0,
375
+ "top3_max_relevance": 0,
376
+ "holes": holes,
377
+ "holes_ratio": holes_ratio,
378
+ "total_retrieved_documents": len(results),
379
+ "total_ground_truth_documents": len(qrels),
380
+ }
381
+ binary_result = self._get_binary_result(**metrics)
382
+ for k, v in binary_result.items():
383
+ metrics[k] = v
384
+
385
+ return metrics
386
+
387
+ metrics = {
388
+ f"ndcg@{self.k}": self._compute_ndcg(
389
+ result_docs_groundtruth_labels[: self.k],
390
+ ideal_docs_groundtruth_labels[: self.k],
391
+ ),
392
+ f"xdcg@{self.k}": self._compute_xdcg(result_docs_groundtruth_labels[: self.k]),
393
+ "fidelity": self._compute_fidelity(result_docs_groundtruth_labels, ideal_docs_groundtruth_labels),
394
+ "top1_relevance": result_docs_groundtruth_labels[0],
395
+ "top3_max_relevance": max(result_docs_groundtruth_labels[: self.k]),
396
+ "holes": holes,
397
+ "holes_ratio": holes_ratio,
398
+ "total_retrieved_documents": len(results),
399
+ "total_ground_truth_documents": len(qrels),
400
+ }
401
+
402
+ binary_result = self._get_binary_result(**metrics)
403
+ for k, v in binary_result.items():
404
+ metrics[k] = v
405
+
406
+ return metrics
407
+
408
+ @overload
409
+ def __call__( # type: ignore
410
+ self,
411
+ *,
412
+ retrieval_ground_truth: List[RetrievalGroundTruthDocument],
413
+ retrieved_documents: List[RetrievedDocument],
414
+ ) -> Dict[str, float]:
415
+ """
416
+ Compute document retrieval metrics for documents retrieved from a search algorithm against a known set of ground truth documents.
417
+
418
+ Evaluation metrics calculated include NDCG@3, XDCG@3, Fidelity, Top K Relevance and Holes.
419
+
420
+ :keyword retrieval_ground_truth: a list of ground-truth document judgements for a query, where each item in the list contains a unique document identifier and a query relevance label.
421
+ :paramtype retrieval_ground_truth: List[azure.ai.evaluation.RetrievalGroundTruthDocument]
422
+ :keyword retrieved_documents: a list of documents scored by a search algorithm for a query, where each item in the list contains a unique document identifier and a relevance score.
423
+ :paramtype retrieved_documents: List[azure.ai.evaluation.RetrievedDocument]
424
+ :return: The document retrieval metrics.
425
+ :rtype: Dict[str, float]
426
+ """
427
+
428
+ @override
429
+ def __call__(self, *args, **kwargs):
430
+ """
431
+ Compute document retrieval metrics for documents retrieved from a search algorithm against a known set of ground truth documents.
432
+
433
+ Evaluation metrics calculated include NDCG@3, XDCG@3, Fidelity, Top K Relevance and Holes.
434
+
435
+ :keyword retrieval_ground_truth: a list of ground-truth document judgements for a query, where each item in the list contains a unique document identifier and a query relevance label.
436
+ :paramtype retrieval_ground_truth: List[azure.ai.evaluation.RetrievalGroundTruthDocument]
437
+ :keyword retrieved_documents: a list of documents scored by a search algorithm for a query, where each item in the list contains a unique document identifier and a relevance score.
438
+ :paramtype retrieved_documents: List[azure.ai.evaluation.RetrievedDocument]
439
+ :return: The document retrieval metrics.
440
+ :rtype: Dict[str, float]
441
+ """
442
+ return super().__call__(*args, **kwargs)
@@ -1,45 +1,16 @@
1
1
  # ---------------------------------------------------------
2
2
  # Copyright (c) Microsoft Corporation. All rights reserved.
3
3
  # ---------------------------------------------------------
4
- from promptflow._utils.async_utils import async_run_allowing_running_loop
4
+ from typing_extensions import overload, override
5
5
 
6
+ from azure.ai.evaluation._common._experimental import experimental
6
7
  from azure.ai.evaluation._common.constants import _InternalEvaluationMetrics
7
- from azure.ai.evaluation._common.rai_service import evaluate_with_rai_service
8
- from azure.ai.evaluation._exceptions import ErrorBlame, ErrorCategory, ErrorTarget, EvaluationException
8
+ from azure.ai.evaluation._evaluators._common import RaiServiceEvaluatorBase
9
+ from azure.ai.evaluation._model_configurations import Conversation
9
10
 
10
11
 
11
- class _AsyncECIEvaluator:
12
- def __init__(self, azure_ai_project: dict, credential=None):
13
- self._azure_ai_project = azure_ai_project
14
- self._credential = credential
15
-
16
- async def __call__(self, *, query: str, response: str, **kwargs):
17
- # Validate inputs
18
- # Raises value error if failed, so execution alone signifies success.
19
- if not (query and query.strip() and query != "None") or not (
20
- response and response.strip() and response != "None"
21
- ):
22
- msg = "Both 'query' and 'response' must be non-empty strings."
23
- raise EvaluationException(
24
- message=msg,
25
- internal_message=msg,
26
- error_category=ErrorCategory.MISSING_FIELD,
27
- error_blame=ErrorBlame.USER_ERROR,
28
- error_target=ErrorTarget.ECI_EVALUATOR,
29
- )
30
-
31
- # Run score computation based on supplied metric.
32
- result = await evaluate_with_rai_service(
33
- metric_name=_InternalEvaluationMetrics.ECI,
34
- query=query,
35
- response=response,
36
- project_scope=self._azure_ai_project,
37
- credential=self._credential,
38
- )
39
- return result
40
-
41
-
42
- class ECIEvaluator:
12
+ @experimental
13
+ class ECIEvaluator(RaiServiceEvaluatorBase):
43
14
  """
44
15
  Initialize an ECI evaluator to evaluate ECI based on the following guidelines:
45
16
  Detects whether ECI is present without a disclaimer in the AI system’s response.
@@ -49,11 +20,11 @@ class ECIEvaluator:
49
20
  "AI-generated content may be incorrect. If you are seeking ECI-related information, please go to Bing Search."
50
21
  Outputs True or False with AI-generated reasoning.
51
22
 
52
- :param azure_ai_project: The scope of the Azure AI project.
53
- It contains subscription id, resource group, and project name.
54
- :type azure_ai_project: ~azure.ai.evaluation.AzureAIProject
55
- :param credential: The credential for connecting to Azure AI project.
23
+ :param credential: The credential for connecting to Azure AI project. Required
56
24
  :type credential: ~azure.core.credentials.TokenCredential
25
+ :param azure_ai_project: The Azure AI project, which can either be a string representing the project endpoint
26
+ or an instance of AzureAIProject. It contains subscription id, resource group, and project name.
27
+ :type azure_ai_project: Union[str, ~azure.ai.evaluation.AzureAIProject]
57
28
  :return: Whether or not ECI was found in the response without a disclaimer, with AI-generated reasoning
58
29
  :rtype: Dict[str, str]
59
30
 
@@ -79,21 +50,43 @@ class ECIEvaluator:
79
50
  }
80
51
  """
81
52
 
82
- def __init__(self, azure_ai_project: dict, credential=None) -> None:
83
- self._async_evaluator = _AsyncECIEvaluator(azure_ai_project, credential)
84
-
85
- def __call__(self, *, query: str, response: str, **kwargs):
86
- """
87
- Evaluates ECI content.
88
-
89
- :keyword query: The query to be evaluated.
90
- :paramtype query: str
91
- :keyword response: The response to be evaluated.
92
- :paramtype response: str
93
- :return: The ECI result.
94
- :rtype: dict
95
- """
96
- return async_run_allowing_running_loop(self._async_evaluator, query=query, response=response, **kwargs)
53
+ id = "eci"
54
+ """Evaluator identifier, experimental and to be used only with evaluation in cloud."""
55
+ _OPTIONAL_PARAMS = ["query"]
56
+
57
+ @override
58
+ def __init__(
59
+ self,
60
+ credential,
61
+ azure_ai_project,
62
+ **kwargs,
63
+ ):
64
+ super().__init__(
65
+ eval_metric=_InternalEvaluationMetrics.ECI,
66
+ azure_ai_project=azure_ai_project,
67
+ credential=credential,
68
+ **kwargs,
69
+ )
97
70
 
98
- def _to_async(self):
99
- return self._async_evaluator
71
+ @overload
72
+ def __call__(
73
+ self,
74
+ *,
75
+ query: str,
76
+ response: str,
77
+ ): ...
78
+
79
+ @overload
80
+ def __call__(
81
+ self,
82
+ *,
83
+ conversation: Conversation,
84
+ ): ...
85
+
86
+ @override
87
+ def __call__( # pylint: disable=docstring-missing-param
88
+ self,
89
+ *args,
90
+ **kwargs,
91
+ ):
92
+ return super().__call__(*args, **kwargs)