eval-studio-client 0.8.0a2__py3-none-any.whl → 0.8.2__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.
Files changed (573) hide show
  1. eval_studio_client/__init__.py +2 -1
  2. eval_studio_client/api/__init__.py +125 -120
  3. eval_studio_client/api/api/__init__.py +1 -0
  4. eval_studio_client/api/api/dashboard_service_api.py +71 -71
  5. eval_studio_client/api/api/document_service_api.py +64 -64
  6. eval_studio_client/api/api/evaluation_service_api.py +42 -42
  7. eval_studio_client/api/api/evaluator_service_api.py +50 -50
  8. eval_studio_client/api/api/info_service_api.py +8 -8
  9. eval_studio_client/api/api/leaderboard_service_api.py +126 -126
  10. eval_studio_client/api/api/model_service_api.py +92 -92
  11. eval_studio_client/api/api/operation_progress_service_api.py +8 -8
  12. eval_studio_client/api/api/operation_service_api.py +36 -36
  13. eval_studio_client/api/api/perturbation_service_api.py +8 -8
  14. eval_studio_client/api/api/perturbator_service_api.py +15 -15
  15. eval_studio_client/api/api/prompt_generation_service_api.py +321 -0
  16. eval_studio_client/api/api/test_case_service_api.py +57 -57
  17. eval_studio_client/api/api/test_class_service_api.py +15 -15
  18. eval_studio_client/api/api/test_lab_service_api.py +22 -22
  19. eval_studio_client/api/api/test_service_api.py +376 -92
  20. eval_studio_client/api/api/who_am_i_service_api.py +8 -8
  21. eval_studio_client/api/api_client.py +1 -1
  22. eval_studio_client/api/configuration.py +1 -1
  23. eval_studio_client/api/docs/DashboardServiceApi.md +38 -38
  24. eval_studio_client/api/docs/DocumentServiceApi.md +34 -34
  25. eval_studio_client/api/docs/EvaluationServiceApi.md +22 -22
  26. eval_studio_client/api/docs/EvaluatorServiceApi.md +26 -26
  27. eval_studio_client/api/docs/InfoServiceApi.md +4 -4
  28. eval_studio_client/api/docs/LeaderboardServiceApi.md +66 -66
  29. eval_studio_client/api/docs/ModelServiceApi.md +50 -50
  30. eval_studio_client/api/docs/OperationProgressServiceApi.md +4 -4
  31. eval_studio_client/api/docs/OperationServiceApi.md +20 -20
  32. eval_studio_client/api/docs/PerturbationServiceApi.md +4 -4
  33. eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md +3 -3
  34. eval_studio_client/api/docs/PerturbatorServiceApi.md +8 -8
  35. eval_studio_client/api/docs/PromptGenerationServiceApi.md +78 -0
  36. eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md +35 -0
  37. eval_studio_client/api/docs/RequiredTheDashboardToUpdate.md +1 -1
  38. eval_studio_client/api/docs/RequiredTheLeaderboardToUpdate.md +4 -4
  39. eval_studio_client/api/docs/RequiredTheModelToUpdate.md +1 -1
  40. eval_studio_client/api/docs/TestCaseServiceApi.md +31 -31
  41. eval_studio_client/api/docs/TestClassServiceApi.md +8 -8
  42. eval_studio_client/api/docs/TestLabServiceApi.md +11 -11
  43. eval_studio_client/api/docs/TestServiceApi.md +119 -49
  44. eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md +33 -0
  45. eval_studio_client/api/docs/TestServicePerturbTestRequest.md +1 -1
  46. eval_studio_client/api/docs/V1BatchCreateLeaderboardsRequest.md +31 -0
  47. eval_studio_client/api/docs/V1BatchCreateLeaderboardsResponse.md +29 -0
  48. eval_studio_client/api/docs/V1BatchDeleteDashboardsRequest.md +29 -0
  49. eval_studio_client/api/docs/V1BatchDeleteDashboardsResponse.md +29 -0
  50. eval_studio_client/api/docs/V1BatchDeleteDocumentsRequest.md +29 -0
  51. eval_studio_client/api/docs/V1BatchDeleteDocumentsResponse.md +29 -0
  52. eval_studio_client/api/docs/V1BatchDeleteEvaluatorsRequest.md +29 -0
  53. eval_studio_client/api/docs/V1BatchDeleteEvaluatorsResponse.md +29 -0
  54. eval_studio_client/api/docs/V1BatchDeleteLeaderboardsRequest.md +30 -0
  55. eval_studio_client/api/docs/V1BatchDeleteLeaderboardsResponse.md +29 -0
  56. eval_studio_client/api/docs/V1BatchDeleteModelsRequest.md +29 -0
  57. eval_studio_client/api/docs/V1BatchDeleteModelsResponse.md +29 -0
  58. eval_studio_client/api/docs/V1BatchDeleteTestCasesResponse.md +29 -0
  59. eval_studio_client/api/docs/{V1alphaBatchDeleteTestsRequest.md → V1BatchDeleteTestsRequest.md} +8 -8
  60. eval_studio_client/api/docs/V1BatchDeleteTestsResponse.md +29 -0
  61. eval_studio_client/api/docs/V1BatchGetDashboardsResponse.md +29 -0
  62. eval_studio_client/api/docs/V1BatchGetDocumentsResponse.md +29 -0
  63. eval_studio_client/api/docs/V1BatchGetLeaderboardsResponse.md +29 -0
  64. eval_studio_client/api/docs/V1BatchGetModelsResponse.md +29 -0
  65. eval_studio_client/api/docs/V1BatchGetOperationsResponse.md +29 -0
  66. eval_studio_client/api/docs/V1BatchGetTestsResponse.md +29 -0
  67. eval_studio_client/api/docs/{V1alphaBatchImportLeaderboardRequest.md → V1BatchImportLeaderboardRequest.md} +9 -9
  68. eval_studio_client/api/docs/V1BatchImportLeaderboardResponse.md +29 -0
  69. eval_studio_client/api/docs/{V1alphaBatchImportTestsRequest.md → V1BatchImportTestsRequest.md} +8 -8
  70. eval_studio_client/api/docs/V1BatchImportTestsResponse.md +29 -0
  71. eval_studio_client/api/docs/V1CheckBaseModelsResponse.md +30 -0
  72. eval_studio_client/api/docs/{V1alphaCollectionInfo.md → V1CollectionInfo.md} +8 -8
  73. eval_studio_client/api/docs/V1CreateDashboardResponse.md +29 -0
  74. eval_studio_client/api/docs/V1CreateDocumentResponse.md +29 -0
  75. eval_studio_client/api/docs/{V1alphaCreateEvaluationRequest.md → V1CreateEvaluationRequest.md} +10 -10
  76. eval_studio_client/api/docs/V1CreateEvaluatorResponse.md +29 -0
  77. eval_studio_client/api/docs/V1CreateLeaderboardRequest.md +29 -0
  78. eval_studio_client/api/docs/V1CreateLeaderboardResponse.md +29 -0
  79. eval_studio_client/api/docs/V1CreateLeaderboardWithoutCacheResponse.md +29 -0
  80. eval_studio_client/api/docs/V1CreateModelResponse.md +29 -0
  81. eval_studio_client/api/docs/V1CreatePerturbationResponse.md +29 -0
  82. eval_studio_client/api/docs/V1CreateTestCaseResponse.md +29 -0
  83. eval_studio_client/api/docs/V1CreateTestLabResponse.md +29 -0
  84. eval_studio_client/api/docs/V1CreateTestResponse.md +29 -0
  85. eval_studio_client/api/docs/{V1alphaDashboard.md → V1Dashboard.md} +9 -9
  86. eval_studio_client/api/docs/{V1alphaDashboardStatus.md → V1DashboardStatus.md} +1 -1
  87. eval_studio_client/api/docs/V1DeleteDashboardResponse.md +29 -0
  88. eval_studio_client/api/docs/V1DeleteDocumentResponse.md +29 -0
  89. eval_studio_client/api/docs/V1DeleteEvaluatorResponse.md +29 -0
  90. eval_studio_client/api/docs/V1DeleteLeaderboardResponse.md +29 -0
  91. eval_studio_client/api/docs/V1DeleteModelResponse.md +29 -0
  92. eval_studio_client/api/docs/V1DeleteTestCaseResponse.md +29 -0
  93. eval_studio_client/api/docs/V1DeleteTestResponse.md +29 -0
  94. eval_studio_client/api/docs/{V1alphaDocument.md → V1Document.md} +8 -8
  95. eval_studio_client/api/docs/V1EvaluationTest.md +32 -0
  96. eval_studio_client/api/docs/{V1alphaEvaluator.md → V1Evaluator.md} +10 -9
  97. eval_studio_client/api/docs/{V1alphaEvaluatorParamType.md → V1EvaluatorParamType.md} +1 -1
  98. eval_studio_client/api/docs/{V1alphaEvaluatorParameter.md → V1EvaluatorParameter.md} +9 -9
  99. eval_studio_client/api/docs/{V1alphaEvaluatorView.md → V1EvaluatorView.md} +1 -1
  100. eval_studio_client/api/docs/V1FinalizeOperationResponse.md +29 -0
  101. eval_studio_client/api/docs/V1FindAllTestCasesByIDResponse.md +29 -0
  102. eval_studio_client/api/docs/V1FindTestLabResponse.md +29 -0
  103. eval_studio_client/api/docs/V1GenerateTestCasesResponse.md +29 -0
  104. eval_studio_client/api/docs/V1GetDashboardResponse.md +29 -0
  105. eval_studio_client/api/docs/V1GetDocumentResponse.md +29 -0
  106. eval_studio_client/api/docs/V1GetEvaluatorResponse.md +29 -0
  107. eval_studio_client/api/docs/V1GetInfoResponse.md +29 -0
  108. eval_studio_client/api/docs/V1GetLeaderboardResponse.md +29 -0
  109. eval_studio_client/api/docs/V1GetModelResponse.md +29 -0
  110. eval_studio_client/api/docs/V1GetOperationProgressByParentResponse.md +29 -0
  111. eval_studio_client/api/docs/V1GetOperationResponse.md +29 -0
  112. eval_studio_client/api/docs/V1GetPerturbatorResponse.md +29 -0
  113. eval_studio_client/api/docs/V1GetTestCaseResponse.md +29 -0
  114. eval_studio_client/api/docs/V1GetTestClassResponse.md +29 -0
  115. eval_studio_client/api/docs/V1GetTestResponse.md +29 -0
  116. eval_studio_client/api/docs/{V1alphaImportEvaluationRequest.md → V1ImportEvaluationRequest.md} +9 -9
  117. eval_studio_client/api/docs/{V1alphaImportLeaderboardRequest.md → V1ImportLeaderboardRequest.md} +9 -9
  118. eval_studio_client/api/docs/V1ImportLeaderboardResponse.md +29 -0
  119. eval_studio_client/api/docs/{V1alphaInfo.md → V1Info.md} +8 -8
  120. eval_studio_client/api/docs/{V1alphaInsight.md → V1Insight.md} +8 -8
  121. eval_studio_client/api/docs/{V1alphaLeaderboard.md → V1Leaderboard.md} +12 -12
  122. eval_studio_client/api/docs/{V1alphaLeaderboardStatus.md → V1LeaderboardStatus.md} +1 -1
  123. eval_studio_client/api/docs/{V1alphaLeaderboardType.md → V1LeaderboardType.md} +1 -1
  124. eval_studio_client/api/docs/{V1alphaLeaderboardView.md → V1LeaderboardView.md} +1 -1
  125. eval_studio_client/api/docs/V1ListBaseModelsResponse.md +29 -0
  126. eval_studio_client/api/docs/V1ListDashboardsResponse.md +29 -0
  127. eval_studio_client/api/docs/V1ListDocumentsResponse.md +29 -0
  128. eval_studio_client/api/docs/V1ListEvaluatorsResponse.md +29 -0
  129. eval_studio_client/api/docs/V1ListLLMModelsResponse.md +29 -0
  130. eval_studio_client/api/docs/V1ListLeaderboardsResponse.md +30 -0
  131. eval_studio_client/api/docs/V1ListModelCollectionsResponse.md +29 -0
  132. eval_studio_client/api/docs/V1ListModelsResponse.md +29 -0
  133. eval_studio_client/api/docs/V1ListMostRecentDashboardsResponse.md +29 -0
  134. eval_studio_client/api/docs/V1ListMostRecentLeaderboardsResponse.md +29 -0
  135. eval_studio_client/api/docs/V1ListMostRecentModelsResponse.md +29 -0
  136. eval_studio_client/api/docs/V1ListMostRecentTestsResponse.md +29 -0
  137. eval_studio_client/api/docs/V1ListOperationsResponse.md +29 -0
  138. eval_studio_client/api/docs/V1ListPerturbatorsResponse.md +29 -0
  139. eval_studio_client/api/docs/V1ListRAGCollectionsResponse.md +29 -0
  140. eval_studio_client/api/docs/V1ListTestCasesResponse.md +29 -0
  141. eval_studio_client/api/docs/V1ListTestClassesResponse.md +29 -0
  142. eval_studio_client/api/docs/V1ListTestsResponse.md +29 -0
  143. eval_studio_client/api/docs/{V1alphaModel.md → V1Model.md} +9 -9
  144. eval_studio_client/api/docs/{V1alphaModelType.md → V1ModelType.md} +1 -1
  145. eval_studio_client/api/docs/{V1alphaOperation.md → V1Operation.md} +8 -8
  146. eval_studio_client/api/docs/{V1alphaOperationProgress.md → V1OperationProgress.md} +8 -8
  147. eval_studio_client/api/docs/V1PerturbTestResponse.md +29 -0
  148. eval_studio_client/api/docs/{V1alphaPerturbator.md → V1Perturbator.md} +8 -8
  149. eval_studio_client/api/docs/V1PerturbatorConfiguration.md +32 -0
  150. eval_studio_client/api/docs/{V1alphaPerturbatorIntensity.md → V1PerturbatorIntensity.md} +1 -1
  151. eval_studio_client/api/docs/{V1alphaProblemAndAction.md → V1ProblemAndAction.md} +8 -8
  152. eval_studio_client/api/docs/{V1alphaTest.md → V1Test.md} +8 -8
  153. eval_studio_client/api/docs/{V1alphaTestCase.md → V1TestCase.md} +8 -8
  154. eval_studio_client/api/docs/{V1alphaTestCaseRelationship.md → V1TestCaseRelationship.md} +8 -8
  155. eval_studio_client/api/docs/V1TestCasesGenerator.md +11 -0
  156. eval_studio_client/api/docs/{V1alphaTestClass.md → V1TestClass.md} +9 -9
  157. eval_studio_client/api/docs/{V1alphaTestClassType.md → V1TestClassType.md} +1 -1
  158. eval_studio_client/api/docs/{V1alphaTestLab.md → V1TestLab.md} +8 -8
  159. eval_studio_client/api/docs/V1UpdateDashboardResponse.md +29 -0
  160. eval_studio_client/api/docs/V1UpdateDocumentResponse.md +29 -0
  161. eval_studio_client/api/docs/V1UpdateLeaderboardResponse.md +29 -0
  162. eval_studio_client/api/docs/V1UpdateModelResponse.md +29 -0
  163. eval_studio_client/api/docs/V1UpdateOperationResponse.md +29 -0
  164. eval_studio_client/api/docs/V1UpdateTestCaseResponse.md +29 -0
  165. eval_studio_client/api/docs/V1UpdateTestResponse.md +29 -0
  166. eval_studio_client/api/docs/{V1alphaWhoAmIResponse.md → V1WhoAmIResponse.md} +8 -8
  167. eval_studio_client/api/docs/WhoAmIServiceApi.md +4 -4
  168. eval_studio_client/api/exceptions.py +1 -1
  169. eval_studio_client/api/models/__init__.py +124 -120
  170. eval_studio_client/api/models/perturbation_service_create_perturbation_request.py +10 -10
  171. eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py +104 -0
  172. eval_studio_client/api/models/protobuf_any.py +1 -1
  173. eval_studio_client/api/models/required_the_dashboard_to_update.py +3 -3
  174. eval_studio_client/api/models/required_the_document_to_update.py +1 -1
  175. eval_studio_client/api/models/required_the_leaderboard_to_update.py +11 -11
  176. eval_studio_client/api/models/required_the_model_to_update.py +3 -3
  177. eval_studio_client/api/models/required_the_operation_to_finalize.py +1 -1
  178. eval_studio_client/api/models/required_the_operation_to_update.py +1 -1
  179. eval_studio_client/api/models/required_the_test_case_to_update.py +1 -1
  180. eval_studio_client/api/models/required_the_test_to_update.py +1 -1
  181. eval_studio_client/api/models/rpc_status.py +1 -1
  182. eval_studio_client/api/models/test_case_service_batch_delete_test_cases_request.py +1 -1
  183. eval_studio_client/api/models/test_service_generate_test_cases_request.py +96 -0
  184. eval_studio_client/api/models/test_service_perturb_test_request.py +4 -4
  185. eval_studio_client/api/models/{v1alpha_batch_create_leaderboards_request.py → v1_batch_create_leaderboards_request.py} +8 -8
  186. eval_studio_client/api/models/{v1alpha_update_operation_response.py → v1_batch_create_leaderboards_response.py} +8 -8
  187. eval_studio_client/api/models/{v1alpha_batch_delete_dashboards_request.py → v1_batch_delete_dashboards_request.py} +5 -5
  188. eval_studio_client/api/models/{v1alpha_list_dashboards_response.py → v1_batch_delete_dashboards_response.py} +8 -8
  189. eval_studio_client/api/models/{v1alpha_batch_delete_documents_request.py → v1_batch_delete_documents_request.py} +5 -5
  190. eval_studio_client/api/models/{v1alpha_list_documents_response.py → v1_batch_delete_documents_response.py} +8 -8
  191. eval_studio_client/api/models/{v1alpha_batch_delete_evaluators_request.py → v1_batch_delete_evaluators_request.py} +5 -5
  192. eval_studio_client/api/models/{v1alpha_list_evaluators_response.py → v1_batch_delete_evaluators_response.py} +8 -8
  193. eval_studio_client/api/models/{v1alpha_batch_delete_leaderboards_request.py → v1_batch_delete_leaderboards_request.py} +7 -7
  194. eval_studio_client/api/models/{v1alpha_batch_get_leaderboards_response.py → v1_batch_delete_leaderboards_response.py} +8 -8
  195. eval_studio_client/api/models/{v1alpha_batch_delete_models_request.py → v1_batch_delete_models_request.py} +5 -5
  196. eval_studio_client/api/models/{v1alpha_list_models_response.py → v1_batch_delete_models_response.py} +8 -8
  197. eval_studio_client/api/models/{v1alpha_list_test_cases_response.py → v1_batch_delete_test_cases_response.py} +8 -8
  198. eval_studio_client/api/models/{v1alpha_batch_delete_tests_request.py → v1_batch_delete_tests_request.py} +5 -5
  199. eval_studio_client/api/models/{v1alpha_list_tests_response.py → v1_batch_delete_tests_response.py} +8 -8
  200. eval_studio_client/api/models/{v1alpha_batch_get_dashboards_response.py → v1_batch_get_dashboards_response.py} +8 -8
  201. eval_studio_client/api/models/{v1alpha_batch_get_documents_response.py → v1_batch_get_documents_response.py} +8 -8
  202. eval_studio_client/api/models/{v1alpha_batch_delete_leaderboards_response.py → v1_batch_get_leaderboards_response.py} +8 -8
  203. eval_studio_client/api/models/{v1alpha_batch_get_models_response.py → v1_batch_get_models_response.py} +8 -8
  204. eval_studio_client/api/models/{v1alpha_list_operations_response.py → v1_batch_get_operations_response.py} +8 -8
  205. eval_studio_client/api/models/{v1alpha_batch_get_tests_response.py → v1_batch_get_tests_response.py} +8 -8
  206. eval_studio_client/api/models/{v1alpha_batch_import_leaderboard_request.py → v1_batch_import_leaderboard_request.py} +7 -7
  207. eval_studio_client/api/models/{v1alpha_import_leaderboard_response.py → v1_batch_import_leaderboard_response.py} +8 -8
  208. eval_studio_client/api/models/{v1alpha_batch_import_tests_request.py → v1_batch_import_tests_request.py} +5 -5
  209. eval_studio_client/api/models/{v1alpha_batch_delete_tests_response.py → v1_batch_import_tests_response.py} +8 -8
  210. eval_studio_client/api/models/{v1alpha_check_base_models_response.py → v1_check_base_models_response.py} +5 -5
  211. eval_studio_client/api/models/{v1alpha_collection_info.py → v1_collection_info.py} +4 -4
  212. eval_studio_client/api/models/{v1alpha_get_dashboard_response.py → v1_create_dashboard_response.py} +8 -8
  213. eval_studio_client/api/models/{v1alpha_get_document_response.py → v1_create_document_response.py} +8 -8
  214. eval_studio_client/api/models/{v1alpha_create_evaluation_request.py → v1_create_evaluation_request.py} +11 -11
  215. eval_studio_client/api/models/{v1alpha_get_evaluator_response.py → v1_create_evaluator_response.py} +8 -8
  216. eval_studio_client/api/models/{v1alpha_get_leaderboard_response.py → v1_create_leaderboard_request.py} +8 -8
  217. eval_studio_client/api/models/{v1alpha_get_operation_response.py → v1_create_leaderboard_response.py} +8 -8
  218. eval_studio_client/api/models/v1_create_leaderboard_without_cache_response.py +91 -0
  219. eval_studio_client/api/models/{v1alpha_get_model_response.py → v1_create_model_response.py} +8 -8
  220. eval_studio_client/api/models/{v1alpha_create_perturbation_response.py → v1_create_perturbation_response.py} +5 -5
  221. eval_studio_client/api/models/{v1alpha_get_test_case_response.py → v1_create_test_case_response.py} +8 -8
  222. eval_studio_client/api/models/{v1alpha_find_test_lab_response.py → v1_create_test_lab_response.py} +8 -8
  223. eval_studio_client/api/models/{v1alpha_get_test_response.py → v1_create_test_response.py} +8 -8
  224. eval_studio_client/api/models/{v1alpha_dashboard.py → v1_dashboard.py} +7 -7
  225. eval_studio_client/api/models/{v1alpha_dashboard_status.py → v1_dashboard_status.py} +3 -3
  226. eval_studio_client/api/models/{v1alpha_update_dashboard_response.py → v1_delete_dashboard_response.py} +8 -8
  227. eval_studio_client/api/models/{v1alpha_update_document_response.py → v1_delete_document_response.py} +8 -8
  228. eval_studio_client/api/models/{v1alpha_create_evaluator_response.py → v1_delete_evaluator_response.py} +8 -8
  229. eval_studio_client/api/models/{v1alpha_create_leaderboard_request.py → v1_delete_leaderboard_response.py} +8 -8
  230. eval_studio_client/api/models/{v1alpha_create_model_response.py → v1_delete_model_response.py} +8 -8
  231. eval_studio_client/api/models/{v1alpha_delete_test_case_response.py → v1_delete_test_case_response.py} +8 -8
  232. eval_studio_client/api/models/{v1alpha_create_test_response.py → v1_delete_test_response.py} +8 -8
  233. eval_studio_client/api/models/{v1alpha_document.py → v1_document.py} +5 -5
  234. eval_studio_client/api/models/{v1alpha_evaluation_test.py → v1_evaluation_test.py} +10 -10
  235. eval_studio_client/api/models/{v1alpha_evaluator.py → v1_evaluator.py} +14 -10
  236. eval_studio_client/api/models/{v1alpha_evaluator_param_type.py → v1_evaluator_param_type.py} +3 -3
  237. eval_studio_client/api/models/{v1alpha_evaluator_parameter.py → v1_evaluator_parameter.py} +7 -7
  238. eval_studio_client/api/models/{v1alpha_evaluator_view.py → v1_evaluator_view.py} +3 -3
  239. eval_studio_client/api/models/{v1alpha_create_leaderboard_response.py → v1_finalize_operation_response.py} +8 -8
  240. eval_studio_client/api/models/{v1alpha_find_all_test_cases_by_id_response.py → v1_find_all_test_cases_by_id_response.py} +8 -8
  241. eval_studio_client/api/models/{v1alpha_create_test_lab_response.py → v1_find_test_lab_response.py} +8 -8
  242. eval_studio_client/api/models/{v1alpha_finalize_operation_response.py → v1_generate_test_cases_response.py} +8 -8
  243. eval_studio_client/api/models/{v1alpha_create_dashboard_response.py → v1_get_dashboard_response.py} +8 -8
  244. eval_studio_client/api/models/{v1alpha_delete_document_response.py → v1_get_document_response.py} +8 -8
  245. eval_studio_client/api/models/{v1alpha_delete_evaluator_response.py → v1_get_evaluator_response.py} +8 -8
  246. eval_studio_client/api/models/{v1alpha_get_info_response.py → v1_get_info_response.py} +8 -8
  247. eval_studio_client/api/models/{v1alpha_update_leaderboard_response.py → v1_get_leaderboard_response.py} +8 -8
  248. eval_studio_client/api/models/{v1alpha_update_model_response.py → v1_get_model_response.py} +8 -8
  249. eval_studio_client/api/models/{v1alpha_get_operation_progress_by_parent_response.py → v1_get_operation_progress_by_parent_response.py} +8 -8
  250. eval_studio_client/api/models/v1_get_operation_response.py +91 -0
  251. eval_studio_client/api/models/{v1alpha_get_perturbator_response.py → v1_get_perturbator_response.py} +8 -8
  252. eval_studio_client/api/models/{v1alpha_create_test_case_response.py → v1_get_test_case_response.py} +8 -8
  253. eval_studio_client/api/models/{v1alpha_get_test_class_response.py → v1_get_test_class_response.py} +8 -8
  254. eval_studio_client/api/models/{v1alpha_update_test_response.py → v1_get_test_response.py} +8 -8
  255. eval_studio_client/api/models/{v1alpha_import_evaluation_request.py → v1_import_evaluation_request.py} +8 -8
  256. eval_studio_client/api/models/{v1alpha_import_leaderboard_request.py → v1_import_leaderboard_request.py} +7 -7
  257. eval_studio_client/api/models/v1_import_leaderboard_response.py +91 -0
  258. eval_studio_client/api/models/{v1alpha_info.py → v1_info.py} +5 -5
  259. eval_studio_client/api/models/{v1alpha_insight.py → v1_insight.py} +4 -4
  260. eval_studio_client/api/models/{v1alpha_leaderboard.py → v1_leaderboard.py} +15 -15
  261. eval_studio_client/api/models/{v1alpha_leaderboard_status.py → v1_leaderboard_status.py} +3 -3
  262. eval_studio_client/api/models/{v1alpha_leaderboard_type.py → v1_leaderboard_type.py} +3 -3
  263. eval_studio_client/api/models/{v1alpha_leaderboard_view.py → v1_leaderboard_view.py} +3 -3
  264. eval_studio_client/api/models/{v1alpha_list_base_models_response.py → v1_list_base_models_response.py} +5 -5
  265. eval_studio_client/api/models/{v1alpha_batch_delete_dashboards_response.py → v1_list_dashboards_response.py} +8 -8
  266. eval_studio_client/api/models/{v1alpha_batch_delete_documents_response.py → v1_list_documents_response.py} +8 -8
  267. eval_studio_client/api/models/{v1alpha_batch_delete_evaluators_response.py → v1_list_evaluators_response.py} +8 -8
  268. eval_studio_client/api/models/{v1alpha_list_leaderboards_response.py → v1_list_leaderboards_response.py} +8 -8
  269. eval_studio_client/api/models/{v1alpha_list_llm_models_response.py → v1_list_llm_models_response.py} +5 -5
  270. eval_studio_client/api/models/{v1alpha_list_model_collections_response.py → v1_list_model_collections_response.py} +8 -8
  271. eval_studio_client/api/models/{v1alpha_batch_delete_models_response.py → v1_list_models_response.py} +8 -8
  272. eval_studio_client/api/models/{v1alpha_list_most_recent_dashboards_response.py → v1_list_most_recent_dashboards_response.py} +8 -8
  273. eval_studio_client/api/models/{v1alpha_list_most_recent_leaderboards_response.py → v1_list_most_recent_leaderboards_response.py} +8 -8
  274. eval_studio_client/api/models/{v1alpha_list_most_recent_models_response.py → v1_list_most_recent_models_response.py} +8 -8
  275. eval_studio_client/api/models/{v1alpha_batch_import_tests_response.py → v1_list_most_recent_tests_response.py} +8 -8
  276. eval_studio_client/api/models/{v1alpha_batch_get_operations_response.py → v1_list_operations_response.py} +8 -8
  277. eval_studio_client/api/models/{v1alpha_list_perturbators_response.py → v1_list_perturbators_response.py} +8 -8
  278. eval_studio_client/api/models/{v1alpha_list_rag_collections_response.py → v1_list_rag_collections_response.py} +8 -8
  279. eval_studio_client/api/models/{v1alpha_batch_delete_test_cases_response.py → v1_list_test_cases_response.py} +8 -8
  280. eval_studio_client/api/models/{v1alpha_list_test_classes_response.py → v1_list_test_classes_response.py} +8 -8
  281. eval_studio_client/api/models/v1_list_tests_response.py +95 -0
  282. eval_studio_client/api/models/{v1alpha_model.py → v1_model.py} +7 -7
  283. eval_studio_client/api/models/{v1alpha_model_type.py → v1_model_type.py} +3 -3
  284. eval_studio_client/api/models/{v1alpha_operation.py → v1_operation.py} +4 -4
  285. eval_studio_client/api/models/{v1alpha_operation_progress.py → v1_operation_progress.py} +5 -5
  286. eval_studio_client/api/models/{v1alpha_delete_test_response.py → v1_perturb_test_response.py} +8 -8
  287. eval_studio_client/api/models/{v1alpha_perturbator.py → v1_perturbator.py} +5 -5
  288. eval_studio_client/api/models/{v1alpha_perturbator_configuration.py → v1_perturbator_configuration.py} +6 -6
  289. eval_studio_client/api/models/{v1alpha_perturbator_intensity.py → v1_perturbator_intensity.py} +4 -4
  290. eval_studio_client/api/models/{v1alpha_problem_and_action.py → v1_problem_and_action.py} +5 -5
  291. eval_studio_client/api/models/{v1alpha_test.py → v1_test.py} +5 -5
  292. eval_studio_client/api/models/{v1alpha_test_case.py → v1_test_case.py} +5 -5
  293. eval_studio_client/api/models/{v1alpha_test_case_relationship.py → v1_test_case_relationship.py} +5 -5
  294. eval_studio_client/api/models/v1_test_cases_generator.py +50 -0
  295. eval_studio_client/api/models/{v1alpha_test_class.py → v1_test_class.py} +7 -7
  296. eval_studio_client/api/models/{v1alpha_test_class_type.py → v1_test_class_type.py} +3 -3
  297. eval_studio_client/api/models/{v1alpha_test_lab.py → v1_test_lab.py} +5 -5
  298. eval_studio_client/api/models/{v1alpha_delete_dashboard_response.py → v1_update_dashboard_response.py} +8 -8
  299. eval_studio_client/api/models/{v1alpha_create_document_response.py → v1_update_document_response.py} +8 -8
  300. eval_studio_client/api/models/{v1alpha_delete_leaderboard_response.py → v1_update_leaderboard_response.py} +8 -8
  301. eval_studio_client/api/models/{v1alpha_delete_model_response.py → v1_update_model_response.py} +8 -8
  302. eval_studio_client/api/models/v1_update_operation_response.py +91 -0
  303. eval_studio_client/api/models/{v1alpha_update_test_case_response.py → v1_update_test_case_response.py} +8 -8
  304. eval_studio_client/api/models/v1_update_test_response.py +91 -0
  305. eval_studio_client/api/models/{v1alpha_who_am_i_response.py → v1_who_am_i_response.py} +5 -5
  306. eval_studio_client/api/rest.py +1 -1
  307. eval_studio_client/api/test/test_dashboard_service_api.py +1 -1
  308. eval_studio_client/api/test/test_document_service_api.py +1 -1
  309. eval_studio_client/api/test/test_evaluation_service_api.py +1 -1
  310. eval_studio_client/api/test/test_evaluator_service_api.py +1 -1
  311. eval_studio_client/api/test/test_info_service_api.py +1 -1
  312. eval_studio_client/api/test/test_leaderboard_service_api.py +1 -1
  313. eval_studio_client/api/test/test_model_service_api.py +1 -1
  314. eval_studio_client/api/test/test_operation_progress_service_api.py +1 -1
  315. eval_studio_client/api/test/test_operation_service_api.py +1 -1
  316. eval_studio_client/api/test/test_perturbation_service_api.py +1 -1
  317. eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py +4 -4
  318. eval_studio_client/api/test/test_perturbator_service_api.py +1 -1
  319. eval_studio_client/api/test/test_prompt_generation_service_api.py +37 -0
  320. eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py +75 -0
  321. eval_studio_client/api/test/test_protobuf_any.py +1 -1
  322. eval_studio_client/api/test/test_required_the_dashboard_to_update.py +1 -1
  323. eval_studio_client/api/test/test_required_the_document_to_update.py +1 -1
  324. eval_studio_client/api/test/test_required_the_leaderboard_to_update.py +3 -3
  325. eval_studio_client/api/test/test_required_the_model_to_update.py +1 -1
  326. eval_studio_client/api/test/test_required_the_operation_to_finalize.py +1 -1
  327. eval_studio_client/api/test/test_required_the_operation_to_update.py +1 -1
  328. eval_studio_client/api/test/test_required_the_test_case_to_update.py +1 -1
  329. eval_studio_client/api/test/test_required_the_test_to_update.py +1 -1
  330. eval_studio_client/api/test/test_rpc_status.py +1 -1
  331. eval_studio_client/api/test/test_test_case_service_api.py +1 -1
  332. eval_studio_client/api/test/test_test_case_service_batch_delete_test_cases_request.py +1 -1
  333. eval_studio_client/api/test/test_test_class_service_api.py +1 -1
  334. eval_studio_client/api/test/test_test_lab_service_api.py +1 -1
  335. eval_studio_client/api/test/test_test_service_api.py +7 -1
  336. eval_studio_client/api/test/test_test_service_generate_test_cases_request.py +57 -0
  337. eval_studio_client/api/test/test_test_service_perturb_test_request.py +2 -2
  338. eval_studio_client/api/test/{test_v1alpha_batch_create_leaderboards_request.py → test_v1_batch_create_leaderboards_request.py} +16 -16
  339. eval_studio_client/api/test/{test_v1alpha_create_leaderboard_response.py → test_v1_batch_create_leaderboards_response.py} +13 -13
  340. eval_studio_client/api/test/{test_v1alpha_batch_delete_models_request.py → test_v1_batch_delete_dashboards_request.py} +12 -12
  341. eval_studio_client/api/test/{test_v1alpha_batch_get_dashboards_response.py → test_v1_batch_delete_dashboards_response.py} +13 -13
  342. eval_studio_client/api/test/{test_v1alpha_batch_delete_documents_request.py → test_v1_batch_delete_documents_request.py} +12 -12
  343. eval_studio_client/api/test/{test_v1alpha_batch_get_documents_response.py → test_v1_batch_delete_documents_response.py} +13 -13
  344. eval_studio_client/api/test/test_v1_batch_delete_evaluators_request.py +53 -0
  345. eval_studio_client/api/test/{test_v1alpha_batch_delete_evaluators_response.py → test_v1_batch_delete_evaluators_response.py} +15 -14
  346. eval_studio_client/api/test/{test_v1alpha_batch_delete_leaderboards_request.py → test_v1_batch_delete_leaderboards_request.py} +12 -12
  347. eval_studio_client/api/test/{test_v1alpha_batch_get_leaderboards_response.py → test_v1_batch_delete_leaderboards_response.py} +15 -15
  348. eval_studio_client/api/test/test_v1_batch_delete_models_request.py +53 -0
  349. eval_studio_client/api/test/{test_v1alpha_batch_get_models_response.py → test_v1_batch_delete_models_response.py} +13 -13
  350. eval_studio_client/api/test/{test_v1alpha_batch_delete_test_cases_response.py → test_v1_batch_delete_test_cases_response.py} +13 -13
  351. eval_studio_client/api/test/{test_v1alpha_batch_delete_tests_request.py → test_v1_batch_delete_tests_request.py} +12 -12
  352. eval_studio_client/api/test/{test_v1alpha_batch_get_tests_response.py → test_v1_batch_delete_tests_response.py} +13 -13
  353. eval_studio_client/api/test/{test_v1alpha_list_dashboards_response.py → test_v1_batch_get_dashboards_response.py} +13 -13
  354. eval_studio_client/api/test/{test_v1alpha_list_documents_response.py → test_v1_batch_get_documents_response.py} +13 -13
  355. eval_studio_client/api/test/{test_v1alpha_batch_delete_leaderboards_response.py → test_v1_batch_get_leaderboards_response.py} +15 -15
  356. eval_studio_client/api/test/{test_v1alpha_list_models_response.py → test_v1_batch_get_models_response.py} +13 -13
  357. eval_studio_client/api/test/{test_v1alpha_list_operations_response.py → test_v1_batch_get_operations_response.py} +13 -13
  358. eval_studio_client/api/test/{test_v1alpha_list_tests_response.py → test_v1_batch_get_tests_response.py} +13 -13
  359. eval_studio_client/api/test/{test_v1alpha_batch_import_leaderboard_request.py → test_v1_batch_import_leaderboard_request.py} +12 -12
  360. eval_studio_client/api/test/{test_v1alpha_import_leaderboard_response.py → test_v1_batch_import_leaderboard_response.py} +13 -13
  361. eval_studio_client/api/test/{test_v1alpha_batch_import_tests_request.py → test_v1_batch_import_tests_request.py} +12 -12
  362. eval_studio_client/api/test/{test_v1alpha_batch_import_tests_response.py → test_v1_batch_import_tests_response.py} +13 -13
  363. eval_studio_client/api/test/{test_v1alpha_check_base_models_response.py → test_v1_check_base_models_response.py} +12 -12
  364. eval_studio_client/api/test/{test_v1alpha_collection_info.py → test_v1_collection_info.py} +12 -12
  365. eval_studio_client/api/test/{test_v1alpha_get_dashboard_response.py → test_v1_create_dashboard_response.py} +13 -13
  366. eval_studio_client/api/test/{test_v1alpha_get_document_response.py → test_v1_create_document_response.py} +13 -13
  367. eval_studio_client/api/test/{test_v1alpha_create_evaluation_request.py → test_v1_create_evaluation_request.py} +16 -16
  368. eval_studio_client/api/test/{test_v1alpha_get_evaluator_response.py → test_v1_create_evaluator_response.py} +15 -14
  369. eval_studio_client/api/test/{test_v1alpha_get_leaderboard_response.py → test_v1_create_leaderboard_request.py} +15 -15
  370. eval_studio_client/api/test/{test_v1alpha_update_operation_response.py → test_v1_create_leaderboard_response.py} +13 -13
  371. eval_studio_client/api/test/{test_v1alpha_batch_import_leaderboard_response.py → test_v1_create_leaderboard_without_cache_response.py} +13 -13
  372. eval_studio_client/api/test/{test_v1alpha_get_model_response.py → test_v1_create_model_response.py} +13 -13
  373. eval_studio_client/api/test/{test_v1alpha_create_perturbation_response.py → test_v1_create_perturbation_response.py} +12 -12
  374. eval_studio_client/api/test/{test_v1alpha_get_test_case_response.py → test_v1_create_test_case_response.py} +13 -13
  375. eval_studio_client/api/test/{test_v1alpha_find_test_lab_response.py → test_v1_create_test_lab_response.py} +13 -13
  376. eval_studio_client/api/test/{test_v1alpha_get_test_response.py → test_v1_create_test_response.py} +13 -13
  377. eval_studio_client/api/test/{test_v1alpha_dashboard.py → test_v1_dashboard.py} +12 -12
  378. eval_studio_client/api/test/{test_v1alpha_evaluator_view.py → test_v1_dashboard_status.py} +7 -7
  379. eval_studio_client/api/test/{test_v1alpha_update_dashboard_response.py → test_v1_delete_dashboard_response.py} +13 -13
  380. eval_studio_client/api/test/{test_v1alpha_update_document_response.py → test_v1_delete_document_response.py} +13 -13
  381. eval_studio_client/api/test/{test_v1alpha_delete_evaluator_response.py → test_v1_delete_evaluator_response.py} +15 -14
  382. eval_studio_client/api/test/{test_v1alpha_create_leaderboard_request.py → test_v1_delete_leaderboard_response.py} +15 -15
  383. eval_studio_client/api/test/{test_v1alpha_delete_model_response.py → test_v1_delete_model_response.py} +13 -13
  384. eval_studio_client/api/test/{test_v1alpha_create_test_case_response.py → test_v1_delete_test_case_response.py} +13 -13
  385. eval_studio_client/api/test/{test_v1alpha_create_test_response.py → test_v1_delete_test_response.py} +13 -13
  386. eval_studio_client/api/test/{test_v1alpha_document.py → test_v1_document.py} +12 -12
  387. eval_studio_client/api/test/{test_v1alpha_evaluation_test.py → test_v1_evaluation_test.py} +14 -14
  388. eval_studio_client/api/test/{test_v1alpha_evaluator.py → test_v1_evaluator.py} +14 -13
  389. eval_studio_client/api/test/{test_v1alpha_test_class_type.py → test_v1_evaluator_param_type.py} +7 -7
  390. eval_studio_client/api/test/{test_v1alpha_evaluator_parameter.py → test_v1_evaluator_parameter.py} +12 -12
  391. eval_studio_client/api/test/{test_v1alpha_model_type.py → test_v1_evaluator_view.py} +7 -7
  392. eval_studio_client/api/test/{test_v1alpha_get_operation_response.py → test_v1_finalize_operation_response.py} +13 -13
  393. eval_studio_client/api/test/{test_v1alpha_find_all_test_cases_by_id_response.py → test_v1_find_all_test_cases_by_id_response.py} +13 -13
  394. eval_studio_client/api/test/{test_v1alpha_create_test_lab_response.py → test_v1_find_test_lab_response.py} +13 -13
  395. eval_studio_client/api/test/{test_v1alpha_finalize_operation_response.py → test_v1_generate_test_cases_response.py} +13 -13
  396. eval_studio_client/api/test/{test_v1alpha_create_dashboard_response.py → test_v1_get_dashboard_response.py} +13 -13
  397. eval_studio_client/api/test/{test_v1alpha_delete_document_response.py → test_v1_get_document_response.py} +13 -13
  398. eval_studio_client/api/test/{test_v1alpha_create_evaluator_response.py → test_v1_get_evaluator_response.py} +15 -14
  399. eval_studio_client/api/test/{test_v1alpha_get_info_response.py → test_v1_get_info_response.py} +13 -13
  400. eval_studio_client/api/test/{test_v1alpha_delete_leaderboard_response.py → test_v1_get_leaderboard_response.py} +15 -15
  401. eval_studio_client/api/test/{test_v1alpha_create_model_response.py → test_v1_get_model_response.py} +13 -13
  402. eval_studio_client/api/test/{test_v1alpha_get_operation_progress_by_parent_response.py → test_v1_get_operation_progress_by_parent_response.py} +13 -13
  403. eval_studio_client/api/test/test_v1_get_operation_response.py +71 -0
  404. eval_studio_client/api/test/{test_v1alpha_get_perturbator_response.py → test_v1_get_perturbator_response.py} +13 -13
  405. eval_studio_client/api/test/{test_v1alpha_delete_test_case_response.py → test_v1_get_test_case_response.py} +13 -13
  406. eval_studio_client/api/test/{test_v1alpha_get_test_class_response.py → test_v1_get_test_class_response.py} +13 -13
  407. eval_studio_client/api/test/{test_v1alpha_delete_test_response.py → test_v1_get_test_response.py} +13 -13
  408. eval_studio_client/api/test/{test_v1alpha_import_evaluation_request.py → test_v1_import_evaluation_request.py} +13 -13
  409. eval_studio_client/api/test/{test_v1alpha_import_leaderboard_request.py → test_v1_import_leaderboard_request.py} +12 -12
  410. eval_studio_client/api/test/test_v1_import_leaderboard_response.py +71 -0
  411. eval_studio_client/api/test/{test_v1alpha_info.py → test_v1_info.py} +12 -12
  412. eval_studio_client/api/test/{test_v1alpha_insight.py → test_v1_insight.py} +12 -12
  413. eval_studio_client/api/test/{test_v1alpha_leaderboard.py → test_v1_leaderboard.py} +14 -14
  414. eval_studio_client/api/test/{test_v1alpha_dashboard_status.py → test_v1_leaderboard_status.py} +7 -7
  415. eval_studio_client/api/test/test_v1_leaderboard_type.py +33 -0
  416. eval_studio_client/api/test/test_v1_leaderboard_view.py +33 -0
  417. eval_studio_client/api/test/{test_v1alpha_list_base_models_response.py → test_v1_list_base_models_response.py} +12 -12
  418. eval_studio_client/api/test/{test_v1alpha_batch_delete_dashboards_response.py → test_v1_list_dashboards_response.py} +13 -13
  419. eval_studio_client/api/test/{test_v1alpha_batch_delete_documents_response.py → test_v1_list_documents_response.py} +13 -13
  420. eval_studio_client/api/test/{test_v1alpha_list_evaluators_response.py → test_v1_list_evaluators_response.py} +15 -14
  421. eval_studio_client/api/test/{test_v1alpha_list_leaderboards_response.py → test_v1_list_leaderboards_response.py} +15 -15
  422. eval_studio_client/api/test/{test_v1alpha_list_llm_models_response.py → test_v1_list_llm_models_response.py} +12 -12
  423. eval_studio_client/api/test/{test_v1alpha_list_rag_collections_response.py → test_v1_list_model_collections_response.py} +13 -13
  424. eval_studio_client/api/test/{test_v1alpha_batch_delete_models_response.py → test_v1_list_models_response.py} +13 -13
  425. eval_studio_client/api/test/{test_v1alpha_list_most_recent_dashboards_response.py → test_v1_list_most_recent_dashboards_response.py} +13 -13
  426. eval_studio_client/api/test/{test_v1alpha_list_most_recent_leaderboards_response.py → test_v1_list_most_recent_leaderboards_response.py} +15 -15
  427. eval_studio_client/api/test/{test_v1alpha_list_most_recent_models_response.py → test_v1_list_most_recent_models_response.py} +13 -13
  428. eval_studio_client/api/test/{test_v1alpha_batch_delete_tests_response.py → test_v1_list_most_recent_tests_response.py} +13 -13
  429. eval_studio_client/api/test/{test_v1alpha_batch_get_operations_response.py → test_v1_list_operations_response.py} +13 -13
  430. eval_studio_client/api/test/{test_v1alpha_list_perturbators_response.py → test_v1_list_perturbators_response.py} +13 -13
  431. eval_studio_client/api/test/{test_v1alpha_list_model_collections_response.py → test_v1_list_rag_collections_response.py} +13 -13
  432. eval_studio_client/api/test/{test_v1alpha_list_test_cases_response.py → test_v1_list_test_cases_response.py} +13 -13
  433. eval_studio_client/api/test/{test_v1alpha_list_test_classes_response.py → test_v1_list_test_classes_response.py} +13 -13
  434. eval_studio_client/api/test/test_v1_list_tests_response.py +69 -0
  435. eval_studio_client/api/test/{test_v1alpha_model.py → test_v1_model.py} +12 -12
  436. eval_studio_client/api/test/{test_v1alpha_leaderboard_view.py → test_v1_model_type.py} +7 -7
  437. eval_studio_client/api/test/{test_v1alpha_operation.py → test_v1_operation.py} +12 -12
  438. eval_studio_client/api/test/{test_v1alpha_operation_progress.py → test_v1_operation_progress.py} +12 -12
  439. eval_studio_client/api/test/{test_v1alpha_update_test_response.py → test_v1_perturb_test_response.py} +13 -13
  440. eval_studio_client/api/test/{test_v1alpha_perturbator.py → test_v1_perturbator.py} +12 -12
  441. eval_studio_client/api/test/{test_v1alpha_perturbator_configuration.py → test_v1_perturbator_configuration.py} +12 -12
  442. eval_studio_client/api/test/{test_v1alpha_leaderboard_type.py → test_v1_perturbator_intensity.py} +7 -7
  443. eval_studio_client/api/test/{test_v1alpha_problem_and_action.py → test_v1_problem_and_action.py} +12 -12
  444. eval_studio_client/api/test/{test_v1alpha_test.py → test_v1_test.py} +12 -12
  445. eval_studio_client/api/test/{test_v1alpha_test_case.py → test_v1_test_case.py} +12 -12
  446. eval_studio_client/api/test/{test_v1alpha_test_case_relationship.py → test_v1_test_case_relationship.py} +12 -12
  447. eval_studio_client/api/test/test_v1_test_cases_generator.py +33 -0
  448. eval_studio_client/api/test/{test_v1alpha_test_class.py → test_v1_test_class.py} +12 -12
  449. eval_studio_client/api/test/test_v1_test_class_type.py +33 -0
  450. eval_studio_client/api/test/{test_v1alpha_test_lab.py → test_v1_test_lab.py} +12 -12
  451. eval_studio_client/api/test/{test_v1alpha_delete_dashboard_response.py → test_v1_update_dashboard_response.py} +13 -13
  452. eval_studio_client/api/test/{test_v1alpha_create_document_response.py → test_v1_update_document_response.py} +13 -13
  453. eval_studio_client/api/test/{test_v1alpha_update_leaderboard_response.py → test_v1_update_leaderboard_response.py} +15 -15
  454. eval_studio_client/api/test/{test_v1alpha_update_model_response.py → test_v1_update_model_response.py} +13 -13
  455. eval_studio_client/api/test/test_v1_update_operation_response.py +71 -0
  456. eval_studio_client/api/test/{test_v1alpha_update_test_case_response.py → test_v1_update_test_case_response.py} +13 -13
  457. eval_studio_client/api/test/test_v1_update_test_response.py +67 -0
  458. eval_studio_client/api/test/{test_v1alpha_who_am_i_response.py → test_v1_who_am_i_response.py} +12 -12
  459. eval_studio_client/api/test/test_who_am_i_service_api.py +1 -1
  460. eval_studio_client/dashboards.py +23 -1
  461. eval_studio_client/documents.py +3 -3
  462. eval_studio_client/evaluators.py +1 -1
  463. eval_studio_client/gen/openapiv2/eval_studio.swagger.json +568 -387
  464. eval_studio_client/insights.py +1 -1
  465. eval_studio_client/leaderboards.py +11 -13
  466. eval_studio_client/models.py +61 -29
  467. eval_studio_client/perturbators.py +5 -7
  468. eval_studio_client/problems.py +1 -1
  469. eval_studio_client/test_labs.py +2 -2
  470. eval_studio_client/tests.py +225 -8
  471. {eval_studio_client-0.8.0a2.dist-info → eval_studio_client-0.8.2.dist-info}/METADATA +2 -2
  472. eval_studio_client-0.8.2.dist-info/RECORD +485 -0
  473. {eval_studio_client-0.8.0a2.dist-info → eval_studio_client-0.8.2.dist-info}/WHEEL +1 -1
  474. eval_studio_client/api/docs/V1alphaBatchCreateLeaderboardsRequest.md +0 -31
  475. eval_studio_client/api/docs/V1alphaBatchCreateLeaderboardsResponse.md +0 -29
  476. eval_studio_client/api/docs/V1alphaBatchDeleteDashboardsRequest.md +0 -29
  477. eval_studio_client/api/docs/V1alphaBatchDeleteDashboardsResponse.md +0 -29
  478. eval_studio_client/api/docs/V1alphaBatchDeleteDocumentsRequest.md +0 -29
  479. eval_studio_client/api/docs/V1alphaBatchDeleteDocumentsResponse.md +0 -29
  480. eval_studio_client/api/docs/V1alphaBatchDeleteEvaluatorsRequest.md +0 -29
  481. eval_studio_client/api/docs/V1alphaBatchDeleteEvaluatorsResponse.md +0 -29
  482. eval_studio_client/api/docs/V1alphaBatchDeleteLeaderboardsRequest.md +0 -30
  483. eval_studio_client/api/docs/V1alphaBatchDeleteLeaderboardsResponse.md +0 -29
  484. eval_studio_client/api/docs/V1alphaBatchDeleteModelsRequest.md +0 -29
  485. eval_studio_client/api/docs/V1alphaBatchDeleteModelsResponse.md +0 -29
  486. eval_studio_client/api/docs/V1alphaBatchDeleteTestCasesResponse.md +0 -29
  487. eval_studio_client/api/docs/V1alphaBatchDeleteTestsResponse.md +0 -29
  488. eval_studio_client/api/docs/V1alphaBatchGetDashboardsResponse.md +0 -29
  489. eval_studio_client/api/docs/V1alphaBatchGetDocumentsResponse.md +0 -29
  490. eval_studio_client/api/docs/V1alphaBatchGetLeaderboardsResponse.md +0 -29
  491. eval_studio_client/api/docs/V1alphaBatchGetModelsResponse.md +0 -29
  492. eval_studio_client/api/docs/V1alphaBatchGetOperationsResponse.md +0 -29
  493. eval_studio_client/api/docs/V1alphaBatchGetTestsResponse.md +0 -29
  494. eval_studio_client/api/docs/V1alphaBatchImportLeaderboardResponse.md +0 -29
  495. eval_studio_client/api/docs/V1alphaBatchImportTestsResponse.md +0 -29
  496. eval_studio_client/api/docs/V1alphaCheckBaseModelsResponse.md +0 -30
  497. eval_studio_client/api/docs/V1alphaCreateDashboardResponse.md +0 -29
  498. eval_studio_client/api/docs/V1alphaCreateDocumentResponse.md +0 -29
  499. eval_studio_client/api/docs/V1alphaCreateEvaluatorResponse.md +0 -29
  500. eval_studio_client/api/docs/V1alphaCreateLeaderboardRequest.md +0 -29
  501. eval_studio_client/api/docs/V1alphaCreateLeaderboardResponse.md +0 -29
  502. eval_studio_client/api/docs/V1alphaCreateLeaderboardWithoutCacheResponse.md +0 -29
  503. eval_studio_client/api/docs/V1alphaCreateModelResponse.md +0 -29
  504. eval_studio_client/api/docs/V1alphaCreatePerturbationResponse.md +0 -29
  505. eval_studio_client/api/docs/V1alphaCreateTestCaseResponse.md +0 -29
  506. eval_studio_client/api/docs/V1alphaCreateTestLabResponse.md +0 -29
  507. eval_studio_client/api/docs/V1alphaCreateTestResponse.md +0 -29
  508. eval_studio_client/api/docs/V1alphaDeleteDashboardResponse.md +0 -29
  509. eval_studio_client/api/docs/V1alphaDeleteDocumentResponse.md +0 -29
  510. eval_studio_client/api/docs/V1alphaDeleteEvaluatorResponse.md +0 -29
  511. eval_studio_client/api/docs/V1alphaDeleteLeaderboardResponse.md +0 -29
  512. eval_studio_client/api/docs/V1alphaDeleteModelResponse.md +0 -29
  513. eval_studio_client/api/docs/V1alphaDeleteTestCaseResponse.md +0 -29
  514. eval_studio_client/api/docs/V1alphaDeleteTestResponse.md +0 -29
  515. eval_studio_client/api/docs/V1alphaEvaluationTest.md +0 -32
  516. eval_studio_client/api/docs/V1alphaFinalizeOperationResponse.md +0 -29
  517. eval_studio_client/api/docs/V1alphaFindAllTestCasesByIDResponse.md +0 -29
  518. eval_studio_client/api/docs/V1alphaFindTestLabResponse.md +0 -29
  519. eval_studio_client/api/docs/V1alphaGetDashboardResponse.md +0 -29
  520. eval_studio_client/api/docs/V1alphaGetDocumentResponse.md +0 -29
  521. eval_studio_client/api/docs/V1alphaGetEvaluatorResponse.md +0 -29
  522. eval_studio_client/api/docs/V1alphaGetInfoResponse.md +0 -29
  523. eval_studio_client/api/docs/V1alphaGetLeaderboardResponse.md +0 -29
  524. eval_studio_client/api/docs/V1alphaGetModelResponse.md +0 -29
  525. eval_studio_client/api/docs/V1alphaGetOperationProgressByParentResponse.md +0 -29
  526. eval_studio_client/api/docs/V1alphaGetOperationResponse.md +0 -29
  527. eval_studio_client/api/docs/V1alphaGetPerturbatorResponse.md +0 -29
  528. eval_studio_client/api/docs/V1alphaGetTestCaseResponse.md +0 -29
  529. eval_studio_client/api/docs/V1alphaGetTestClassResponse.md +0 -29
  530. eval_studio_client/api/docs/V1alphaGetTestResponse.md +0 -29
  531. eval_studio_client/api/docs/V1alphaImportLeaderboardResponse.md +0 -29
  532. eval_studio_client/api/docs/V1alphaListBaseModelsResponse.md +0 -29
  533. eval_studio_client/api/docs/V1alphaListDashboardsResponse.md +0 -29
  534. eval_studio_client/api/docs/V1alphaListDocumentsResponse.md +0 -29
  535. eval_studio_client/api/docs/V1alphaListEvaluatorsResponse.md +0 -29
  536. eval_studio_client/api/docs/V1alphaListLLMModelsResponse.md +0 -29
  537. eval_studio_client/api/docs/V1alphaListLeaderboardsResponse.md +0 -30
  538. eval_studio_client/api/docs/V1alphaListModelCollectionsResponse.md +0 -29
  539. eval_studio_client/api/docs/V1alphaListModelsResponse.md +0 -29
  540. eval_studio_client/api/docs/V1alphaListMostRecentDashboardsResponse.md +0 -29
  541. eval_studio_client/api/docs/V1alphaListMostRecentLeaderboardsResponse.md +0 -29
  542. eval_studio_client/api/docs/V1alphaListMostRecentModelsResponse.md +0 -29
  543. eval_studio_client/api/docs/V1alphaListMostRecentTestsResponse.md +0 -29
  544. eval_studio_client/api/docs/V1alphaListOperationsResponse.md +0 -29
  545. eval_studio_client/api/docs/V1alphaListPerturbatorsResponse.md +0 -29
  546. eval_studio_client/api/docs/V1alphaListRAGCollectionsResponse.md +0 -29
  547. eval_studio_client/api/docs/V1alphaListTestCasesResponse.md +0 -29
  548. eval_studio_client/api/docs/V1alphaListTestClassesResponse.md +0 -29
  549. eval_studio_client/api/docs/V1alphaListTestsResponse.md +0 -29
  550. eval_studio_client/api/docs/V1alphaPerturbTestResponse.md +0 -29
  551. eval_studio_client/api/docs/V1alphaPerturbatorConfiguration.md +0 -32
  552. eval_studio_client/api/docs/V1alphaUpdateDashboardResponse.md +0 -29
  553. eval_studio_client/api/docs/V1alphaUpdateDocumentResponse.md +0 -29
  554. eval_studio_client/api/docs/V1alphaUpdateLeaderboardResponse.md +0 -29
  555. eval_studio_client/api/docs/V1alphaUpdateModelResponse.md +0 -29
  556. eval_studio_client/api/docs/V1alphaUpdateOperationResponse.md +0 -29
  557. eval_studio_client/api/docs/V1alphaUpdateTestCaseResponse.md +0 -29
  558. eval_studio_client/api/docs/V1alphaUpdateTestResponse.md +0 -29
  559. eval_studio_client/api/models/v1alpha_batch_create_leaderboards_response.py +0 -91
  560. eval_studio_client/api/models/v1alpha_batch_import_leaderboard_response.py +0 -91
  561. eval_studio_client/api/models/v1alpha_create_leaderboard_without_cache_response.py +0 -91
  562. eval_studio_client/api/models/v1alpha_list_most_recent_tests_response.py +0 -95
  563. eval_studio_client/api/models/v1alpha_perturb_test_response.py +0 -91
  564. eval_studio_client/api/test/test_v1alpha_batch_create_leaderboards_response.py +0 -71
  565. eval_studio_client/api/test/test_v1alpha_batch_delete_dashboards_request.py +0 -53
  566. eval_studio_client/api/test/test_v1alpha_batch_delete_evaluators_request.py +0 -53
  567. eval_studio_client/api/test/test_v1alpha_create_leaderboard_without_cache_response.py +0 -71
  568. eval_studio_client/api/test/test_v1alpha_evaluator_param_type.py +0 -33
  569. eval_studio_client/api/test/test_v1alpha_leaderboard_status.py +0 -33
  570. eval_studio_client/api/test/test_v1alpha_list_most_recent_tests_response.py +0 -69
  571. eval_studio_client/api/test/test_v1alpha_perturb_test_response.py +0 -67
  572. eval_studio_client/api/test/test_v1alpha_perturbator_intensity.py +0 -33
  573. eval_studio_client-0.8.0a2.dist-info/RECORD +0 -470
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- ai/h2o/eval_studio/v1alpha/collection.proto
4
+ ai/h2o/eval_studio/v1/collection.proto
5
5
 
