eval-studio-client 0.8.0a2__py3-none-any.whl → 1.0.0__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 +50 -9
- 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 +16 -13
- eval_studio_client/models.py +117 -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 +222 -8
- eval_studio_client/utils.py +26 -0
- {eval_studio_client-0.8.0a2.dist-info → eval_studio_client-1.0.0.dist-info}/METADATA +2 -2
- eval_studio_client-1.0.0.dist-info/RECORD +486 -0
- {eval_studio_client-0.8.0a2.dist-info → eval_studio_client-1.0.0.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.0a2.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,16 +20,16 @@ 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_dashboard_to_update import RequiredTheDashboardToUpdate
|
|
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.
|
|
23
|
+
from eval_studio_client.api.models.v1_batch_delete_dashboards_request import V1BatchDeleteDashboardsRequest
|
|
24
|
+
from eval_studio_client.api.models.v1_batch_delete_dashboards_response import V1BatchDeleteDashboardsResponse
|
|
25
|
+
from eval_studio_client.api.models.v1_batch_get_dashboards_response import V1BatchGetDashboardsResponse
|
|
26
|
+
from eval_studio_client.api.models.v1_create_dashboard_response import V1CreateDashboardResponse
|
|
27
|
+
from eval_studio_client.api.models.v1_dashboard import V1Dashboard
|
|
28
|
+
from eval_studio_client.api.models.v1_delete_dashboard_response import V1DeleteDashboardResponse
|
|
29
|
+
from eval_studio_client.api.models.v1_get_dashboard_response import V1GetDashboardResponse
|
|
30
|
+
from eval_studio_client.api.models.v1_list_dashboards_response import V1ListDashboardsResponse
|
|
31
|
+
from eval_studio_client.api.models.v1_list_most_recent_dashboards_response import V1ListMostRecentDashboardsResponse
|
|
32
|
+
from eval_studio_client.api.models.v1_update_dashboard_response import V1UpdateDashboardResponse
|
|
33
33
|
|
|
34
34
|
from eval_studio_client.api.api_client import ApiClient, RequestSerialized
|
|
35
35
|
from eval_studio_client.api.api_response import ApiResponse
|
|
@@ -52,7 +52,7 @@ class DashboardServiceApi:
|
|
|
52
52
|
@validate_call
|
|
53
53
|
def dashboard_service_batch_delete_dashboards(
|
|
54
54
|
self,
|
|
55
|
-
body:
|
|
55
|
+
body: V1BatchDeleteDashboardsRequest,
|
|
56
56
|
_request_timeout: Union[
|
|
57
57
|
None,
|
|
58
58
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -65,12 +65,12 @@ class DashboardServiceApi:
|
|
|
65
65
|
_content_type: Optional[StrictStr] = None,
|
|
66
66
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
67
67
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
68
|
-
) ->
|
|
68
|
+
) -> V1BatchDeleteDashboardsResponse:
|
|
69
69
|
"""dashboard_service_batch_delete_dashboards
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
:param body: (required)
|
|
73
|
-
:type body:
|
|
73
|
+
:type body: V1BatchDeleteDashboardsRequest
|
|
74
74
|
:param _request_timeout: timeout setting for this request. If one
|
|
75
75
|
number provided, it will be total request
|
|
76
76
|
timeout. It can also be a pair (tuple) of
|
|
@@ -102,7 +102,7 @@ class DashboardServiceApi:
|
|
|
102
102
|
)
|
|
103
103
|
|
|
104
104
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
105
|
-
'200': "
|
|
105
|
+
'200': "V1BatchDeleteDashboardsResponse",
|
|
106
106
|
}
|
|
107
107
|
response_data = self.api_client.call_api(
|
|
108
108
|
*_param,
|
|
@@ -118,7 +118,7 @@ class DashboardServiceApi:
|
|
|
118
118
|
@validate_call
|
|
119
119
|
def dashboard_service_batch_delete_dashboards_with_http_info(
|
|
120
120
|
self,
|
|
121
|
-
body:
|
|
121
|
+
body: V1BatchDeleteDashboardsRequest,
|
|
122
122
|
_request_timeout: Union[
|
|
123
123
|
None,
|
|
124
124
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -131,12 +131,12 @@ class DashboardServiceApi:
|
|
|
131
131
|
_content_type: Optional[StrictStr] = None,
|
|
132
132
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
133
133
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
134
|
-
) -> ApiResponse[
|
|
134
|
+
) -> ApiResponse[V1BatchDeleteDashboardsResponse]:
|
|
135
135
|
"""dashboard_service_batch_delete_dashboards
|
|
136
136
|
|
|
137
137
|
|
|
138
138
|
:param body: (required)
|
|
139
|
-
:type body:
|
|
139
|
+
:type body: V1BatchDeleteDashboardsRequest
|
|
140
140
|
:param _request_timeout: timeout setting for this request. If one
|
|
141
141
|
number provided, it will be total request
|
|
142
142
|
timeout. It can also be a pair (tuple) of
|
|
@@ -168,7 +168,7 @@ class DashboardServiceApi:
|
|
|
168
168
|
)
|
|
169
169
|
|
|
170
170
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
171
|
-
'200': "
|
|
171
|
+
'200': "V1BatchDeleteDashboardsResponse",
|
|
172
172
|
}
|
|
173
173
|
response_data = self.api_client.call_api(
|
|
174
174
|
*_param,
|
|
@@ -184,7 +184,7 @@ class DashboardServiceApi:
|
|
|
184
184
|
@validate_call
|
|
185
185
|
def dashboard_service_batch_delete_dashboards_without_preload_content(
|
|
186
186
|
self,
|
|
187
|
-
body:
|
|
187
|
+
body: V1BatchDeleteDashboardsRequest,
|
|
188
188
|
_request_timeout: Union[
|
|
189
189
|
None,
|
|
190
190
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -202,7 +202,7 @@ class DashboardServiceApi:
|
|
|
202
202
|
|
|
203
203
|
|
|
204
204
|
:param body: (required)
|
|
205
|
-
:type body:
|
|
205
|
+
:type body: V1BatchDeleteDashboardsRequest
|
|
206
206
|
:param _request_timeout: timeout setting for this request. If one
|
|
207
207
|
number provided, it will be total request
|
|
208
208
|
timeout. It can also be a pair (tuple) of
|
|
@@ -234,7 +234,7 @@ class DashboardServiceApi:
|
|
|
234
234
|
)
|
|
235
235
|
|
|
236
236
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
237
|
-
'200': "
|
|
237
|
+
'200': "V1BatchDeleteDashboardsResponse",
|
|
238
238
|
}
|
|
239
239
|
response_data = self.api_client.call_api(
|
|
240
240
|
*_param,
|
|
@@ -300,7 +300,7 @@ class DashboardServiceApi:
|
|
|
300
300
|
|
|
301
301
|
return self.api_client.param_serialize(
|
|
302
302
|
method='POST',
|
|
303
|
-
resource_path='/
|
|
303
|
+
resource_path='/v1/dashboards:batchDelete',
|
|
304
304
|
path_params=_path_params,
|
|
305
305
|
query_params=_query_params,
|
|
306
306
|
header_params=_header_params,
|
|
@@ -332,7 +332,7 @@ class DashboardServiceApi:
|
|
|
332
332
|
_content_type: Optional[StrictStr] = None,
|
|
333
333
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
334
334
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
335
|
-
) ->
|
|
335
|
+
) -> V1BatchGetDashboardsResponse:
|
|
336
336
|
"""dashboard_service_batch_get_dashboards
|
|
337
337
|
|
|
338
338
|
|
|
@@ -369,7 +369,7 @@ class DashboardServiceApi:
|
|
|
369
369
|
)
|
|
370
370
|
|
|
371
371
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
372
|
-
'200': "
|
|
372
|
+
'200': "V1BatchGetDashboardsResponse",
|
|
373
373
|
}
|
|
374
374
|
response_data = self.api_client.call_api(
|
|
375
375
|
*_param,
|
|
@@ -398,7 +398,7 @@ class DashboardServiceApi:
|
|
|
398
398
|
_content_type: Optional[StrictStr] = None,
|
|
399
399
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
400
400
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
401
|
-
) -> ApiResponse[
|
|
401
|
+
) -> ApiResponse[V1BatchGetDashboardsResponse]:
|
|
402
402
|
"""dashboard_service_batch_get_dashboards
|
|
403
403
|
|
|
404
404
|
|
|
@@ -435,7 +435,7 @@ class DashboardServiceApi:
|
|
|
435
435
|
)
|
|
436
436
|
|
|
437
437
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
438
|
-
'200': "
|
|
438
|
+
'200': "V1BatchGetDashboardsResponse",
|
|
439
439
|
}
|
|
440
440
|
response_data = self.api_client.call_api(
|
|
441
441
|
*_param,
|
|
@@ -501,7 +501,7 @@ class DashboardServiceApi:
|
|
|
501
501
|
)
|
|
502
502
|
|
|
503
503
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
504
|
-
'200': "
|
|
504
|
+
'200': "V1BatchGetDashboardsResponse",
|
|
505
505
|
}
|
|
506
506
|
response_data = self.api_client.call_api(
|
|
507
507
|
*_param,
|
|
@@ -557,7 +557,7 @@ class DashboardServiceApi:
|
|
|
557
557
|
|
|
558
558
|
return self.api_client.param_serialize(
|
|
559
559
|
method='GET',
|
|
560
|
-
resource_path='/
|
|
560
|
+
resource_path='/v1/dashboards:batchGet',
|
|
561
561
|
path_params=_path_params,
|
|
562
562
|
query_params=_query_params,
|
|
563
563
|
header_params=_header_params,
|
|
@@ -576,7 +576,7 @@ class DashboardServiceApi:
|
|
|
576
576
|
@validate_call
|
|
577
577
|
def dashboard_service_create_dashboard(
|
|
578
578
|
self,
|
|
579
|
-
dashboard: Annotated[
|
|
579
|
+
dashboard: Annotated[V1Dashboard, Field(description="Required. The Dashboard to create.")],
|
|
580
580
|
_request_timeout: Union[
|
|
581
581
|
None,
|
|
582
582
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -589,12 +589,12 @@ class DashboardServiceApi:
|
|
|
589
589
|
_content_type: Optional[StrictStr] = None,
|
|
590
590
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
591
591
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
592
|
-
) ->
|
|
592
|
+
) -> V1CreateDashboardResponse:
|
|
593
593
|
"""dashboard_service_create_dashboard
|
|
594
594
|
|
|
595
595
|
|
|
596
596
|
:param dashboard: Required. The Dashboard to create. (required)
|
|
597
|
-
:type dashboard:
|
|
597
|
+
:type dashboard: V1Dashboard
|
|
598
598
|
:param _request_timeout: timeout setting for this request. If one
|
|
599
599
|
number provided, it will be total request
|
|
600
600
|
timeout. It can also be a pair (tuple) of
|
|
@@ -626,7 +626,7 @@ class DashboardServiceApi:
|
|
|
626
626
|
)
|
|
627
627
|
|
|
628
628
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
629
|
-
'200': "
|
|
629
|
+
'200': "V1CreateDashboardResponse",
|
|
630
630
|
}
|
|
631
631
|
response_data = self.api_client.call_api(
|
|
632
632
|
*_param,
|
|
@@ -642,7 +642,7 @@ class DashboardServiceApi:
|
|
|
642
642
|
@validate_call
|
|
643
643
|
def dashboard_service_create_dashboard_with_http_info(
|
|
644
644
|
self,
|
|
645
|
-
dashboard: Annotated[
|
|
645
|
+
dashboard: Annotated[V1Dashboard, Field(description="Required. The Dashboard to create.")],
|
|
646
646
|
_request_timeout: Union[
|
|
647
647
|
None,
|
|
648
648
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -655,12 +655,12 @@ class DashboardServiceApi:
|
|
|
655
655
|
_content_type: Optional[StrictStr] = None,
|
|
656
656
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
657
657
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
658
|
-
) -> ApiResponse[
|
|
658
|
+
) -> ApiResponse[V1CreateDashboardResponse]:
|
|
659
659
|
"""dashboard_service_create_dashboard
|
|
660
660
|
|
|
661
661
|
|
|
662
662
|
:param dashboard: Required. The Dashboard to create. (required)
|
|
663
|
-
:type dashboard:
|
|
663
|
+
:type dashboard: V1Dashboard
|
|
664
664
|
:param _request_timeout: timeout setting for this request. If one
|
|
665
665
|
number provided, it will be total request
|
|
666
666
|
timeout. It can also be a pair (tuple) of
|
|
@@ -692,7 +692,7 @@ class DashboardServiceApi:
|
|
|
692
692
|
)
|
|
693
693
|
|
|
694
694
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
695
|
-
'200': "
|
|
695
|
+
'200': "V1CreateDashboardResponse",
|
|
696
696
|
}
|
|
697
697
|
response_data = self.api_client.call_api(
|
|
698
698
|
*_param,
|
|
@@ -708,7 +708,7 @@ class DashboardServiceApi:
|
|
|
708
708
|
@validate_call
|
|
709
709
|
def dashboard_service_create_dashboard_without_preload_content(
|
|
710
710
|
self,
|
|
711
|
-
dashboard: Annotated[
|
|
711
|
+
dashboard: Annotated[V1Dashboard, Field(description="Required. The Dashboard to create.")],
|
|
712
712
|
_request_timeout: Union[
|
|
713
713
|
None,
|
|
714
714
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -726,7 +726,7 @@ class DashboardServiceApi:
|
|
|
726
726
|
|
|
727
727
|
|
|
728
728
|
:param dashboard: Required. The Dashboard to create. (required)
|
|
729
|
-
:type dashboard:
|
|
729
|
+
:type dashboard: V1Dashboard
|
|
730
730
|
:param _request_timeout: timeout setting for this request. If one
|
|
731
731
|
number provided, it will be total request
|
|
732
732
|
timeout. It can also be a pair (tuple) of
|
|
@@ -758,7 +758,7 @@ class DashboardServiceApi:
|
|
|
758
758
|
)
|
|
759
759
|
|
|
760
760
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
761
|
-
'200': "
|
|
761
|
+
'200': "V1CreateDashboardResponse",
|
|
762
762
|
}
|
|
763
763
|
response_data = self.api_client.call_api(
|
|
764
764
|
*_param,
|
|
@@ -824,7 +824,7 @@ class DashboardServiceApi:
|
|
|
824
824
|
|
|
825
825
|
return self.api_client.param_serialize(
|
|
826
826
|
method='POST',
|
|
827
|
-
resource_path='/
|
|
827
|
+
resource_path='/v1/dashboards',
|
|
828
828
|
path_params=_path_params,
|
|
829
829
|
query_params=_query_params,
|
|
830
830
|
header_params=_header_params,
|
|
@@ -856,7 +856,7 @@ class DashboardServiceApi:
|
|
|
856
856
|
_content_type: Optional[StrictStr] = None,
|
|
857
857
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
858
858
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
859
|
-
) ->
|
|
859
|
+
) -> V1DeleteDashboardResponse:
|
|
860
860
|
"""dashboard_service_delete_dashboard
|
|
861
861
|
|
|
862
862
|
|
|
@@ -893,7 +893,7 @@ class DashboardServiceApi:
|
|
|
893
893
|
)
|
|
894
894
|
|
|
895
895
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
896
|
-
'200': "
|
|
896
|
+
'200': "V1DeleteDashboardResponse",
|
|
897
897
|
}
|
|
898
898
|
response_data = self.api_client.call_api(
|
|
899
899
|
*_param,
|
|
@@ -922,7 +922,7 @@ class DashboardServiceApi:
|
|
|
922
922
|
_content_type: Optional[StrictStr] = None,
|
|
923
923
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
924
924
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
925
|
-
) -> ApiResponse[
|
|
925
|
+
) -> ApiResponse[V1DeleteDashboardResponse]:
|
|
926
926
|
"""dashboard_service_delete_dashboard
|
|
927
927
|
|
|
928
928
|
|
|
@@ -959,7 +959,7 @@ class DashboardServiceApi:
|
|
|
959
959
|
)
|
|
960
960
|
|
|
961
961
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
962
|
-
'200': "
|
|
962
|
+
'200': "V1DeleteDashboardResponse",
|
|
963
963
|
}
|
|
964
964
|
response_data = self.api_client.call_api(
|
|
965
965
|
*_param,
|
|
@@ -1025,7 +1025,7 @@ class DashboardServiceApi:
|
|
|
1025
1025
|
)
|
|
1026
1026
|
|
|
1027
1027
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1028
|
-
'200': "
|
|
1028
|
+
'200': "V1DeleteDashboardResponse",
|
|
1029
1029
|
}
|
|
1030
1030
|
response_data = self.api_client.call_api(
|
|
1031
1031
|
*_param,
|
|
@@ -1078,7 +1078,7 @@ class DashboardServiceApi:
|
|
|
1078
1078
|
|
|
1079
1079
|
return self.api_client.param_serialize(
|
|
1080
1080
|
method='DELETE',
|
|
1081
|
-
resource_path='/
|
|
1081
|
+
resource_path='/v1/{name}',
|
|
1082
1082
|
path_params=_path_params,
|
|
1083
1083
|
query_params=_query_params,
|
|
1084
1084
|
header_params=_header_params,
|
|
@@ -1110,7 +1110,7 @@ class DashboardServiceApi:
|
|
|
1110
1110
|
_content_type: Optional[StrictStr] = None,
|
|
1111
1111
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1112
1112
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1113
|
-
) ->
|
|
1113
|
+
) -> V1GetDashboardResponse:
|
|
1114
1114
|
"""dashboard_service_get_dashboard
|
|
1115
1115
|
|
|
1116
1116
|
|
|
@@ -1147,7 +1147,7 @@ class DashboardServiceApi:
|
|
|
1147
1147
|
)
|
|
1148
1148
|
|
|
1149
1149
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1150
|
-
'200': "
|
|
1150
|
+
'200': "V1GetDashboardResponse",
|
|
1151
1151
|
}
|
|
1152
1152
|
response_data = self.api_client.call_api(
|
|
1153
1153
|
*_param,
|
|
@@ -1176,7 +1176,7 @@ class DashboardServiceApi:
|
|
|
1176
1176
|
_content_type: Optional[StrictStr] = None,
|
|
1177
1177
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1178
1178
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1179
|
-
) -> ApiResponse[
|
|
1179
|
+
) -> ApiResponse[V1GetDashboardResponse]:
|
|
1180
1180
|
"""dashboard_service_get_dashboard
|
|
1181
1181
|
|
|
1182
1182
|
|
|
@@ -1213,7 +1213,7 @@ class DashboardServiceApi:
|
|
|
1213
1213
|
)
|
|
1214
1214
|
|
|
1215
1215
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1216
|
-
'200': "
|
|
1216
|
+
'200': "V1GetDashboardResponse",
|
|
1217
1217
|
}
|
|
1218
1218
|
response_data = self.api_client.call_api(
|
|
1219
1219
|
*_param,
|
|
@@ -1279,7 +1279,7 @@ class DashboardServiceApi:
|
|
|
1279
1279
|
)
|
|
1280
1280
|
|
|
1281
1281
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1282
|
-
'200': "
|
|
1282
|
+
'200': "V1GetDashboardResponse",
|
|
1283
1283
|
}
|
|
1284
1284
|
response_data = self.api_client.call_api(
|
|
1285
1285
|
*_param,
|
|
@@ -1332,7 +1332,7 @@ class DashboardServiceApi:
|
|
|
1332
1332
|
|
|
1333
1333
|
return self.api_client.param_serialize(
|
|
1334
1334
|
method='GET',
|
|
1335
|
-
resource_path='/
|
|
1335
|
+
resource_path='/v1/{name}',
|
|
1336
1336
|
path_params=_path_params,
|
|
1337
1337
|
query_params=_query_params,
|
|
1338
1338
|
header_params=_header_params,
|
|
@@ -1364,7 +1364,7 @@ class DashboardServiceApi:
|
|
|
1364
1364
|
_content_type: Optional[StrictStr] = None,
|
|
1365
1365
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1366
1366
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1367
|
-
) ->
|
|
1367
|
+
) -> V1ListDashboardsResponse:
|
|
1368
1368
|
"""dashboard_service_list_dashboards
|
|
1369
1369
|
|
|
1370
1370
|
|
|
@@ -1401,7 +1401,7 @@ class DashboardServiceApi:
|
|
|
1401
1401
|
)
|
|
1402
1402
|
|
|
1403
1403
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1404
|
-
'200': "
|
|
1404
|
+
'200': "V1ListDashboardsResponse",
|
|
1405
1405
|
}
|
|
1406
1406
|
response_data = self.api_client.call_api(
|
|
1407
1407
|
*_param,
|
|
@@ -1430,7 +1430,7 @@ class DashboardServiceApi:
|
|
|
1430
1430
|
_content_type: Optional[StrictStr] = None,
|
|
1431
1431
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1432
1432
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1433
|
-
) -> ApiResponse[
|
|
1433
|
+
) -> ApiResponse[V1ListDashboardsResponse]:
|
|
1434
1434
|
"""dashboard_service_list_dashboards
|
|
1435
1435
|
|
|
1436
1436
|
|
|
@@ -1467,7 +1467,7 @@ class DashboardServiceApi:
|
|
|
1467
1467
|
)
|
|
1468
1468
|
|
|
1469
1469
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1470
|
-
'200': "
|
|
1470
|
+
'200': "V1ListDashboardsResponse",
|
|
1471
1471
|
}
|
|
1472
1472
|
response_data = self.api_client.call_api(
|
|
1473
1473
|
*_param,
|
|
@@ -1533,7 +1533,7 @@ class DashboardServiceApi:
|
|
|
1533
1533
|
)
|
|
1534
1534
|
|
|
1535
1535
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1536
|
-
'200': "
|
|
1536
|
+
'200': "V1ListDashboardsResponse",
|
|
1537
1537
|
}
|
|
1538
1538
|
response_data = self.api_client.call_api(
|
|
1539
1539
|
*_param,
|
|
@@ -1588,7 +1588,7 @@ class DashboardServiceApi:
|
|
|
1588
1588
|
|
|
1589
1589
|
return self.api_client.param_serialize(
|
|
1590
1590
|
method='GET',
|
|
1591
|
-
resource_path='/
|
|
1591
|
+
resource_path='/v1/dashboards',
|
|
1592
1592
|
path_params=_path_params,
|
|
1593
1593
|
query_params=_query_params,
|
|
1594
1594
|
header_params=_header_params,
|
|
@@ -1620,7 +1620,7 @@ class DashboardServiceApi:
|
|
|
1620
1620
|
_content_type: Optional[StrictStr] = None,
|
|
1621
1621
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1622
1622
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1623
|
-
) ->
|
|
1623
|
+
) -> V1ListMostRecentDashboardsResponse:
|
|
1624
1624
|
"""dashboard_service_list_most_recent_dashboards
|
|
1625
1625
|
|
|
1626
1626
|
|
|
@@ -1657,7 +1657,7 @@ class DashboardServiceApi:
|
|
|
1657
1657
|
)
|
|
1658
1658
|
|
|
1659
1659
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1660
|
-
'200': "
|
|
1660
|
+
'200': "V1ListMostRecentDashboardsResponse",
|
|
1661
1661
|
}
|
|
1662
1662
|
response_data = self.api_client.call_api(
|
|
1663
1663
|
*_param,
|
|
@@ -1686,7 +1686,7 @@ class DashboardServiceApi:
|
|
|
1686
1686
|
_content_type: Optional[StrictStr] = None,
|
|
1687
1687
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1688
1688
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1689
|
-
) -> ApiResponse[
|
|
1689
|
+
) -> ApiResponse[V1ListMostRecentDashboardsResponse]:
|
|
1690
1690
|
"""dashboard_service_list_most_recent_dashboards
|
|
1691
1691
|
|
|
1692
1692
|
|
|
@@ -1723,7 +1723,7 @@ class DashboardServiceApi:
|
|
|
1723
1723
|
)
|
|
1724
1724
|
|
|
1725
1725
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1726
|
-
'200': "
|
|
1726
|
+
'200': "V1ListMostRecentDashboardsResponse",
|
|
1727
1727
|
}
|
|
1728
1728
|
response_data = self.api_client.call_api(
|
|
1729
1729
|
*_param,
|
|
@@ -1789,7 +1789,7 @@ class DashboardServiceApi:
|
|
|
1789
1789
|
)
|
|
1790
1790
|
|
|
1791
1791
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1792
|
-
'200': "
|
|
1792
|
+
'200': "V1ListMostRecentDashboardsResponse",
|
|
1793
1793
|
}
|
|
1794
1794
|
response_data = self.api_client.call_api(
|
|
1795
1795
|
*_param,
|
|
@@ -1844,7 +1844,7 @@ class DashboardServiceApi:
|
|
|
1844
1844
|
|
|
1845
1845
|
return self.api_client.param_serialize(
|
|
1846
1846
|
method='GET',
|
|
1847
|
-
resource_path='/
|
|
1847
|
+
resource_path='/v1/dashboards:mostRecent',
|
|
1848
1848
|
path_params=_path_params,
|
|
1849
1849
|
query_params=_query_params,
|
|
1850
1850
|
header_params=_header_params,
|
|
@@ -1877,7 +1877,7 @@ class DashboardServiceApi:
|
|
|
1877
1877
|
_content_type: Optional[StrictStr] = None,
|
|
1878
1878
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1879
1879
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1880
|
-
) ->
|
|
1880
|
+
) -> V1UpdateDashboardResponse:
|
|
1881
1881
|
"""dashboard_service_update_dashboard
|
|
1882
1882
|
|
|
1883
1883
|
|
|
@@ -1917,7 +1917,7 @@ class DashboardServiceApi:
|
|
|
1917
1917
|
)
|
|
1918
1918
|
|
|
1919
1919
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1920
|
-
'200': "
|
|
1920
|
+
'200': "V1UpdateDashboardResponse",
|
|
1921
1921
|
}
|
|
1922
1922
|
response_data = self.api_client.call_api(
|
|
1923
1923
|
*_param,
|
|
@@ -1947,7 +1947,7 @@ class DashboardServiceApi:
|
|
|
1947
1947
|
_content_type: Optional[StrictStr] = None,
|
|
1948
1948
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1949
1949
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1950
|
-
) -> ApiResponse[
|
|
1950
|
+
) -> ApiResponse[V1UpdateDashboardResponse]:
|
|
1951
1951
|
"""dashboard_service_update_dashboard
|
|
1952
1952
|
|
|
1953
1953
|
|
|
@@ -1987,7 +1987,7 @@ class DashboardServiceApi:
|
|
|
1987
1987
|
)
|
|
1988
1988
|
|
|
1989
1989
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1990
|
-
'200': "
|
|
1990
|
+
'200': "V1UpdateDashboardResponse",
|
|
1991
1991
|
}
|
|
1992
1992
|
response_data = self.api_client.call_api(
|
|
1993
1993
|
*_param,
|
|
@@ -2057,7 +2057,7 @@ class DashboardServiceApi:
|
|
|
2057
2057
|
)
|
|
2058
2058
|
|
|
2059
2059
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2060
|
-
'200': "
|
|
2060
|
+
'200': "V1UpdateDashboardResponse",
|
|
2061
2061
|
}
|
|
2062
2062
|
response_data = self.api_client.call_api(
|
|
2063
2063
|
*_param,
|
|
@@ -2126,7 +2126,7 @@ class DashboardServiceApi:
|
|
|
2126
2126
|
|
|
2127
2127
|
return self.api_client.param_serialize(
|
|
2128
2128
|
method='PATCH',
|
|
2129
|
-
resource_path='/
|
|
2129
|
+
resource_path='/v1/{dashboard.name}',
|
|
2130
2130
|
path_params=_path_params,
|
|
2131
2131
|
query_params=_query_params,
|
|
2132
2132
|
header_params=_header_params,
|