eval-studio-client 0.8.0a1__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.
- eval_studio_client/__init__.py +2 -1
- eval_studio_client/api/__init__.py +125 -120
- eval_studio_client/api/api/__init__.py +1 -0
- eval_studio_client/api/api/dashboard_service_api.py +71 -71
- eval_studio_client/api/api/document_service_api.py +64 -64
- eval_studio_client/api/api/evaluation_service_api.py +42 -42
- eval_studio_client/api/api/evaluator_service_api.py +50 -50
- eval_studio_client/api/api/info_service_api.py +8 -8
- eval_studio_client/api/api/leaderboard_service_api.py +126 -126
- eval_studio_client/api/api/model_service_api.py +92 -92
- eval_studio_client/api/api/operation_progress_service_api.py +8 -8
- eval_studio_client/api/api/operation_service_api.py +36 -36
- eval_studio_client/api/api/perturbation_service_api.py +8 -8
- eval_studio_client/api/api/perturbator_service_api.py +15 -15
- eval_studio_client/api/api/prompt_generation_service_api.py +321 -0
- eval_studio_client/api/api/test_case_service_api.py +57 -57
- eval_studio_client/api/api/test_class_service_api.py +15 -15
- eval_studio_client/api/api/test_lab_service_api.py +22 -22
- eval_studio_client/api/api/test_service_api.py +376 -92
- eval_studio_client/api/api/who_am_i_service_api.py +8 -8
- eval_studio_client/api/api_client.py +1 -1
- eval_studio_client/api/configuration.py +1 -1
- eval_studio_client/api/docs/DashboardServiceApi.md +38 -38
- eval_studio_client/api/docs/DocumentServiceApi.md +34 -34
- eval_studio_client/api/docs/EvaluationServiceApi.md +22 -22
- eval_studio_client/api/docs/EvaluatorServiceApi.md +26 -26
- eval_studio_client/api/docs/InfoServiceApi.md +4 -4
- eval_studio_client/api/docs/LeaderboardServiceApi.md +66 -66
- eval_studio_client/api/docs/ModelServiceApi.md +50 -50
- eval_studio_client/api/docs/OperationProgressServiceApi.md +4 -4
- eval_studio_client/api/docs/OperationServiceApi.md +20 -20
- eval_studio_client/api/docs/PerturbationServiceApi.md +4 -4
- eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md +3 -3
- eval_studio_client/api/docs/PerturbatorServiceApi.md +8 -8
- eval_studio_client/api/docs/PromptGenerationServiceApi.md +78 -0
- eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md +35 -0
- eval_studio_client/api/docs/RequiredTheDashboardToUpdate.md +1 -1
- eval_studio_client/api/docs/RequiredTheLeaderboardToUpdate.md +4 -4
- eval_studio_client/api/docs/RequiredTheModelToUpdate.md +1 -1
- eval_studio_client/api/docs/TestCaseServiceApi.md +31 -31
- eval_studio_client/api/docs/TestClassServiceApi.md +8 -8
- eval_studio_client/api/docs/TestLabServiceApi.md +11 -11
- eval_studio_client/api/docs/TestServiceApi.md +119 -49
- eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md +33 -0
- eval_studio_client/api/docs/TestServicePerturbTestRequest.md +1 -1
- eval_studio_client/api/docs/V1BatchCreateLeaderboardsRequest.md +31 -0
- eval_studio_client/api/docs/V1BatchCreateLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDashboardsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDocumentsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteDocumentsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteEvaluatorsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteEvaluatorsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteLeaderboardsRequest.md +30 -0
- eval_studio_client/api/docs/V1BatchDeleteLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteModelsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaBatchDeleteTestsRequest.md → V1BatchDeleteTestsRequest.md} +8 -8
- eval_studio_client/api/docs/V1BatchDeleteTestsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetDocumentsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetOperationsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetTestsResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaBatchImportLeaderboardRequest.md → V1BatchImportLeaderboardRequest.md} +9 -9
- eval_studio_client/api/docs/V1BatchImportLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaBatchImportTestsRequest.md → V1BatchImportTestsRequest.md} +8 -8
- eval_studio_client/api/docs/V1BatchImportTestsResponse.md +29 -0
- eval_studio_client/api/docs/V1CheckBaseModelsResponse.md +30 -0
- eval_studio_client/api/docs/{V1alphaCollectionInfo.md → V1CollectionInfo.md} +8 -8
- eval_studio_client/api/docs/V1CreateDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateDocumentResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaCreateEvaluationRequest.md → V1CreateEvaluationRequest.md} +10 -10
- eval_studio_client/api/docs/V1CreateEvaluatorResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateLeaderboardRequest.md +29 -0
- eval_studio_client/api/docs/V1CreateLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateLeaderboardWithoutCacheResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateModelResponse.md +29 -0
- eval_studio_client/api/docs/V1CreatePerturbationResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateTestLabResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaDashboard.md → V1Dashboard.md} +9 -9
- eval_studio_client/api/docs/{V1alphaDashboardStatus.md → V1DashboardStatus.md} +1 -1
- eval_studio_client/api/docs/V1DeleteDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteDocumentResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteEvaluatorResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteModelResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaDocument.md → V1Document.md} +8 -8
- eval_studio_client/api/docs/V1EvaluationTest.md +32 -0
- eval_studio_client/api/docs/{V1alphaEvaluator.md → V1Evaluator.md} +10 -9
- eval_studio_client/api/docs/{V1alphaEvaluatorParamType.md → V1EvaluatorParamType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaEvaluatorParameter.md → V1EvaluatorParameter.md} +9 -9
- eval_studio_client/api/docs/{V1alphaEvaluatorView.md → V1EvaluatorView.md} +1 -1
- eval_studio_client/api/docs/V1FinalizeOperationResponse.md +29 -0
- eval_studio_client/api/docs/V1FindAllTestCasesByIDResponse.md +29 -0
- eval_studio_client/api/docs/V1FindTestLabResponse.md +29 -0
- eval_studio_client/api/docs/V1GenerateTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/V1GetDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1GetDocumentResponse.md +29 -0
- eval_studio_client/api/docs/V1GetEvaluatorResponse.md +29 -0
- eval_studio_client/api/docs/V1GetInfoResponse.md +29 -0
- eval_studio_client/api/docs/V1GetLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1GetModelResponse.md +29 -0
- eval_studio_client/api/docs/V1GetOperationProgressByParentResponse.md +29 -0
- eval_studio_client/api/docs/V1GetOperationResponse.md +29 -0
- eval_studio_client/api/docs/V1GetPerturbatorResponse.md +29 -0
- eval_studio_client/api/docs/V1GetTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1GetTestClassResponse.md +29 -0
- eval_studio_client/api/docs/V1GetTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaImportEvaluationRequest.md → V1ImportEvaluationRequest.md} +9 -9
- eval_studio_client/api/docs/{V1alphaImportLeaderboardRequest.md → V1ImportLeaderboardRequest.md} +9 -9
- eval_studio_client/api/docs/V1ImportLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaInfo.md → V1Info.md} +8 -8
- eval_studio_client/api/docs/{V1alphaInsight.md → V1Insight.md} +8 -8
- eval_studio_client/api/docs/{V1alphaLeaderboard.md → V1Leaderboard.md} +12 -12
- eval_studio_client/api/docs/{V1alphaLeaderboardStatus.md → V1LeaderboardStatus.md} +1 -1
- eval_studio_client/api/docs/{V1alphaLeaderboardType.md → V1LeaderboardType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaLeaderboardView.md → V1LeaderboardView.md} +1 -1
- eval_studio_client/api/docs/V1ListBaseModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListDocumentsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListEvaluatorsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListLLMModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListLeaderboardsResponse.md +30 -0
- eval_studio_client/api/docs/V1ListModelCollectionsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentDashboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentModelsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListMostRecentTestsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListOperationsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListPerturbatorsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListRAGCollectionsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestClassesResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestsResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaModel.md → V1Model.md} +9 -9
- eval_studio_client/api/docs/{V1alphaModelType.md → V1ModelType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaOperation.md → V1Operation.md} +8 -8
- eval_studio_client/api/docs/{V1alphaOperationProgress.md → V1OperationProgress.md} +8 -8
- eval_studio_client/api/docs/V1PerturbTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaPerturbator.md → V1Perturbator.md} +8 -8
- eval_studio_client/api/docs/V1PerturbatorConfiguration.md +32 -0
- eval_studio_client/api/docs/{V1alphaPerturbatorIntensity.md → V1PerturbatorIntensity.md} +1 -1
- eval_studio_client/api/docs/{V1alphaProblemAndAction.md → V1ProblemAndAction.md} +8 -8
- eval_studio_client/api/docs/{V1alphaTest.md → V1Test.md} +8 -8
- eval_studio_client/api/docs/{V1alphaTestCase.md → V1TestCase.md} +8 -8
- eval_studio_client/api/docs/{V1alphaTestCaseRelationship.md → V1TestCaseRelationship.md} +8 -8
- eval_studio_client/api/docs/V1TestCasesGenerator.md +11 -0
- eval_studio_client/api/docs/{V1alphaTestClass.md → V1TestClass.md} +9 -9
- eval_studio_client/api/docs/{V1alphaTestClassType.md → V1TestClassType.md} +1 -1
- eval_studio_client/api/docs/{V1alphaTestLab.md → V1TestLab.md} +8 -8
- eval_studio_client/api/docs/V1UpdateDashboardResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateDocumentResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateLeaderboardResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateModelResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateOperationResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateTestCaseResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateTestResponse.md +29 -0
- eval_studio_client/api/docs/{V1alphaWhoAmIResponse.md → V1WhoAmIResponse.md} +8 -8
- eval_studio_client/api/docs/WhoAmIServiceApi.md +4 -4
- eval_studio_client/api/exceptions.py +1 -1
- eval_studio_client/api/models/__init__.py +124 -120
- eval_studio_client/api/models/perturbation_service_create_perturbation_request.py +10 -10
- eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py +104 -0
- eval_studio_client/api/models/protobuf_any.py +1 -1
- eval_studio_client/api/models/required_the_dashboard_to_update.py +3 -3
- eval_studio_client/api/models/required_the_document_to_update.py +1 -1
- eval_studio_client/api/models/required_the_leaderboard_to_update.py +11 -11
- eval_studio_client/api/models/required_the_model_to_update.py +3 -3
- eval_studio_client/api/models/required_the_operation_to_finalize.py +1 -1
- eval_studio_client/api/models/required_the_operation_to_update.py +1 -1
- eval_studio_client/api/models/required_the_test_case_to_update.py +1 -1
- eval_studio_client/api/models/required_the_test_to_update.py +1 -1
- eval_studio_client/api/models/rpc_status.py +1 -1
- eval_studio_client/api/models/test_case_service_batch_delete_test_cases_request.py +1 -1
- eval_studio_client/api/models/test_service_generate_test_cases_request.py +96 -0
- eval_studio_client/api/models/test_service_perturb_test_request.py +4 -4
- eval_studio_client/api/models/{v1alpha_batch_create_leaderboards_request.py → v1_batch_create_leaderboards_request.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_operation_response.py → v1_batch_create_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_dashboards_request.py → v1_batch_delete_dashboards_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_dashboards_response.py → v1_batch_delete_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_documents_request.py → v1_batch_delete_documents_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_documents_response.py → v1_batch_delete_documents_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_evaluators_request.py → v1_batch_delete_evaluators_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_evaluators_response.py → v1_batch_delete_evaluators_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_leaderboards_request.py → v1_batch_delete_leaderboards_request.py} +7 -7
- eval_studio_client/api/models/{v1alpha_batch_get_leaderboards_response.py → v1_batch_delete_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_models_request.py → v1_batch_delete_models_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_models_response.py → v1_batch_delete_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_test_cases_response.py → v1_batch_delete_test_cases_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_tests_request.py → v1_batch_delete_tests_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_tests_response.py → v1_batch_delete_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_dashboards_response.py → v1_batch_get_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_documents_response.py → v1_batch_get_documents_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_leaderboards_response.py → v1_batch_get_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_models_response.py → v1_batch_get_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_operations_response.py → v1_batch_get_operations_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_tests_response.py → v1_batch_get_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_import_leaderboard_request.py → v1_batch_import_leaderboard_request.py} +7 -7
- eval_studio_client/api/models/{v1alpha_import_leaderboard_response.py → v1_batch_import_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_import_tests_request.py → v1_batch_import_tests_request.py} +5 -5
- eval_studio_client/api/models/{v1alpha_batch_delete_tests_response.py → v1_batch_import_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_check_base_models_response.py → v1_check_base_models_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_collection_info.py → v1_collection_info.py} +4 -4
- eval_studio_client/api/models/{v1alpha_get_dashboard_response.py → v1_create_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_document_response.py → v1_create_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_evaluation_request.py → v1_create_evaluation_request.py} +11 -11
- eval_studio_client/api/models/{v1alpha_get_evaluator_response.py → v1_create_evaluator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_leaderboard_response.py → v1_create_leaderboard_request.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_operation_response.py → v1_create_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/v1_create_leaderboard_without_cache_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_get_model_response.py → v1_create_model_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_perturbation_response.py → v1_create_perturbation_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_get_test_case_response.py → v1_create_test_case_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_find_test_lab_response.py → v1_create_test_lab_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_test_response.py → v1_create_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_dashboard.py → v1_dashboard.py} +7 -7
- eval_studio_client/api/models/{v1alpha_dashboard_status.py → v1_dashboard_status.py} +3 -3
- eval_studio_client/api/models/{v1alpha_update_dashboard_response.py → v1_delete_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_document_response.py → v1_delete_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_evaluator_response.py → v1_delete_evaluator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_leaderboard_request.py → v1_delete_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_model_response.py → v1_delete_model_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_test_case_response.py → v1_delete_test_case_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_test_response.py → v1_delete_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_document.py → v1_document.py} +5 -5
- eval_studio_client/api/models/{v1alpha_evaluation_test.py → v1_evaluation_test.py} +10 -10
- eval_studio_client/api/models/{v1alpha_evaluator.py → v1_evaluator.py} +14 -10
- eval_studio_client/api/models/{v1alpha_evaluator_param_type.py → v1_evaluator_param_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_evaluator_parameter.py → v1_evaluator_parameter.py} +7 -7
- eval_studio_client/api/models/{v1alpha_evaluator_view.py → v1_evaluator_view.py} +3 -3
- eval_studio_client/api/models/{v1alpha_create_leaderboard_response.py → v1_finalize_operation_response.py} +8 -8
- 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
- eval_studio_client/api/models/{v1alpha_create_test_lab_response.py → v1_find_test_lab_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_finalize_operation_response.py → v1_generate_test_cases_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_dashboard_response.py → v1_get_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_document_response.py → v1_get_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_evaluator_response.py → v1_get_evaluator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_info_response.py → v1_get_info_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_leaderboard_response.py → v1_get_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_model_response.py → v1_get_model_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_operation_progress_by_parent_response.py → v1_get_operation_progress_by_parent_response.py} +8 -8
- eval_studio_client/api/models/v1_get_operation_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_get_perturbator_response.py → v1_get_perturbator_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_test_case_response.py → v1_get_test_case_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_get_test_class_response.py → v1_get_test_class_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_update_test_response.py → v1_get_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_import_evaluation_request.py → v1_import_evaluation_request.py} +8 -8
- eval_studio_client/api/models/{v1alpha_import_leaderboard_request.py → v1_import_leaderboard_request.py} +7 -7
- eval_studio_client/api/models/v1_import_leaderboard_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_info.py → v1_info.py} +5 -5
- eval_studio_client/api/models/{v1alpha_insight.py → v1_insight.py} +4 -4
- eval_studio_client/api/models/{v1alpha_leaderboard.py → v1_leaderboard.py} +15 -15
- eval_studio_client/api/models/{v1alpha_leaderboard_status.py → v1_leaderboard_status.py} +3 -3
- eval_studio_client/api/models/{v1alpha_leaderboard_type.py → v1_leaderboard_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_leaderboard_view.py → v1_leaderboard_view.py} +3 -3
- eval_studio_client/api/models/{v1alpha_list_base_models_response.py → v1_list_base_models_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_batch_delete_dashboards_response.py → v1_list_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_documents_response.py → v1_list_documents_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_evaluators_response.py → v1_list_evaluators_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_leaderboards_response.py → v1_list_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_llm_models_response.py → v1_list_llm_models_response.py} +5 -5
- eval_studio_client/api/models/{v1alpha_list_model_collections_response.py → v1_list_model_collections_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_models_response.py → v1_list_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_most_recent_dashboards_response.py → v1_list_most_recent_dashboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_most_recent_leaderboards_response.py → v1_list_most_recent_leaderboards_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_most_recent_models_response.py → v1_list_most_recent_models_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_import_tests_response.py → v1_list_most_recent_tests_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_get_operations_response.py → v1_list_operations_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_perturbators_response.py → v1_list_perturbators_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_rag_collections_response.py → v1_list_rag_collections_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_batch_delete_test_cases_response.py → v1_list_test_cases_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_list_test_classes_response.py → v1_list_test_classes_response.py} +8 -8
- eval_studio_client/api/models/v1_list_tests_response.py +95 -0
- eval_studio_client/api/models/{v1alpha_model.py → v1_model.py} +7 -7
- eval_studio_client/api/models/{v1alpha_model_type.py → v1_model_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_operation.py → v1_operation.py} +4 -4
- eval_studio_client/api/models/{v1alpha_operation_progress.py → v1_operation_progress.py} +5 -5
- eval_studio_client/api/models/{v1alpha_delete_test_response.py → v1_perturb_test_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_perturbator.py → v1_perturbator.py} +5 -5
- eval_studio_client/api/models/{v1alpha_perturbator_configuration.py → v1_perturbator_configuration.py} +6 -6
- eval_studio_client/api/models/{v1alpha_perturbator_intensity.py → v1_perturbator_intensity.py} +4 -4
- eval_studio_client/api/models/{v1alpha_problem_and_action.py → v1_problem_and_action.py} +5 -5
- eval_studio_client/api/models/{v1alpha_test.py → v1_test.py} +5 -5
- eval_studio_client/api/models/{v1alpha_test_case.py → v1_test_case.py} +5 -5
- eval_studio_client/api/models/{v1alpha_test_case_relationship.py → v1_test_case_relationship.py} +5 -5
- eval_studio_client/api/models/v1_test_cases_generator.py +50 -0
- eval_studio_client/api/models/{v1alpha_test_class.py → v1_test_class.py} +7 -7
- eval_studio_client/api/models/{v1alpha_test_class_type.py → v1_test_class_type.py} +3 -3
- eval_studio_client/api/models/{v1alpha_test_lab.py → v1_test_lab.py} +5 -5
- eval_studio_client/api/models/{v1alpha_delete_dashboard_response.py → v1_update_dashboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_create_document_response.py → v1_update_document_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_leaderboard_response.py → v1_update_leaderboard_response.py} +8 -8
- eval_studio_client/api/models/{v1alpha_delete_model_response.py → v1_update_model_response.py} +8 -8
- eval_studio_client/api/models/v1_update_operation_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_update_test_case_response.py → v1_update_test_case_response.py} +8 -8
- eval_studio_client/api/models/v1_update_test_response.py +91 -0
- eval_studio_client/api/models/{v1alpha_who_am_i_response.py → v1_who_am_i_response.py} +5 -5
- eval_studio_client/api/rest.py +1 -1
- eval_studio_client/api/test/test_dashboard_service_api.py +1 -1
- eval_studio_client/api/test/test_document_service_api.py +1 -1
- eval_studio_client/api/test/test_evaluation_service_api.py +1 -1
- eval_studio_client/api/test/test_evaluator_service_api.py +1 -1
- eval_studio_client/api/test/test_info_service_api.py +1 -1
- eval_studio_client/api/test/test_leaderboard_service_api.py +1 -1
- eval_studio_client/api/test/test_model_service_api.py +1 -1
- eval_studio_client/api/test/test_operation_progress_service_api.py +1 -1
- eval_studio_client/api/test/test_operation_service_api.py +1 -1
- eval_studio_client/api/test/test_perturbation_service_api.py +1 -1
- eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py +4 -4
- eval_studio_client/api/test/test_perturbator_service_api.py +1 -1
- eval_studio_client/api/test/test_prompt_generation_service_api.py +37 -0
- eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py +75 -0
- eval_studio_client/api/test/test_protobuf_any.py +1 -1
- eval_studio_client/api/test/test_required_the_dashboard_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_document_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_leaderboard_to_update.py +3 -3
- eval_studio_client/api/test/test_required_the_model_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_operation_to_finalize.py +1 -1
- eval_studio_client/api/test/test_required_the_operation_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_test_case_to_update.py +1 -1
- eval_studio_client/api/test/test_required_the_test_to_update.py +1 -1
- eval_studio_client/api/test/test_rpc_status.py +1 -1
- eval_studio_client/api/test/test_test_case_service_api.py +1 -1
- eval_studio_client/api/test/test_test_case_service_batch_delete_test_cases_request.py +1 -1
- eval_studio_client/api/test/test_test_class_service_api.py +1 -1
- eval_studio_client/api/test/test_test_lab_service_api.py +1 -1
- eval_studio_client/api/test/test_test_service_api.py +7 -1
- eval_studio_client/api/test/test_test_service_generate_test_cases_request.py +57 -0
- eval_studio_client/api/test/test_test_service_perturb_test_request.py +2 -2
- eval_studio_client/api/test/{test_v1alpha_batch_create_leaderboards_request.py → test_v1_batch_create_leaderboards_request.py} +16 -16
- eval_studio_client/api/test/{test_v1alpha_create_leaderboard_response.py → test_v1_batch_create_leaderboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_models_request.py → test_v1_batch_delete_dashboards_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_dashboards_response.py → test_v1_batch_delete_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_documents_request.py → test_v1_batch_delete_documents_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_documents_response.py → test_v1_batch_delete_documents_response.py} +13 -13
- eval_studio_client/api/test/test_v1_batch_delete_evaluators_request.py +53 -0
- eval_studio_client/api/test/{test_v1alpha_batch_delete_evaluators_response.py → test_v1_batch_delete_evaluators_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_batch_delete_leaderboards_request.py → test_v1_batch_delete_leaderboards_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_leaderboards_response.py → test_v1_batch_delete_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/test_v1_batch_delete_models_request.py +53 -0
- eval_studio_client/api/test/{test_v1alpha_batch_get_models_response.py → test_v1_batch_delete_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_test_cases_response.py → test_v1_batch_delete_test_cases_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_tests_request.py → test_v1_batch_delete_tests_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_get_tests_response.py → test_v1_batch_delete_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_dashboards_response.py → test_v1_batch_get_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_documents_response.py → test_v1_batch_get_documents_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_leaderboards_response.py → test_v1_batch_get_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_list_models_response.py → test_v1_batch_get_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_operations_response.py → test_v1_batch_get_operations_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_tests_response.py → test_v1_batch_get_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_import_leaderboard_request.py → test_v1_batch_import_leaderboard_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_import_leaderboard_response.py → test_v1_batch_import_leaderboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_import_tests_request.py → test_v1_batch_import_tests_request.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_import_tests_response.py → test_v1_batch_import_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_check_base_models_response.py → test_v1_check_base_models_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_collection_info.py → test_v1_collection_info.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_get_dashboard_response.py → test_v1_create_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_document_response.py → test_v1_create_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_evaluation_request.py → test_v1_create_evaluation_request.py} +16 -16
- eval_studio_client/api/test/{test_v1alpha_get_evaluator_response.py → test_v1_create_evaluator_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_get_leaderboard_response.py → test_v1_create_leaderboard_request.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_update_operation_response.py → test_v1_create_leaderboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_import_leaderboard_response.py → test_v1_create_leaderboard_without_cache_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_model_response.py → test_v1_create_model_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_perturbation_response.py → test_v1_create_perturbation_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_get_test_case_response.py → test_v1_create_test_case_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_find_test_lab_response.py → test_v1_create_test_lab_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_test_response.py → test_v1_create_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_dashboard.py → test_v1_dashboard.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_evaluator_view.py → test_v1_dashboard_status.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_update_dashboard_response.py → test_v1_delete_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_update_document_response.py → test_v1_delete_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_evaluator_response.py → test_v1_delete_evaluator_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_create_leaderboard_request.py → test_v1_delete_leaderboard_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_delete_model_response.py → test_v1_delete_model_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_test_case_response.py → test_v1_delete_test_case_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_test_response.py → test_v1_delete_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_document.py → test_v1_document.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_evaluation_test.py → test_v1_evaluation_test.py} +14 -14
- eval_studio_client/api/test/{test_v1alpha_evaluator.py → test_v1_evaluator.py} +14 -13
- eval_studio_client/api/test/{test_v1alpha_test_class_type.py → test_v1_evaluator_param_type.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_evaluator_parameter.py → test_v1_evaluator_parameter.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_model_type.py → test_v1_evaluator_view.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_get_operation_response.py → test_v1_finalize_operation_response.py} +13 -13
- 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
- eval_studio_client/api/test/{test_v1alpha_create_test_lab_response.py → test_v1_find_test_lab_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_finalize_operation_response.py → test_v1_generate_test_cases_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_dashboard_response.py → test_v1_get_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_document_response.py → test_v1_get_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_evaluator_response.py → test_v1_get_evaluator_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_get_info_response.py → test_v1_get_info_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_leaderboard_response.py → test_v1_get_leaderboard_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_create_model_response.py → test_v1_get_model_response.py} +13 -13
- 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
- eval_studio_client/api/test/test_v1_get_operation_response.py +71 -0
- eval_studio_client/api/test/{test_v1alpha_get_perturbator_response.py → test_v1_get_perturbator_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_test_case_response.py → test_v1_get_test_case_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_get_test_class_response.py → test_v1_get_test_class_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_delete_test_response.py → test_v1_get_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_import_evaluation_request.py → test_v1_import_evaluation_request.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_import_leaderboard_request.py → test_v1_import_leaderboard_request.py} +12 -12
- eval_studio_client/api/test/test_v1_import_leaderboard_response.py +71 -0
- eval_studio_client/api/test/{test_v1alpha_info.py → test_v1_info.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_insight.py → test_v1_insight.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_leaderboard.py → test_v1_leaderboard.py} +14 -14
- eval_studio_client/api/test/{test_v1alpha_dashboard_status.py → test_v1_leaderboard_status.py} +7 -7
- eval_studio_client/api/test/test_v1_leaderboard_type.py +33 -0
- eval_studio_client/api/test/test_v1_leaderboard_view.py +33 -0
- eval_studio_client/api/test/{test_v1alpha_list_base_models_response.py → test_v1_list_base_models_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_batch_delete_dashboards_response.py → test_v1_list_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_documents_response.py → test_v1_list_documents_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_evaluators_response.py → test_v1_list_evaluators_response.py} +15 -14
- eval_studio_client/api/test/{test_v1alpha_list_leaderboards_response.py → test_v1_list_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_list_llm_models_response.py → test_v1_list_llm_models_response.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_list_rag_collections_response.py → test_v1_list_model_collections_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_models_response.py → test_v1_list_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_most_recent_dashboards_response.py → test_v1_list_most_recent_dashboards_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_most_recent_leaderboards_response.py → test_v1_list_most_recent_leaderboards_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_list_most_recent_models_response.py → test_v1_list_most_recent_models_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_delete_tests_response.py → test_v1_list_most_recent_tests_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_batch_get_operations_response.py → test_v1_list_operations_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_perturbators_response.py → test_v1_list_perturbators_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_model_collections_response.py → test_v1_list_rag_collections_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_test_cases_response.py → test_v1_list_test_cases_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_list_test_classes_response.py → test_v1_list_test_classes_response.py} +13 -13
- eval_studio_client/api/test/test_v1_list_tests_response.py +69 -0
- eval_studio_client/api/test/{test_v1alpha_model.py → test_v1_model.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_leaderboard_view.py → test_v1_model_type.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_operation.py → test_v1_operation.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_operation_progress.py → test_v1_operation_progress.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_update_test_response.py → test_v1_perturb_test_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_perturbator.py → test_v1_perturbator.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_perturbator_configuration.py → test_v1_perturbator_configuration.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_leaderboard_type.py → test_v1_perturbator_intensity.py} +7 -7
- eval_studio_client/api/test/{test_v1alpha_problem_and_action.py → test_v1_problem_and_action.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_test.py → test_v1_test.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_test_case.py → test_v1_test_case.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_test_case_relationship.py → test_v1_test_case_relationship.py} +12 -12
- eval_studio_client/api/test/test_v1_test_cases_generator.py +33 -0
- eval_studio_client/api/test/{test_v1alpha_test_class.py → test_v1_test_class.py} +12 -12
- eval_studio_client/api/test/test_v1_test_class_type.py +33 -0
- eval_studio_client/api/test/{test_v1alpha_test_lab.py → test_v1_test_lab.py} +12 -12
- eval_studio_client/api/test/{test_v1alpha_delete_dashboard_response.py → test_v1_update_dashboard_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_create_document_response.py → test_v1_update_document_response.py} +13 -13
- eval_studio_client/api/test/{test_v1alpha_update_leaderboard_response.py → test_v1_update_leaderboard_response.py} +15 -15
- eval_studio_client/api/test/{test_v1alpha_update_model_response.py → test_v1_update_model_response.py} +13 -13
- eval_studio_client/api/test/test_v1_update_operation_response.py +71 -0
- eval_studio_client/api/test/{test_v1alpha_update_test_case_response.py → test_v1_update_test_case_response.py} +13 -13
- eval_studio_client/api/test/test_v1_update_test_response.py +67 -0
- eval_studio_client/api/test/{test_v1alpha_who_am_i_response.py → test_v1_who_am_i_response.py} +12 -12
- eval_studio_client/api/test/test_who_am_i_service_api.py +1 -1
- eval_studio_client/dashboards.py +23 -1
- eval_studio_client/documents.py +3 -3
- eval_studio_client/evaluators.py +1 -1
- eval_studio_client/gen/openapiv2/eval_studio.swagger.json +568 -387
- eval_studio_client/insights.py +1 -1
- eval_studio_client/leaderboards.py +11 -13
- eval_studio_client/models.py +61 -29
- eval_studio_client/perturbators.py +5 -7
- eval_studio_client/problems.py +1 -1
- eval_studio_client/test_labs.py +2 -2
- eval_studio_client/tests.py +225 -8
- {eval_studio_client-0.8.0a1.dist-info → eval_studio_client-0.8.2.dist-info}/METADATA +2 -2
- eval_studio_client-0.8.2.dist-info/RECORD +485 -0
- {eval_studio_client-0.8.0a1.dist-info → eval_studio_client-0.8.2.dist-info}/WHEEL +1 -1
- eval_studio_client/api/docs/V1alphaBatchCreateLeaderboardsRequest.md +0 -31
- eval_studio_client/api/docs/V1alphaBatchCreateLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDashboardsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDocumentsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteDocumentsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteEvaluatorsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteEvaluatorsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteLeaderboardsRequest.md +0 -30
- eval_studio_client/api/docs/V1alphaBatchDeleteLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteModelsRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteTestCasesResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchDeleteTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetDocumentsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetOperationsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchGetTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchImportLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaBatchImportTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCheckBaseModelsResponse.md +0 -30
- eval_studio_client/api/docs/V1alphaCreateDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateEvaluatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateLeaderboardRequest.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateLeaderboardWithoutCacheResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreatePerturbationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateTestLabResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaCreateTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteEvaluatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaDeleteTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaEvaluationTest.md +0 -32
- eval_studio_client/api/docs/V1alphaFinalizeOperationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaFindAllTestCasesByIDResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaFindTestLabResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetEvaluatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetInfoResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetOperationProgressByParentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetOperationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetPerturbatorResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetTestClassResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaGetTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaImportLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListBaseModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListDocumentsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListEvaluatorsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListLLMModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListLeaderboardsResponse.md +0 -30
- eval_studio_client/api/docs/V1alphaListModelCollectionsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentDashboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentLeaderboardsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentModelsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListMostRecentTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListOperationsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListPerturbatorsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListRAGCollectionsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListTestCasesResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListTestClassesResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaListTestsResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaPerturbTestResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaPerturbatorConfiguration.md +0 -32
- eval_studio_client/api/docs/V1alphaUpdateDashboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateDocumentResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateLeaderboardResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateModelResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateOperationResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateTestCaseResponse.md +0 -29
- eval_studio_client/api/docs/V1alphaUpdateTestResponse.md +0 -29
- eval_studio_client/api/models/v1alpha_batch_create_leaderboards_response.py +0 -91
- eval_studio_client/api/models/v1alpha_batch_import_leaderboard_response.py +0 -91
- eval_studio_client/api/models/v1alpha_create_leaderboard_without_cache_response.py +0 -91
- eval_studio_client/api/models/v1alpha_list_most_recent_tests_response.py +0 -95
- eval_studio_client/api/models/v1alpha_perturb_test_response.py +0 -91
- eval_studio_client/api/test/test_v1alpha_batch_create_leaderboards_response.py +0 -71
- eval_studio_client/api/test/test_v1alpha_batch_delete_dashboards_request.py +0 -53
- eval_studio_client/api/test/test_v1alpha_batch_delete_evaluators_request.py +0 -53
- eval_studio_client/api/test/test_v1alpha_create_leaderboard_without_cache_response.py +0 -71
- eval_studio_client/api/test/test_v1alpha_evaluator_param_type.py +0 -33
- eval_studio_client/api/test/test_v1alpha_leaderboard_status.py +0 -33
- eval_studio_client/api/test/test_v1alpha_list_most_recent_tests_response.py +0 -69
- eval_studio_client/api/test/test_v1alpha_perturb_test_response.py +0 -67
- eval_studio_client/api/test/test_v1alpha_perturbator_intensity.py +0 -33
- eval_studio_client-0.8.0a1.dist-info/RECORD +0 -470
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
ai/h2o/eval_studio/
|
|
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.
|
|
24
|
-
from eval_studio_client.api.models.
|
|
25
|
-
from eval_studio_client.api.models.
|
|
26
|
-
from eval_studio_client.api.models.
|
|
27
|
-
from eval_studio_client.api.models.
|
|
28
|
-
from eval_studio_client.api.models.
|
|
29
|
-
from eval_studio_client.api.models.
|
|
30
|
-
from eval_studio_client.api.models.
|
|
31
|
-
from eval_studio_client.api.models.
|
|
32
|
-
from eval_studio_client.api.models.
|
|
33
|
-
from eval_studio_client.api.models.
|
|
34
|
-
from eval_studio_client.api.models.
|
|
35
|
-
from eval_studio_client.api.models.
|
|
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:
|
|
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
|
-
) ->
|
|
71
|
+
) -> V1BatchDeleteModelsResponse:
|
|
72
72
|
"""model_service_batch_delete_models
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
:param body: (required)
|
|
76
|
-
:type body:
|
|
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': "
|
|
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:
|
|
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[
|
|
137
|
+
) -> ApiResponse[V1BatchDeleteModelsResponse]:
|
|
138
138
|
"""model_service_batch_delete_models
|
|
139
139
|
|
|
140
140
|
|
|
141
141
|
:param body: (required)
|
|
142
|
-
:type body:
|
|
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': "
|
|
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:
|
|
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:
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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[
|
|
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
|
-
) ->
|
|
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:
|
|
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': "
|
|
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[
|
|
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[
|
|
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:
|
|
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': "
|
|
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[
|
|
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:
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
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
|
-
) ->
|
|
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': "
|
|
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[
|
|
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': "
|
|
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': "
|
|
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='/
|
|
2900
|
+
resource_path='/v1/{model.name}',
|
|
2901
2901
|
path_params=_path_params,
|
|
2902
2902
|
query_params=_query_params,
|
|
2903
2903
|
header_params=_header_params,
|