6
6
  No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
@@ -20,19 +20,19 @@ from pydantic import Field, StrictInt, StrictStr, field_validator
20
20
  from typing import List, Optional
21
21
  from typing_extensions import Annotated
22
22
  from eval_studio_client.api.models.required_the_model_to_update import RequiredTheModelToUpdate
23
- from eval_studio_client.api.models.v1alpha_batch_delete_models_request import V1alphaBatchDeleteModelsRequest
24
- from eval_studio_client.api.models.v1alpha_batch_delete_models_response import V1alphaBatchDeleteModelsResponse
25
- from eval_studio_client.api.models.v1alpha_batch_get_models_response import V1alphaBatchGetModelsResponse
26
- from eval_studio_client.api.models.v1alpha_check_base_models_response import V1alphaCheckBaseModelsResponse
27
- from eval_studio_client.api.models.v1alpha_create_model_response import V1alphaCreateModelResponse
28
- from eval_studio_client.api.models.v1alpha_delete_model_response import V1alphaDeleteModelResponse
29
- from eval_studio_client.api.models.v1alpha_get_model_response import V1alphaGetModelResponse
30
- from eval_studio_client.api.models.v1alpha_list_base_models_response import V1alphaListBaseModelsResponse
31
- from eval_studio_client.api.models.v1alpha_list_model_collections_response import V1alphaListModelCollectionsResponse
32
- from eval_studio_client.api.models.v1alpha_list_models_response import V1alphaListModelsResponse
33
- from eval_studio_client.api.models.v1alpha_list_most_recent_models_response import V1alphaListMostRecentModelsResponse
34
- from eval_studio_client.api.models.v1alpha_model import V1alphaModel
35
- from eval_studio_client.api.models.v1alpha_update_model_response import V1alphaUpdateModelResponse
23
+ from eval_studio_client.api.models.v1_batch_delete_models_request import V1BatchDeleteModelsRequest
24
+ from eval_studio_client.api.models.v1_batch_delete_models_response import V1BatchDeleteModelsResponse
25
+ from eval_studio_client.api.models.v1_batch_get_models_response import V1BatchGetModelsResponse
26
+ from eval_studio_client.api.models.v1_check_base_models_response import V1CheckBaseModelsResponse
27
+ from eval_studio_client.api.models.v1_create_model_response import V1CreateModelResponse
28
+ from eval_studio_client.api.models.v1_delete_model_response import V1DeleteModelResponse
29
+ from eval_studio_client.api.models.v1_get_model_response import V1GetModelResponse
30
+ from eval_studio_client.api.models.v1_list_base_models_response import V1ListBaseModelsResponse
31
+ from eval_studio_client.api.models.v1_list_model_collections_response import V1ListModelCollectionsResponse
32
+ from eval_studio_client.api.models.v1_list_models_response import V1ListModelsResponse
33
+ from eval_studio_client.api.models.v1_list_most_recent_models_response import V1ListMostRecentModelsResponse
34
+ from eval_studio_client.api.models.v1_model import V1Model
35
+ from eval_studio_client.api.models.v1_update_model_response import V1UpdateModelResponse
36
36
 
37
37
  from eval_studio_client.api.api_client import ApiClient, RequestSerialized
38
38
  from eval_studio_client.api.api_response import ApiResponse
@@ -55,7 +55,7 @@ class ModelServiceApi:
55
55
  @validate_call
56
56
  def model_service_batch_delete_models(
57
57
  self,
58
- body: V1alphaBatchDeleteModelsRequest,
58
+ body: V1BatchDeleteModelsRequest,
59
59
  _request_timeout: Union[
60
60
  None,
61
61
  Annotated[StrictFloat, Field(gt=0)],
@@ -68,12 +68,12 @@ class ModelServiceApi:
68
68
  _content_type: Optional[StrictStr] = None,
69
69
  _headers: Optional[Dict[StrictStr, Any]] = None,
70
70
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
71
- ) -> V1alphaBatchDeleteModelsResponse:
71
+ ) -> V1BatchDeleteModelsResponse:
72
72
  """model_service_batch_delete_models
73
73
 
74
74
 
75
75
  :param body: (required)
76
- :type body: V1alphaBatchDeleteModelsRequest
76
+ :type body: V1BatchDeleteModelsRequest
77
77
  :param _request_timeout: timeout setting for this request. If one
78
78
  number provided, it will be total request
79
79
  timeout. It can also be a pair (tuple) of
@@ -105,7 +105,7 @@ class ModelServiceApi:
105
105
  )
106
106
 
107
107
  _response_types_map: Dict[str, Optional[str]] = {
108
- '200': "V1alphaBatchDeleteModelsResponse",
108
+ '200': "V1BatchDeleteModelsResponse",
109
109
  }
110
110
  response_data = self.api_client.call_api(
111
111
  *_param,
@@ -121,7 +121,7 @@ class ModelServiceApi:
121
121
  @validate_call
122
122
  def model_service_batch_delete_models_with_http_info(
123
123
  self,
124
- body: V1alphaBatchDeleteModelsRequest,
124
+ body: V1BatchDeleteModelsRequest,
125
125
  _request_timeout: Union[
126
126
  None,
127
127
  Annotated[StrictFloat, Field(gt=0)],
@@ -134,12 +134,12 @@ class ModelServiceApi:
134
134
  _content_type: Optional[StrictStr] = None,
135
135
  _headers: Optional[Dict[StrictStr, Any]] = None,
136
136
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
137
- ) -> ApiResponse[V1alphaBatchDeleteModelsResponse]:
137
+ ) -> ApiResponse[V1BatchDeleteModelsResponse]:
138
138
  """model_service_batch_delete_models
139
139
 
140
140
 
141
141
  :param body: (required)
142
- :type body: V1alphaBatchDeleteModelsRequest
142
+ :type body: V1BatchDeleteModelsRequest
143
143
  :param _request_timeout: timeout setting for this request. If one
144
144
  number provided, it will be total request
145
145
  timeout. It can also be a pair (tuple) of
@@ -171,7 +171,7 @@ class ModelServiceApi:
171
171
  )
172
172
 
173
173
  _response_types_map: Dict[str, Optional[str]] = {
174
- '200': "V1alphaBatchDeleteModelsResponse",
174
+ '200': "V1BatchDeleteModelsResponse",
175
175
  }
176
176
  response_data = self.api_client.call_api(
177
177
  *_param,
@@ -187,7 +187,7 @@ class ModelServiceApi:
187
187
  @validate_call
188
188
  def model_service_batch_delete_models_without_preload_content(
189
189
  self,
190
- body: V1alphaBatchDeleteModelsRequest,
190
+ body: V1BatchDeleteModelsRequest,
191
191
  _request_timeout: Union[
192
192
  None,
193
193
  Annotated[StrictFloat, Field(gt=0)],
@@ -205,7 +205,7 @@ class ModelServiceApi:
205
205
 
206
206
 
207
207
  :param body: (required)
208
- :type body: V1alphaBatchDeleteModelsRequest
208
+ :type body: V1BatchDeleteModelsRequest
209
209
  :param _request_timeout: timeout setting for this request. If one
210
210
  number provided, it will be total request
211
211
  timeout. It can also be a pair (tuple) of
@@ -237,7 +237,7 @@ class ModelServiceApi:
237
237
  )
238
238
 
239
239
  _response_types_map: Dict[str, Optional[str]] = {
240
- '200': "V1alphaBatchDeleteModelsResponse",
240
+ '200': "V1BatchDeleteModelsResponse",
241
241
  }
242
242
  response_data = self.api_client.call_api(
243
243
  *_param,
@@ -303,7 +303,7 @@ class ModelServiceApi:
303
303
 
304
304
  return self.api_client.param_serialize(
305
305
  method='POST',
306
- resource_path='/v1alpha/models:batchDelete',
306
+ resource_path='/v1/models:batchDelete',
307
307
  path_params=_path_params,
308
308
  query_params=_query_params,
309
309
  header_params=_header_params,
@@ -335,7 +335,7 @@ class ModelServiceApi:
335
335
  _content_type: Optional[StrictStr] = None,
336
336
  _headers: Optional[Dict[StrictStr, Any]] = None,
337
337
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
338
- ) -> V1alphaBatchGetModelsResponse:
338
+ ) -> V1BatchGetModelsResponse:
339
339
  """model_service_batch_get_models
340
340
 
341
341
 
@@ -372,7 +372,7 @@ class ModelServiceApi:
372
372
  )
373
373
 
374
374
  _response_types_map: Dict[str, Optional[str]] = {
375
- '200': "V1alphaBatchGetModelsResponse",
375
+ '200': "V1BatchGetModelsResponse",
376
376
  }
377
377
  response_data = self.api_client.call_api(
378
378
  *_param,
@@ -401,7 +401,7 @@ class ModelServiceApi:
401
401
  _content_type: Optional[StrictStr] = None,
402
402
  _headers: Optional[Dict[StrictStr, Any]] = None,
403
403
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
404
- ) -> ApiResponse[V1alphaBatchGetModelsResponse]:
404
+ ) -> ApiResponse[V1BatchGetModelsResponse]:
405
405
  """model_service_batch_get_models
406
406
 
407
407
 
@@ -438,7 +438,7 @@ class ModelServiceApi:
438
438
  )
439
439
 
440
440
  _response_types_map: Dict[str, Optional[str]] = {
441
- '200': "V1alphaBatchGetModelsResponse",
441
+ '200': "V1BatchGetModelsResponse",
442
442
  }
443
443
  response_data = self.api_client.call_api(
444
444
  *_param,
@@ -504,7 +504,7 @@ class ModelServiceApi:
504
504
  )
505
505
 
506
506
  _response_types_map: Dict[str, Optional[str]] = {
507
- '200': "V1alphaBatchGetModelsResponse",
507
+ '200': "V1BatchGetModelsResponse",
508
508
  }
509
509
  response_data = self.api_client.call_api(
510
510
  *_param,
@@ -560,7 +560,7 @@ class ModelServiceApi:
560
560
 
561
561
  return self.api_client.param_serialize(
562
562
  method='GET',
563
- resource_path='/v1alpha/models:batchGet',
563
+ resource_path='/v1/models:batchGet',
564
564
  path_params=_path_params,
565
565
  query_params=_query_params,
566
566
  header_params=_header_params,
@@ -592,7 +592,7 @@ class ModelServiceApi:
592
592
  _content_type: Optional[StrictStr] = None,
593
593
  _headers: Optional[Dict[StrictStr, Any]] = None,
594
594
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
595
- ) -> V1alphaCheckBaseModelsResponse:
595
+ ) -> V1CheckBaseModelsResponse:
596
596
  """model_service_check_base_models
597
597
 
598
598
 
@@ -629,7 +629,7 @@ class ModelServiceApi:
629
629
  )
630
630
 
631
631
  _response_types_map: Dict[str, Optional[str]] = {
632
- '200': "V1alphaCheckBaseModelsResponse",
632
+ '200': "V1CheckBaseModelsResponse",
633
633
  }
634
634
  response_data = self.api_client.call_api(
635
635
  *_param,
@@ -658,7 +658,7 @@ class ModelServiceApi:
658
658
  _content_type: Optional[StrictStr] = None,
659
659
  _headers: Optional[Dict[StrictStr, Any]] = None,
660
660
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
661
- ) -> ApiResponse[V1alphaCheckBaseModelsResponse]:
661
+ ) -> ApiResponse[V1CheckBaseModelsResponse]:
662
662
  """model_service_check_base_models
663
663
 
664
664
 
@@ -695,7 +695,7 @@ class ModelServiceApi:
695
695
  )
696
696
 
697
697
  _response_types_map: Dict[str, Optional[str]] = {
698
- '200': "V1alphaCheckBaseModelsResponse",
698
+ '200': "V1CheckBaseModelsResponse",
699
699
  }
700
700
  response_data = self.api_client.call_api(
701
701
  *_param,
@@ -761,7 +761,7 @@ class ModelServiceApi:
761
761
  )
762
762
 
763
763
  _response_types_map: Dict[str, Optional[str]] = {
764
- '200': "V1alphaCheckBaseModelsResponse",
764
+ '200': "V1CheckBaseModelsResponse",
765
765
  }
766
766
  response_data = self.api_client.call_api(
767
767
  *_param,
@@ -816,7 +816,7 @@ class ModelServiceApi:
816
816
 
817
817
  return self.api_client.param_serialize(
818
818
  method='GET',
819
- resource_path='/v1alpha/models:check_base_models',
819
+ resource_path='/v1/models:check_base_models',
820
820
  path_params=_path_params,
821
821
  query_params=_query_params,
822
822
  header_params=_header_params,
@@ -835,7 +835,7 @@ class ModelServiceApi:
835
835
  @validate_call
836
836
  def model_service_create_model(
837
837
  self,
838
- model: Annotated[V1alphaModel, Field(description="Required. The Model to create.")],
838
+ model: Annotated[V1Model, Field(description="Required. The Model to create.")],
839
839
  _request_timeout: Union[
840
840
  None,
841
841
  Annotated[StrictFloat, Field(gt=0)],
@@ -848,12 +848,12 @@ class ModelServiceApi:
848
848
  _content_type: Optional[StrictStr] = None,
849
849
  _headers: Optional[Dict[StrictStr, Any]] = None,
850
850
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
851
- ) -> V1alphaCreateModelResponse:
851
+ ) -> V1CreateModelResponse:
852
852
  """model_service_create_model
853
853
 
854
854
 
855
855
  :param model: Required. The Model to create. (required)
856
- :type model: V1alphaModel
856
+ :type model: V1Model
857
857
  :param _request_timeout: timeout setting for this request. If one
858
858
  number provided, it will be total request
859
859
  timeout. It can also be a pair (tuple) of
@@ -885,7 +885,7 @@ class ModelServiceApi:
885
885
  )
886
886
 
887
887
  _response_types_map: Dict[str, Optional[str]] = {
888
- '200': "V1alphaCreateModelResponse",
888
+ '200': "V1CreateModelResponse",
889
889
  }
890
890
  response_data = self.api_client.call_api(
891
891
  *_param,
@@ -901,7 +901,7 @@ class ModelServiceApi:
901
901
  @validate_call
902
902
  def model_service_create_model_with_http_info(
903
903
  self,
904
- model: Annotated[V1alphaModel, Field(description="Required. The Model to create.")],
904
+ model: Annotated[V1Model, Field(description="Required. The Model to create.")],
905
905
  _request_timeout: Union[
906
906
  None,
907
907
  Annotated[StrictFloat, Field(gt=0)],
@@ -914,12 +914,12 @@ class ModelServiceApi:
914
914
  _content_type: Optional[StrictStr] = None,
915
915
  _headers: Optional[Dict[StrictStr, Any]] = None,
916
916
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
917
- ) -> ApiResponse[V1alphaCreateModelResponse]:
917
+ ) -> ApiResponse[V1CreateModelResponse]:
918
918
  """model_service_create_model
919
919
 
920
920
 
921
921
  :param model: Required. The Model to create. (required)
922
- :type model: V1alphaModel
922
+ :type model: V1Model
923
923
  :param _request_timeout: timeout setting for this request. If one
924
924
  number provided, it will be total request
925
925
  timeout. It can also be a pair (tuple) of
@@ -951,7 +951,7 @@ class ModelServiceApi:
951
951
  )
952
952
 
953
953
  _response_types_map: Dict[str, Optional[str]] = {
954
- '200': "V1alphaCreateModelResponse",
954
+ '200': "V1CreateModelResponse",
955
955
  }
956
956
  response_data = self.api_client.call_api(
957
957
  *_param,
@@ -967,7 +967,7 @@ class ModelServiceApi:
967
967
  @validate_call
968
968
  def model_service_create_model_without_preload_content(
969
969
  self,
970
- model: Annotated[V1alphaModel, Field(description="Required. The Model to create.")],
970
+ model: Annotated[V1Model, Field(description="Required. The Model to create.")],
971
971
  _request_timeout: Union[
972
972
  None,
973
973
  Annotated[StrictFloat, Field(gt=0)],
@@ -985,7 +985,7 @@ class ModelServiceApi:
985
985
 
986
986
 
987
987
  :param model: Required. The Model to create. (required)
988
- :type model: V1alphaModel
988
+ :type model: V1Model
989
989
  :param _request_timeout: timeout setting for this request. If one
990
990
  number provided, it will be total request
991
991
  timeout. It can also be a pair (tuple) of
@@ -1017,7 +1017,7 @@ class ModelServiceApi:
1017
1017
  )
1018
1018
 
1019
1019
  _response_types_map: Dict[str, Optional[str]] = {
1020
- '200': "V1alphaCreateModelResponse",
1020
+ '200': "V1CreateModelResponse",
1021
1021
  }
1022
1022
  response_data = self.api_client.call_api(
1023
1023
  *_param,
@@ -1083,7 +1083,7 @@ class ModelServiceApi:
1083
1083
 
1084
1084
  return self.api_client.param_serialize(
1085
1085
  method='POST',
1086
- resource_path='/v1alpha/models',
1086
+ resource_path='/v1/models',
1087
1087
  path_params=_path_params,
1088
1088
  query_params=_query_params,
1089
1089
  header_params=_header_params,
@@ -1115,7 +1115,7 @@ class ModelServiceApi:
1115
1115
  _content_type: Optional[StrictStr] = None,
1116
1116
  _headers: Optional[Dict[StrictStr, Any]] = None,
1117
1117
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1118
- ) -> V1alphaDeleteModelResponse:
1118
+ ) -> V1DeleteModelResponse:
1119
1119
  """model_service_delete_model
1120
1120
 
1121
1121
 
@@ -1152,7 +1152,7 @@ class ModelServiceApi:
1152
1152
  )
1153
1153
 
1154
1154
  _response_types_map: Dict[str, Optional[str]] = {
1155
- '200': "V1alphaDeleteModelResponse",
1155
+ '200': "V1DeleteModelResponse",
1156
1156
  }
1157
1157
  response_data = self.api_client.call_api(
1158
1158
  *_param,
@@ -1181,7 +1181,7 @@ class ModelServiceApi:
1181
1181
  _content_type: Optional[StrictStr] = None,
1182
1182
  _headers: Optional[Dict[StrictStr, Any]] = None,
1183
1183
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1184
- ) -> ApiResponse[V1alphaDeleteModelResponse]:
1184
+ ) -> ApiResponse[V1DeleteModelResponse]:
1185
1185
  """model_service_delete_model
1186
1186
 
1187
1187
 
@@ -1218,7 +1218,7 @@ class ModelServiceApi:
1218
1218
  )
1219
1219
 
1220
1220
  _response_types_map: Dict[str, Optional[str]] = {
1221
- '200': "V1alphaDeleteModelResponse",
1221
+ '200': "V1DeleteModelResponse",
1222
1222
  }
1223
1223
  response_data = self.api_client.call_api(
1224
1224
  *_param,
@@ -1284,7 +1284,7 @@ class ModelServiceApi:
1284
1284
  )
1285
1285
 
1286
1286
  _response_types_map: Dict[str, Optional[str]] = {
1287
- '200': "V1alphaDeleteModelResponse",
1287
+ '200': "V1DeleteModelResponse",
1288
1288
  }
1289
1289
  response_data = self.api_client.call_api(
1290
1290
  *_param,
@@ -1337,7 +1337,7 @@ class ModelServiceApi:
1337
1337
 
1338
1338
  return self.api_client.param_serialize(
1339
1339
  method='DELETE',
1340
- resource_path='/v1alpha/{name_4}',
1340
+ resource_path='/v1/{name_4}',
1341
1341
  path_params=_path_params,
1342
1342
  query_params=_query_params,
1343
1343
  header_params=_header_params,
@@ -1369,7 +1369,7 @@ class ModelServiceApi:
1369
1369
  _content_type: Optional[StrictStr] = None,
1370
1370
  _headers: Optional[Dict[StrictStr, Any]] = None,
1371
1371
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1372
- ) -> V1alphaGetModelResponse:
1372
+ ) -> V1GetModelResponse:
1373
1373
  """model_service_get_model
1374
1374
 
1375
1375
 
@@ -1406,7 +1406,7 @@ class ModelServiceApi:
1406
1406
  )
1407
1407
 
1408
1408
  _response_types_map: Dict[str, Optional[str]] = {
1409
- '200': "V1alphaGetModelResponse",
1409
+ '200': "V1GetModelResponse",
1410
1410
  }
1411
1411
  response_data = self.api_client.call_api(
1412
1412
  *_param,
@@ -1435,7 +1435,7 @@ class ModelServiceApi:
1435
1435
  _content_type: Optional[StrictStr] = None,
1436
1436
  _headers: Optional[Dict[StrictStr, Any]] = None,
1437
1437
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1438
- ) -> ApiResponse[V1alphaGetModelResponse]:
1438
+ ) -> ApiResponse[V1GetModelResponse]:
1439
1439
  """model_service_get_model
1440
1440
 
1441
1441
 
@@ -1472,7 +1472,7 @@ class ModelServiceApi:
1472
1472
  )
1473
1473
 
1474
1474
  _response_types_map: Dict[str, Optional[str]] = {
1475
- '200': "V1alphaGetModelResponse",
1475
+ '200': "V1GetModelResponse",
1476
1476
  }
1477
1477
  response_data = self.api_client.call_api(
1478
1478
  *_param,
@@ -1538,7 +1538,7 @@ class ModelServiceApi:
1538
1538
  )
1539
1539
 
1540
1540
  _response_types_map: Dict[str, Optional[str]] = {
1541
- '200': "V1alphaGetModelResponse",
1541
+ '200': "V1GetModelResponse",
1542
1542
  }
1543
1543
  response_data = self.api_client.call_api(
1544
1544
  *_param,
@@ -1591,7 +1591,7 @@ class ModelServiceApi:
1591
1591
 
1592
1592
  return self.api_client.param_serialize(
1593
1593
  method='GET',
1594
- resource_path='/v1alpha/{name_4}',
1594
+ resource_path='/v1/{name_4}',
1595
1595
  path_params=_path_params,
1596
1596
  query_params=_query_params,
1597
1597
  header_params=_header_params,
@@ -1623,7 +1623,7 @@ class ModelServiceApi:
1623
1623
  _content_type: Optional[StrictStr] = None,
1624
1624
  _headers: Optional[Dict[StrictStr, Any]] = None,
1625
1625
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1626
- ) -> V1alphaListBaseModelsResponse:
1626
+ ) -> V1ListBaseModelsResponse:
1627
1627
  """model_service_list_base_models
1628
1628
 
1629
1629
 
@@ -1660,7 +1660,7 @@ class ModelServiceApi:
1660
1660
  )
1661
1661
 
1662
1662
  _response_types_map: Dict[str, Optional[str]] = {
1663
- '200': "V1alphaListBaseModelsResponse",
1663
+ '200': "V1ListBaseModelsResponse",
1664
1664
  }
1665
1665
  response_data = self.api_client.call_api(
1666
1666
  *_param,
@@ -1689,7 +1689,7 @@ class ModelServiceApi:
1689
1689
  _content_type: Optional[StrictStr] = None,
1690
1690
  _headers: Optional[Dict[StrictStr, Any]] = None,
1691
1691
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1692
- ) -> ApiResponse[V1alphaListBaseModelsResponse]:
1692
+ ) -> ApiResponse[V1ListBaseModelsResponse]:
1693
1693
  """model_service_list_base_models
1694
1694
 
1695
1695
 
@@ -1726,7 +1726,7 @@ class ModelServiceApi:
1726
1726
  )
1727
1727
 
1728
1728
  _response_types_map: Dict[str, Optional[str]] = {
1729
- '200': "V1alphaListBaseModelsResponse",
1729
+ '200': "V1ListBaseModelsResponse",
1730
1730
  }
1731
1731
  response_data = self.api_client.call_api(
1732
1732
  *_param,
@@ -1792,7 +1792,7 @@ class ModelServiceApi:
1792
1792
  )
1793
1793
 
1794
1794
  _response_types_map: Dict[str, Optional[str]] = {
1795
- '200': "V1alphaListBaseModelsResponse",
1795
+ '200': "V1ListBaseModelsResponse",
1796
1796
  }
1797
1797
  response_data = self.api_client.call_api(
1798
1798
  *_param,
@@ -1847,7 +1847,7 @@ class ModelServiceApi:
1847
1847
 
1848
1848
  return self.api_client.param_serialize(
1849
1849
  method='GET',
1850
- resource_path='/v1alpha/models:base_models',
1850
+ resource_path='/v1/models:base_models',
1851
1851
  path_params=_path_params,
1852
1852
  query_params=_query_params,
1853
1853
  header_params=_header_params,
@@ -1879,7 +1879,7 @@ class ModelServiceApi:
1879
1879
  _content_type: Optional[StrictStr] = None,
1880
1880
  _headers: Optional[Dict[StrictStr, Any]] = None,
1881
1881
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1882
- ) -> V1alphaListModelCollectionsResponse:
1882
+ ) -> V1ListModelCollectionsResponse:
1883
1883
  """model_service_list_model_collections
1884
1884
 
1885
1885
 
@@ -1916,7 +1916,7 @@ class ModelServiceApi:
1916
1916
  )
1917
1917
 
1918
1918
  _response_types_map: Dict[str, Optional[str]] = {
1919
- '200': "V1alphaListModelCollectionsResponse",
1919
+ '200': "V1ListModelCollectionsResponse",
1920
1920
  }
1921
1921
  response_data = self.api_client.call_api(
1922
1922
  *_param,
@@ -1945,7 +1945,7 @@ class ModelServiceApi:
1945
1945
  _content_type: Optional[StrictStr] = None,
1946
1946
  _headers: Optional[Dict[StrictStr, Any]] = None,
1947
1947
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1948
- ) -> ApiResponse[V1alphaListModelCollectionsResponse]:
1948
+ ) -> ApiResponse[V1ListModelCollectionsResponse]:
1949
1949
  """model_service_list_model_collections
1950
1950
 
1951
1951
 
@@ -1982,7 +1982,7 @@ class ModelServiceApi:
1982
1982
  )
1983
1983
 
1984
1984
  _response_types_map: Dict[str, Optional[str]] = {
1985
- '200': "V1alphaListModelCollectionsResponse",
1985
+ '200': "V1ListModelCollectionsResponse",
1986
1986
  }
1987
1987
  response_data = self.api_client.call_api(
1988
1988
  *_param,
@@ -2048,7 +2048,7 @@ class ModelServiceApi:
2048
2048
  )
2049
2049
 
2050
2050
  _response_types_map: Dict[str, Optional[str]] = {
2051
- '200': "V1alphaListModelCollectionsResponse",
2051
+ '200': "V1ListModelCollectionsResponse",
2052
2052
  }
2053
2053
  response_data = self.api_client.call_api(
2054
2054
  *_param,
@@ -2103,7 +2103,7 @@ class ModelServiceApi:
2103
2103
 
2104
2104
  return self.api_client.param_serialize(
2105
2105
  method='GET',
2106
- resource_path='/v1alpha/models:collections',
2106
+ resource_path='/v1/models:collections',
2107
2107
  path_params=_path_params,
2108
2108
  query_params=_query_params,
2109
2109
  header_params=_header_params,
@@ -2135,7 +2135,7 @@ class ModelServiceApi:
2135
2135
  _content_type: Optional[StrictStr] = None,
2136
2136
  _headers: Optional[Dict[StrictStr, Any]] = None,
2137
2137
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2138
- ) -> V1alphaListModelsResponse:
2138
+ ) -> V1ListModelsResponse:
2139
2139
  """model_service_list_models
2140
2140
 
2141
2141
 
@@ -2172,7 +2172,7 @@ class ModelServiceApi:
2172
2172
  )
2173
2173
 
2174
2174
  _response_types_map: Dict[str, Optional[str]] = {
2175
- '200': "V1alphaListModelsResponse",
2175
+ '200': "V1ListModelsResponse",
2176
2176
  }
2177
2177
  response_data = self.api_client.call_api(
2178
2178
  *_param,
@@ -2201,7 +2201,7 @@ class ModelServiceApi:
2201
2201
  _content_type: Optional[StrictStr] = None,
2202
2202
  _headers: Optional[Dict[StrictStr, Any]] = None,
2203
2203
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2204
- ) -> ApiResponse[V1alphaListModelsResponse]:
2204
+ ) -> ApiResponse[V1ListModelsResponse]:
2205
2205
  """model_service_list_models
2206
2206
 
2207
2207
 
@@ -2238,7 +2238,7 @@ class ModelServiceApi:
2238
2238
  )
2239
2239
 
2240
2240
  _response_types_map: Dict[str, Optional[str]] = {
2241
- '200': "V1alphaListModelsResponse",
2241
+ '200': "V1ListModelsResponse",
2242
2242
  }
2243
2243
  response_data = self.api_client.call_api(
2244
2244
  *_param,
@@ -2304,7 +2304,7 @@ class ModelServiceApi:
2304
2304
  )
2305
2305
 
2306
2306
  _response_types_map: Dict[str, Optional[str]] = {
2307
- '200': "V1alphaListModelsResponse",
2307
+ '200': "V1ListModelsResponse",
2308
2308
  }
2309
2309
  response_data = self.api_client.call_api(
2310
2310
  *_param,
@@ -2359,7 +2359,7 @@ class ModelServiceApi:
2359
2359
 
2360
2360
  return self.api_client.param_serialize(
2361
2361
  method='GET',
2362
- resource_path='/v1alpha/models',
2362
+ resource_path='/v1/models',
2363
2363
  path_params=_path_params,
2364
2364
  query_params=_query_params,
2365
2365
  header_params=_header_params,
@@ -2391,7 +2391,7 @@ class ModelServiceApi:
2391
2391
  _content_type: Optional[StrictStr] = None,
2392
2392
  _headers: Optional[Dict[StrictStr, Any]] = None,
2393
2393
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2394
- ) -> V1alphaListMostRecentModelsResponse:
2394
+ ) -> V1ListMostRecentModelsResponse:
2395
2395
  """model_service_list_most_recent_models
2396
2396
 
2397
2397
 
@@ -2428,7 +2428,7 @@ class ModelServiceApi:
2428
2428
  )
2429
2429
 
2430
2430
  _response_types_map: Dict[str, Optional[str]] = {
2431
- '200': "V1alphaListMostRecentModelsResponse",
2431
+ '200': "V1ListMostRecentModelsResponse",
2432
2432
  }
2433
2433
  response_data = self.api_client.call_api(
2434
2434
  *_param,
@@ -2457,7 +2457,7 @@ class ModelServiceApi:
2457
2457
  _content_type: Optional[StrictStr] = None,
2458
2458
  _headers: Optional[Dict[StrictStr, Any]] = None,
2459
2459
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2460
- ) -> ApiResponse[V1alphaListMostRecentModelsResponse]:
2460
+ ) -> ApiResponse[V1ListMostRecentModelsResponse]:
2461
2461
  """model_service_list_most_recent_models
2462
2462
 
2463
2463
 
@@ -2494,7 +2494,7 @@ class ModelServiceApi:
2494
2494
  )
2495
2495
 
2496
2496
  _response_types_map: Dict[str, Optional[str]] = {
2497
- '200': "V1alphaListMostRecentModelsResponse",
2497
+ '200': "V1ListMostRecentModelsResponse",
2498
2498
  }
2499
2499
  response_data = self.api_client.call_api(
2500
2500
  *_param,
@@ -2560,7 +2560,7 @@ class ModelServiceApi:
2560
2560
  )
2561
2561
 
2562
2562
  _response_types_map: Dict[str, Optional[str]] = {
2563
- '200': "V1alphaListMostRecentModelsResponse",
2563
+ '200': "V1ListMostRecentModelsResponse",
2564
2564
  }
2565
2565
  response_data = self.api_client.call_api(
2566
2566
  *_param,
@@ -2615,7 +2615,7 @@ class ModelServiceApi:
2615
2615
 
2616
2616
  return self.api_client.param_serialize(
2617
2617
  method='GET',
2618
- resource_path='/v1alpha/models:mostRecent',
2618
+ resource_path='/v1/models:mostRecent',
2619
2619
  path_params=_path_params,
2620
2620
  query_params=_query_params,
2621
2621
  header_params=_header_params,
@@ -2648,7 +2648,7 @@ class ModelServiceApi:
2648
2648
  _content_type: Optional[StrictStr] = None,
2649
2649
  _headers: Optional[Dict[StrictStr, Any]] = None,
2650
2650
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2651
- ) -> V1alphaUpdateModelResponse:
2651
+ ) -> V1UpdateModelResponse:
2652
2652
  """model_service_update_model
2653
2653
 
2654
2654
 
@@ -2688,7 +2688,7 @@ class ModelServiceApi:
2688
2688
  )
2689
2689
 
2690
2690
  _response_types_map: Dict[str, Optional[str]] = {
2691
- '200': "V1alphaUpdateModelResponse",
2691
+ '200': "V1UpdateModelResponse",
2692
2692
  }
2693
2693
  response_data = self.api_client.call_api(
2694
2694
  *_param,
@@ -2718,7 +2718,7 @@ class ModelServiceApi:
2718
2718
  _content_type: Optional[StrictStr] = None,
2719
2719
  _headers: Optional[Dict[StrictStr, Any]] = None,
2720
2720
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2721
- ) -> ApiResponse[V1alphaUpdateModelResponse]:
2721
+ ) -> ApiResponse[V1UpdateModelResponse]:
2722
2722
  """model_service_update_model
2723
2723
 
2724
2724
 
@@ -2758,7 +2758,7 @@ class ModelServiceApi:
2758
2758
  )
2759
2759
 
2760
2760
  _response_types_map: Dict[str, Optional[str]] = {
2761
- '200': "V1alphaUpdateModelResponse",
2761
+ '200': "V1UpdateModelResponse",
2762
2762
  }
2763
2763
  response_data = self.api_client.call_api(
2764
2764
  *_param,
@@ -2828,7 +2828,7 @@ class ModelServiceApi:
2828
2828
  )
2829
2829
 
2830
2830
  _response_types_map: Dict[str, Optional[str]] = {
2831
- '200': "V1alphaUpdateModelResponse",
2831
+ '200': "V1UpdateModelResponse",
2832
2832
  }
2833
2833
  response_data = self.api_client.call_api(
2834
2834
  *_param,
@@ -2897,7 +2897,7 @@ class ModelServiceApi:
2897
2897
 
2898
2898
  return self.api_client.param_serialize(
2899
2899
  method='PATCH',
2900
- resource_path='/v1alpha/{model.name}',
2900
+ resource_path='/v1/{model.name}',
2901
2901
  path_params=_path_params,
2902
2902
  query_params=_query_params,
2903
2903
  header_params=_header_params,