eval-studio-client 0.8.0a2__py3-none-any.whl → 1.0.0a1__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 +14 -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 +239 -8
- {eval_studio_client-0.8.0a2.dist-info → eval_studio_client-1.0.0a1.dist-info}/METADATA +2 -2
- eval_studio_client-1.0.0a1.dist-info/RECORD +485 -0
- {eval_studio_client-0.8.0a2.dist-info → eval_studio_client-1.0.0a1.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,23 +20,23 @@ 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_leaderboard_to_update import RequiredTheLeaderboardToUpdate
|
|
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.
|
|
36
|
-
from eval_studio_client.api.models.
|
|
37
|
-
from eval_studio_client.api.models.
|
|
38
|
-
from eval_studio_client.api.models.
|
|
39
|
-
from eval_studio_client.api.models.
|
|
23
|
+
from eval_studio_client.api.models.v1_batch_create_leaderboards_request import V1BatchCreateLeaderboardsRequest
|
|
24
|
+
from eval_studio_client.api.models.v1_batch_create_leaderboards_response import V1BatchCreateLeaderboardsResponse
|
|
25
|
+
from eval_studio_client.api.models.v1_batch_delete_leaderboards_request import V1BatchDeleteLeaderboardsRequest
|
|
26
|
+
from eval_studio_client.api.models.v1_batch_delete_leaderboards_response import V1BatchDeleteLeaderboardsResponse
|
|
27
|
+
from eval_studio_client.api.models.v1_batch_get_leaderboards_response import V1BatchGetLeaderboardsResponse
|
|
28
|
+
from eval_studio_client.api.models.v1_batch_import_leaderboard_request import V1BatchImportLeaderboardRequest
|
|
29
|
+
from eval_studio_client.api.models.v1_batch_import_leaderboard_response import V1BatchImportLeaderboardResponse
|
|
30
|
+
from eval_studio_client.api.models.v1_create_leaderboard_response import V1CreateLeaderboardResponse
|
|
31
|
+
from eval_studio_client.api.models.v1_create_leaderboard_without_cache_response import V1CreateLeaderboardWithoutCacheResponse
|
|
32
|
+
from eval_studio_client.api.models.v1_delete_leaderboard_response import V1DeleteLeaderboardResponse
|
|
33
|
+
from eval_studio_client.api.models.v1_get_leaderboard_response import V1GetLeaderboardResponse
|
|
34
|
+
from eval_studio_client.api.models.v1_import_leaderboard_request import V1ImportLeaderboardRequest
|
|
35
|
+
from eval_studio_client.api.models.v1_import_leaderboard_response import V1ImportLeaderboardResponse
|
|
36
|
+
from eval_studio_client.api.models.v1_leaderboard import V1Leaderboard
|
|
37
|
+
from eval_studio_client.api.models.v1_list_leaderboards_response import V1ListLeaderboardsResponse
|
|
38
|
+
from eval_studio_client.api.models.v1_list_most_recent_leaderboards_response import V1ListMostRecentLeaderboardsResponse
|
|
39
|
+
from eval_studio_client.api.models.v1_update_leaderboard_response import V1UpdateLeaderboardResponse
|
|
40
40
|
|
|
41
41
|
from eval_studio_client.api.api_client import ApiClient, RequestSerialized
|
|
42
42
|
from eval_studio_client.api.api_response import ApiResponse
|
|
@@ -59,7 +59,7 @@ class LeaderboardServiceApi:
|
|
|
59
59
|
@validate_call
|
|
60
60
|
def leaderboard_service_batch_create_leaderboards(
|
|
61
61
|
self,
|
|
62
|
-
body:
|
|
62
|
+
body: V1BatchCreateLeaderboardsRequest,
|
|
63
63
|
_request_timeout: Union[
|
|
64
64
|
None,
|
|
65
65
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -72,12 +72,12 @@ class LeaderboardServiceApi:
|
|
|
72
72
|
_content_type: Optional[StrictStr] = None,
|
|
73
73
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
74
74
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
75
|
-
) ->
|
|
75
|
+
) -> V1BatchCreateLeaderboardsResponse:
|
|
76
76
|
"""leaderboard_service_batch_create_leaderboards
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
:param body: (required)
|
|
80
|
-
:type body:
|
|
80
|
+
:type body: V1BatchCreateLeaderboardsRequest
|
|
81
81
|
:param _request_timeout: timeout setting for this request. If one
|
|
82
82
|
number provided, it will be total request
|
|
83
83
|
timeout. It can also be a pair (tuple) of
|
|
@@ -109,7 +109,7 @@ class LeaderboardServiceApi:
|
|
|
109
109
|
)
|
|
110
110
|
|
|
111
111
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
112
|
-
'200': "
|
|
112
|
+
'200': "V1BatchCreateLeaderboardsResponse",
|
|
113
113
|
}
|
|
114
114
|
response_data = self.api_client.call_api(
|
|
115
115
|
*_param,
|
|
@@ -125,7 +125,7 @@ class LeaderboardServiceApi:
|
|
|
125
125
|
@validate_call
|
|
126
126
|
def leaderboard_service_batch_create_leaderboards_with_http_info(
|
|
127
127
|
self,
|
|
128
|
-
body:
|
|
128
|
+
body: V1BatchCreateLeaderboardsRequest,
|
|
129
129
|
_request_timeout: Union[
|
|
130
130
|
None,
|
|
131
131
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -138,12 +138,12 @@ class LeaderboardServiceApi:
|
|
|
138
138
|
_content_type: Optional[StrictStr] = None,
|
|
139
139
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
140
140
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
141
|
-
) -> ApiResponse[
|
|
141
|
+
) -> ApiResponse[V1BatchCreateLeaderboardsResponse]:
|
|
142
142
|
"""leaderboard_service_batch_create_leaderboards
|
|
143
143
|
|
|
144
144
|
|
|
145
145
|
:param body: (required)
|
|
146
|
-
:type body:
|
|
146
|
+
:type body: V1BatchCreateLeaderboardsRequest
|
|
147
147
|
:param _request_timeout: timeout setting for this request. If one
|
|
148
148
|
number provided, it will be total request
|
|
149
149
|
timeout. It can also be a pair (tuple) of
|
|
@@ -175,7 +175,7 @@ class LeaderboardServiceApi:
|
|
|
175
175
|
)
|
|
176
176
|
|
|
177
177
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
178
|
-
'200': "
|
|
178
|
+
'200': "V1BatchCreateLeaderboardsResponse",
|
|
179
179
|
}
|
|
180
180
|
response_data = self.api_client.call_api(
|
|
181
181
|
*_param,
|
|
@@ -191,7 +191,7 @@ class LeaderboardServiceApi:
|
|
|
191
191
|
@validate_call
|
|
192
192
|
def leaderboard_service_batch_create_leaderboards_without_preload_content(
|
|
193
193
|
self,
|
|
194
|
-
body:
|
|
194
|
+
body: V1BatchCreateLeaderboardsRequest,
|
|
195
195
|
_request_timeout: Union[
|
|
196
196
|
None,
|
|
197
197
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -209,7 +209,7 @@ class LeaderboardServiceApi:
|
|
|
209
209
|
|
|
210
210
|
|
|
211
211
|
:param body: (required)
|
|
212
|
-
:type body:
|
|
212
|
+
:type body: V1BatchCreateLeaderboardsRequest
|
|
213
213
|
:param _request_timeout: timeout setting for this request. If one
|
|
214
214
|
number provided, it will be total request
|
|
215
215
|
timeout. It can also be a pair (tuple) of
|
|
@@ -241,7 +241,7 @@ class LeaderboardServiceApi:
|
|
|
241
241
|
)
|
|
242
242
|
|
|
243
243
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
244
|
-
'200': "
|
|
244
|
+
'200': "V1BatchCreateLeaderboardsResponse",
|
|
245
245
|
}
|
|
246
246
|
response_data = self.api_client.call_api(
|
|
247
247
|
*_param,
|
|
@@ -307,7 +307,7 @@ class LeaderboardServiceApi:
|
|
|
307
307
|
|
|
308
308
|
return self.api_client.param_serialize(
|
|
309
309
|
method='POST',
|
|
310
|
-
resource_path='/
|
|
310
|
+
resource_path='/v1/leaderboards:batchCreate',
|
|
311
311
|
path_params=_path_params,
|
|
312
312
|
query_params=_query_params,
|
|
313
313
|
header_params=_header_params,
|
|
@@ -326,7 +326,7 @@ class LeaderboardServiceApi:
|
|
|
326
326
|
@validate_call
|
|
327
327
|
def leaderboard_service_batch_delete_leaderboards(
|
|
328
328
|
self,
|
|
329
|
-
body:
|
|
329
|
+
body: V1BatchDeleteLeaderboardsRequest,
|
|
330
330
|
_request_timeout: Union[
|
|
331
331
|
None,
|
|
332
332
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -339,12 +339,12 @@ class LeaderboardServiceApi:
|
|
|
339
339
|
_content_type: Optional[StrictStr] = None,
|
|
340
340
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
341
341
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
342
|
-
) ->
|
|
342
|
+
) -> V1BatchDeleteLeaderboardsResponse:
|
|
343
343
|
"""leaderboard_service_batch_delete_leaderboards
|
|
344
344
|
|
|
345
345
|
|
|
346
346
|
:param body: (required)
|
|
347
|
-
:type body:
|
|
347
|
+
:type body: V1BatchDeleteLeaderboardsRequest
|
|
348
348
|
:param _request_timeout: timeout setting for this request. If one
|
|
349
349
|
number provided, it will be total request
|
|
350
350
|
timeout. It can also be a pair (tuple) of
|
|
@@ -376,7 +376,7 @@ class LeaderboardServiceApi:
|
|
|
376
376
|
)
|
|
377
377
|
|
|
378
378
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
379
|
-
'200': "
|
|
379
|
+
'200': "V1BatchDeleteLeaderboardsResponse",
|
|
380
380
|
}
|
|
381
381
|
response_data = self.api_client.call_api(
|
|
382
382
|
*_param,
|
|
@@ -392,7 +392,7 @@ class LeaderboardServiceApi:
|
|
|
392
392
|
@validate_call
|
|
393
393
|
def leaderboard_service_batch_delete_leaderboards_with_http_info(
|
|
394
394
|
self,
|
|
395
|
-
body:
|
|
395
|
+
body: V1BatchDeleteLeaderboardsRequest,
|
|
396
396
|
_request_timeout: Union[
|
|
397
397
|
None,
|
|
398
398
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -405,12 +405,12 @@ class LeaderboardServiceApi:
|
|
|
405
405
|
_content_type: Optional[StrictStr] = None,
|
|
406
406
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
407
407
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
408
|
-
) -> ApiResponse[
|
|
408
|
+
) -> ApiResponse[V1BatchDeleteLeaderboardsResponse]:
|
|
409
409
|
"""leaderboard_service_batch_delete_leaderboards
|
|
410
410
|
|
|
411
411
|
|
|
412
412
|
:param body: (required)
|
|
413
|
-
:type body:
|
|
413
|
+
:type body: V1BatchDeleteLeaderboardsRequest
|
|
414
414
|
:param _request_timeout: timeout setting for this request. If one
|
|
415
415
|
number provided, it will be total request
|
|
416
416
|
timeout. It can also be a pair (tuple) of
|
|
@@ -442,7 +442,7 @@ class LeaderboardServiceApi:
|
|
|
442
442
|
)
|
|
443
443
|
|
|
444
444
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
445
|
-
'200': "
|
|
445
|
+
'200': "V1BatchDeleteLeaderboardsResponse",
|
|
446
446
|
}
|
|
447
447
|
response_data = self.api_client.call_api(
|
|
448
448
|
*_param,
|
|
@@ -458,7 +458,7 @@ class LeaderboardServiceApi:
|
|
|
458
458
|
@validate_call
|
|
459
459
|
def leaderboard_service_batch_delete_leaderboards_without_preload_content(
|
|
460
460
|
self,
|
|
461
|
-
body:
|
|
461
|
+
body: V1BatchDeleteLeaderboardsRequest,
|
|
462
462
|
_request_timeout: Union[
|
|
463
463
|
None,
|
|
464
464
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -476,7 +476,7 @@ class LeaderboardServiceApi:
|
|
|
476
476
|
|
|
477
477
|
|
|
478
478
|
:param body: (required)
|
|
479
|
-
:type body:
|
|
479
|
+
:type body: V1BatchDeleteLeaderboardsRequest
|
|
480
480
|
:param _request_timeout: timeout setting for this request. If one
|
|
481
481
|
number provided, it will be total request
|
|
482
482
|
timeout. It can also be a pair (tuple) of
|
|
@@ -508,7 +508,7 @@ class LeaderboardServiceApi:
|
|
|
508
508
|
)
|
|
509
509
|
|
|
510
510
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
511
|
-
'200': "
|
|
511
|
+
'200': "V1BatchDeleteLeaderboardsResponse",
|
|
512
512
|
}
|
|
513
513
|
response_data = self.api_client.call_api(
|
|
514
514
|
*_param,
|
|
@@ -574,7 +574,7 @@ class LeaderboardServiceApi:
|
|
|
574
574
|
|
|
575
575
|
return self.api_client.param_serialize(
|
|
576
576
|
method='POST',
|
|
577
|
-
resource_path='/
|
|
577
|
+
resource_path='/v1/leaderboards:batchDelete',
|
|
578
578
|
path_params=_path_params,
|
|
579
579
|
query_params=_query_params,
|
|
580
580
|
header_params=_header_params,
|
|
@@ -607,7 +607,7 @@ class LeaderboardServiceApi:
|
|
|
607
607
|
_content_type: Optional[StrictStr] = None,
|
|
608
608
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
609
609
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
610
|
-
) ->
|
|
610
|
+
) -> V1BatchGetLeaderboardsResponse:
|
|
611
611
|
"""leaderboard_service_batch_get_leaderboards
|
|
612
612
|
|
|
613
613
|
|
|
@@ -647,7 +647,7 @@ class LeaderboardServiceApi:
|
|
|
647
647
|
)
|
|
648
648
|
|
|
649
649
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
650
|
-
'200': "
|
|
650
|
+
'200': "V1BatchGetLeaderboardsResponse",
|
|
651
651
|
}
|
|
652
652
|
response_data = self.api_client.call_api(
|
|
653
653
|
*_param,
|
|
@@ -677,7 +677,7 @@ class LeaderboardServiceApi:
|
|
|
677
677
|
_content_type: Optional[StrictStr] = None,
|
|
678
678
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
679
679
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
680
|
-
) -> ApiResponse[
|
|
680
|
+
) -> ApiResponse[V1BatchGetLeaderboardsResponse]:
|
|
681
681
|
"""leaderboard_service_batch_get_leaderboards
|
|
682
682
|
|
|
683
683
|
|
|
@@ -717,7 +717,7 @@ class LeaderboardServiceApi:
|
|
|
717
717
|
)
|
|
718
718
|
|
|
719
719
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
720
|
-
'200': "
|
|
720
|
+
'200': "V1BatchGetLeaderboardsResponse",
|
|
721
721
|
}
|
|
722
722
|
response_data = self.api_client.call_api(
|
|
723
723
|
*_param,
|
|
@@ -787,7 +787,7 @@ class LeaderboardServiceApi:
|
|
|
787
787
|
)
|
|
788
788
|
|
|
789
789
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
790
|
-
'200': "
|
|
790
|
+
'200': "V1BatchGetLeaderboardsResponse",
|
|
791
791
|
}
|
|
792
792
|
response_data = self.api_client.call_api(
|
|
793
793
|
*_param,
|
|
@@ -848,7 +848,7 @@ class LeaderboardServiceApi:
|
|
|
848
848
|
|
|
849
849
|
return self.api_client.param_serialize(
|
|
850
850
|
method='GET',
|
|
851
|
-
resource_path='/
|
|
851
|
+
resource_path='/v1/leaderboards:batchGet',
|
|
852
852
|
path_params=_path_params,
|
|
853
853
|
query_params=_query_params,
|
|
854
854
|
header_params=_header_params,
|
|
@@ -867,7 +867,7 @@ class LeaderboardServiceApi:
|
|
|
867
867
|
@validate_call
|
|
868
868
|
def leaderboard_service_batch_import_leaderboard(
|
|
869
869
|
self,
|
|
870
|
-
body:
|
|
870
|
+
body: V1BatchImportLeaderboardRequest,
|
|
871
871
|
_request_timeout: Union[
|
|
872
872
|
None,
|
|
873
873
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -880,12 +880,12 @@ class LeaderboardServiceApi:
|
|
|
880
880
|
_content_type: Optional[StrictStr] = None,
|
|
881
881
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
882
882
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
883
|
-
) ->
|
|
883
|
+
) -> V1BatchImportLeaderboardResponse:
|
|
884
884
|
"""leaderboard_service_batch_import_leaderboard
|
|
885
885
|
|
|
886
886
|
|
|
887
887
|
:param body: (required)
|
|
888
|
-
:type body:
|
|
888
|
+
:type body: V1BatchImportLeaderboardRequest
|
|
889
889
|
:param _request_timeout: timeout setting for this request. If one
|
|
890
890
|
number provided, it will be total request
|
|
891
891
|
timeout. It can also be a pair (tuple) of
|
|
@@ -917,7 +917,7 @@ class LeaderboardServiceApi:
|
|
|
917
917
|
)
|
|
918
918
|
|
|
919
919
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
920
|
-
'200': "
|
|
920
|
+
'200': "V1BatchImportLeaderboardResponse",
|
|
921
921
|
}
|
|
922
922
|
response_data = self.api_client.call_api(
|
|
923
923
|
*_param,
|
|
@@ -933,7 +933,7 @@ class LeaderboardServiceApi:
|
|
|
933
933
|
@validate_call
|
|
934
934
|
def leaderboard_service_batch_import_leaderboard_with_http_info(
|
|
935
935
|
self,
|
|
936
|
-
body:
|
|
936
|
+
body: V1BatchImportLeaderboardRequest,
|
|
937
937
|
_request_timeout: Union[
|
|
938
938
|
None,
|
|
939
939
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -946,12 +946,12 @@ class LeaderboardServiceApi:
|
|
|
946
946
|
_content_type: Optional[StrictStr] = None,
|
|
947
947
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
948
948
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
949
|
-
) -> ApiResponse[
|
|
949
|
+
) -> ApiResponse[V1BatchImportLeaderboardResponse]:
|
|
950
950
|
"""leaderboard_service_batch_import_leaderboard
|
|
951
951
|
|
|
952
952
|
|
|
953
953
|
:param body: (required)
|
|
954
|
-
:type body:
|
|
954
|
+
:type body: V1BatchImportLeaderboardRequest
|
|
955
955
|
:param _request_timeout: timeout setting for this request. If one
|
|
956
956
|
number provided, it will be total request
|
|
957
957
|
timeout. It can also be a pair (tuple) of
|
|
@@ -983,7 +983,7 @@ class LeaderboardServiceApi:
|
|
|
983
983
|
)
|
|
984
984
|
|
|
985
985
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
986
|
-
'200': "
|
|
986
|
+
'200': "V1BatchImportLeaderboardResponse",
|
|
987
987
|
}
|
|
988
988
|
response_data = self.api_client.call_api(
|
|
989
989
|
*_param,
|
|
@@ -999,7 +999,7 @@ class LeaderboardServiceApi:
|
|
|
999
999
|
@validate_call
|
|
1000
1000
|
def leaderboard_service_batch_import_leaderboard_without_preload_content(
|
|
1001
1001
|
self,
|
|
1002
|
-
body:
|
|
1002
|
+
body: V1BatchImportLeaderboardRequest,
|
|
1003
1003
|
_request_timeout: Union[
|
|
1004
1004
|
None,
|
|
1005
1005
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1017,7 +1017,7 @@ class LeaderboardServiceApi:
|
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
1019
|
:param body: (required)
|
|
1020
|
-
:type body:
|
|
1020
|
+
:type body: V1BatchImportLeaderboardRequest
|
|
1021
1021
|
:param _request_timeout: timeout setting for this request. If one
|
|
1022
1022
|
number provided, it will be total request
|
|
1023
1023
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1049,7 +1049,7 @@ class LeaderboardServiceApi:
|
|
|
1049
1049
|
)
|
|
1050
1050
|
|
|
1051
1051
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1052
|
-
'200': "
|
|
1052
|
+
'200': "V1BatchImportLeaderboardResponse",
|
|
1053
1053
|
}
|
|
1054
1054
|
response_data = self.api_client.call_api(
|
|
1055
1055
|
*_param,
|
|
@@ -1115,7 +1115,7 @@ class LeaderboardServiceApi:
|
|
|
1115
1115
|
|
|
1116
1116
|
return self.api_client.param_serialize(
|
|
1117
1117
|
method='POST',
|
|
1118
|
-
resource_path='/
|
|
1118
|
+
resource_path='/v1/leaderboards:batchImport',
|
|
1119
1119
|
path_params=_path_params,
|
|
1120
1120
|
query_params=_query_params,
|
|
1121
1121
|
header_params=_header_params,
|
|
@@ -1134,7 +1134,7 @@ class LeaderboardServiceApi:
|
|
|
1134
1134
|
@validate_call
|
|
1135
1135
|
def leaderboard_service_create_leaderboard(
|
|
1136
1136
|
self,
|
|
1137
|
-
leaderboard: Annotated[
|
|
1137
|
+
leaderboard: Annotated[V1Leaderboard, Field(description="Required. The Leaderboard to create.")],
|
|
1138
1138
|
_request_timeout: Union[
|
|
1139
1139
|
None,
|
|
1140
1140
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1147,12 +1147,12 @@ class LeaderboardServiceApi:
|
|
|
1147
1147
|
_content_type: Optional[StrictStr] = None,
|
|
1148
1148
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1149
1149
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1150
|
-
) ->
|
|
1150
|
+
) -> V1CreateLeaderboardResponse:
|
|
1151
1151
|
"""leaderboard_service_create_leaderboard
|
|
1152
1152
|
|
|
1153
1153
|
|
|
1154
1154
|
:param leaderboard: Required. The Leaderboard to create. (required)
|
|
1155
|
-
:type leaderboard:
|
|
1155
|
+
:type leaderboard: V1Leaderboard
|
|
1156
1156
|
:param _request_timeout: timeout setting for this request. If one
|
|
1157
1157
|
number provided, it will be total request
|
|
1158
1158
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1184,7 +1184,7 @@ class LeaderboardServiceApi:
|
|
|
1184
1184
|
)
|
|
1185
1185
|
|
|
1186
1186
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1187
|
-
'200': "
|
|
1187
|
+
'200': "V1CreateLeaderboardResponse",
|
|
1188
1188
|
}
|
|
1189
1189
|
response_data = self.api_client.call_api(
|
|
1190
1190
|
*_param,
|
|
@@ -1200,7 +1200,7 @@ class LeaderboardServiceApi:
|
|
|
1200
1200
|
@validate_call
|
|
1201
1201
|
def leaderboard_service_create_leaderboard_with_http_info(
|
|
1202
1202
|
self,
|
|
1203
|
-
leaderboard: Annotated[
|
|
1203
|
+
leaderboard: Annotated[V1Leaderboard, Field(description="Required. The Leaderboard to create.")],
|
|
1204
1204
|
_request_timeout: Union[
|
|
1205
1205
|
None,
|
|
1206
1206
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1213,12 +1213,12 @@ class LeaderboardServiceApi:
|
|
|
1213
1213
|
_content_type: Optional[StrictStr] = None,
|
|
1214
1214
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1215
1215
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1216
|
-
) -> ApiResponse[
|
|
1216
|
+
) -> ApiResponse[V1CreateLeaderboardResponse]:
|
|
1217
1217
|
"""leaderboard_service_create_leaderboard
|
|
1218
1218
|
|
|
1219
1219
|
|
|
1220
1220
|
:param leaderboard: Required. The Leaderboard to create. (required)
|
|
1221
|
-
:type leaderboard:
|
|
1221
|
+
:type leaderboard: V1Leaderboard
|
|
1222
1222
|
:param _request_timeout: timeout setting for this request. If one
|
|
1223
1223
|
number provided, it will be total request
|
|
1224
1224
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1250,7 +1250,7 @@ class LeaderboardServiceApi:
|
|
|
1250
1250
|
)
|
|
1251
1251
|
|
|
1252
1252
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1253
|
-
'200': "
|
|
1253
|
+
'200': "V1CreateLeaderboardResponse",
|
|
1254
1254
|
}
|
|
1255
1255
|
response_data = self.api_client.call_api(
|
|
1256
1256
|
*_param,
|
|
@@ -1266,7 +1266,7 @@ class LeaderboardServiceApi:
|
|
|
1266
1266
|
@validate_call
|
|
1267
1267
|
def leaderboard_service_create_leaderboard_without_preload_content(
|
|
1268
1268
|
self,
|
|
1269
|
-
leaderboard: Annotated[
|
|
1269
|
+
leaderboard: Annotated[V1Leaderboard, Field(description="Required. The Leaderboard to create.")],
|
|
1270
1270
|
_request_timeout: Union[
|
|
1271
1271
|
None,
|
|
1272
1272
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1284,7 +1284,7 @@ class LeaderboardServiceApi:
|
|
|
1284
1284
|
|
|
1285
1285
|
|
|
1286
1286
|
:param leaderboard: Required. The Leaderboard to create. (required)
|
|
1287
|
-
:type leaderboard:
|
|
1287
|
+
:type leaderboard: V1Leaderboard
|
|
1288
1288
|
:param _request_timeout: timeout setting for this request. If one
|
|
1289
1289
|
number provided, it will be total request
|
|
1290
1290
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1316,7 +1316,7 @@ class LeaderboardServiceApi:
|
|
|
1316
1316
|
)
|
|
1317
1317
|
|
|
1318
1318
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1319
|
-
'200': "
|
|
1319
|
+
'200': "V1CreateLeaderboardResponse",
|
|
1320
1320
|
}
|
|
1321
1321
|
response_data = self.api_client.call_api(
|
|
1322
1322
|
*_param,
|
|
@@ -1382,7 +1382,7 @@ class LeaderboardServiceApi:
|
|
|
1382
1382
|
|
|
1383
1383
|
return self.api_client.param_serialize(
|
|
1384
1384
|
method='POST',
|
|
1385
|
-
resource_path='/
|
|
1385
|
+
resource_path='/v1/leaderboards',
|
|
1386
1386
|
path_params=_path_params,
|
|
1387
1387
|
query_params=_query_params,
|
|
1388
1388
|
header_params=_header_params,
|
|
@@ -1401,7 +1401,7 @@ class LeaderboardServiceApi:
|
|
|
1401
1401
|
@validate_call
|
|
1402
1402
|
def leaderboard_service_create_leaderboard_without_cache(
|
|
1403
1403
|
self,
|
|
1404
|
-
leaderboard: Annotated[
|
|
1404
|
+
leaderboard: Annotated[V1Leaderboard, Field(description="Required. The Leaderboard to create.")],
|
|
1405
1405
|
_request_timeout: Union[
|
|
1406
1406
|
None,
|
|
1407
1407
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1414,12 +1414,12 @@ class LeaderboardServiceApi:
|
|
|
1414
1414
|
_content_type: Optional[StrictStr] = None,
|
|
1415
1415
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1416
1416
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1417
|
-
) ->
|
|
1417
|
+
) -> V1CreateLeaderboardWithoutCacheResponse:
|
|
1418
1418
|
"""leaderboard_service_create_leaderboard_without_cache
|
|
1419
1419
|
|
|
1420
1420
|
|
|
1421
1421
|
:param leaderboard: Required. The Leaderboard to create. (required)
|
|
1422
|
-
:type leaderboard:
|
|
1422
|
+
:type leaderboard: V1Leaderboard
|
|
1423
1423
|
:param _request_timeout: timeout setting for this request. If one
|
|
1424
1424
|
number provided, it will be total request
|
|
1425
1425
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1451,7 +1451,7 @@ class LeaderboardServiceApi:
|
|
|
1451
1451
|
)
|
|
1452
1452
|
|
|
1453
1453
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1454
|
-
'200': "
|
|
1454
|
+
'200': "V1CreateLeaderboardWithoutCacheResponse",
|
|
1455
1455
|
}
|
|
1456
1456
|
response_data = self.api_client.call_api(
|
|
1457
1457
|
*_param,
|
|
@@ -1467,7 +1467,7 @@ class LeaderboardServiceApi:
|
|
|
1467
1467
|
@validate_call
|
|
1468
1468
|
def leaderboard_service_create_leaderboard_without_cache_with_http_info(
|
|
1469
1469
|
self,
|
|
1470
|
-
leaderboard: Annotated[
|
|
1470
|
+
leaderboard: Annotated[V1Leaderboard, Field(description="Required. The Leaderboard to create.")],
|
|
1471
1471
|
_request_timeout: Union[
|
|
1472
1472
|
None,
|
|
1473
1473
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1480,12 +1480,12 @@ class LeaderboardServiceApi:
|
|
|
1480
1480
|
_content_type: Optional[StrictStr] = None,
|
|
1481
1481
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1482
1482
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1483
|
-
) -> ApiResponse[
|
|
1483
|
+
) -> ApiResponse[V1CreateLeaderboardWithoutCacheResponse]:
|
|
1484
1484
|
"""leaderboard_service_create_leaderboard_without_cache
|
|
1485
1485
|
|
|
1486
1486
|
|
|
1487
1487
|
:param leaderboard: Required. The Leaderboard to create. (required)
|
|
1488
|
-
:type leaderboard:
|
|
1488
|
+
:type leaderboard: V1Leaderboard
|
|
1489
1489
|
:param _request_timeout: timeout setting for this request. If one
|
|
1490
1490
|
number provided, it will be total request
|
|
1491
1491
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1517,7 +1517,7 @@ class LeaderboardServiceApi:
|
|
|
1517
1517
|
)
|
|
1518
1518
|
|
|
1519
1519
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1520
|
-
'200': "
|
|
1520
|
+
'200': "V1CreateLeaderboardWithoutCacheResponse",
|
|
1521
1521
|
}
|
|
1522
1522
|
response_data = self.api_client.call_api(
|
|
1523
1523
|
*_param,
|
|
@@ -1533,7 +1533,7 @@ class LeaderboardServiceApi:
|
|
|
1533
1533
|
@validate_call
|
|
1534
1534
|
def leaderboard_service_create_leaderboard_without_cache_without_preload_content(
|
|
1535
1535
|
self,
|
|
1536
|
-
leaderboard: Annotated[
|
|
1536
|
+
leaderboard: Annotated[V1Leaderboard, Field(description="Required. The Leaderboard to create.")],
|
|
1537
1537
|
_request_timeout: Union[
|
|
1538
1538
|
None,
|
|
1539
1539
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1551,7 +1551,7 @@ class LeaderboardServiceApi:
|
|
|
1551
1551
|
|
|
1552
1552
|
|
|
1553
1553
|
:param leaderboard: Required. The Leaderboard to create. (required)
|
|
1554
|
-
:type leaderboard:
|
|
1554
|
+
:type leaderboard: V1Leaderboard
|
|
1555
1555
|
:param _request_timeout: timeout setting for this request. If one
|
|
1556
1556
|
number provided, it will be total request
|
|
1557
1557
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1583,7 +1583,7 @@ class LeaderboardServiceApi:
|
|
|
1583
1583
|
)
|
|
1584
1584
|
|
|
1585
1585
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1586
|
-
'200': "
|
|
1586
|
+
'200': "V1CreateLeaderboardWithoutCacheResponse",
|
|
1587
1587
|
}
|
|
1588
1588
|
response_data = self.api_client.call_api(
|
|
1589
1589
|
*_param,
|
|
@@ -1649,7 +1649,7 @@ class LeaderboardServiceApi:
|
|
|
1649
1649
|
|
|
1650
1650
|
return self.api_client.param_serialize(
|
|
1651
1651
|
method='POST',
|
|
1652
|
-
resource_path='/
|
|
1652
|
+
resource_path='/v1/leaderboards:withoutCache',
|
|
1653
1653
|
path_params=_path_params,
|
|
1654
1654
|
query_params=_query_params,
|
|
1655
1655
|
header_params=_header_params,
|
|
@@ -1681,7 +1681,7 @@ class LeaderboardServiceApi:
|
|
|
1681
1681
|
_content_type: Optional[StrictStr] = None,
|
|
1682
1682
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1683
1683
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1684
|
-
) ->
|
|
1684
|
+
) -> V1DeleteLeaderboardResponse:
|
|
1685
1685
|
"""leaderboard_service_delete_leaderboard
|
|
1686
1686
|
|
|
1687
1687
|
|
|
@@ -1718,7 +1718,7 @@ class LeaderboardServiceApi:
|
|
|
1718
1718
|
)
|
|
1719
1719
|
|
|
1720
1720
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1721
|
-
'200': "
|
|
1721
|
+
'200': "V1DeleteLeaderboardResponse",
|
|
1722
1722
|
}
|
|
1723
1723
|
response_data = self.api_client.call_api(
|
|
1724
1724
|
*_param,
|
|
@@ -1747,7 +1747,7 @@ class LeaderboardServiceApi:
|
|
|
1747
1747
|
_content_type: Optional[StrictStr] = None,
|
|
1748
1748
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1749
1749
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1750
|
-
) -> ApiResponse[
|
|
1750
|
+
) -> ApiResponse[V1DeleteLeaderboardResponse]:
|
|
1751
1751
|
"""leaderboard_service_delete_leaderboard
|
|
1752
1752
|
|
|
1753
1753
|
|
|
@@ -1784,7 +1784,7 @@ class LeaderboardServiceApi:
|
|
|
1784
1784
|
)
|
|
1785
1785
|
|
|
1786
1786
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1787
|
-
'200': "
|
|
1787
|
+
'200': "V1DeleteLeaderboardResponse",
|
|
1788
1788
|
}
|
|
1789
1789
|
response_data = self.api_client.call_api(
|
|
1790
1790
|
*_param,
|
|
@@ -1850,7 +1850,7 @@ class LeaderboardServiceApi:
|
|
|
1850
1850
|
)
|
|
1851
1851
|
|
|
1852
1852
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1853
|
-
'200': "
|
|
1853
|
+
'200': "V1DeleteLeaderboardResponse",
|
|
1854
1854
|
}
|
|
1855
1855
|
response_data = self.api_client.call_api(
|
|
1856
1856
|
*_param,
|
|
@@ -1903,7 +1903,7 @@ class LeaderboardServiceApi:
|
|
|
1903
1903
|
|
|
1904
1904
|
return self.api_client.param_serialize(
|
|
1905
1905
|
method='DELETE',
|
|
1906
|
-
resource_path='/
|
|
1906
|
+
resource_path='/v1/{name_3}',
|
|
1907
1907
|
path_params=_path_params,
|
|
1908
1908
|
query_params=_query_params,
|
|
1909
1909
|
header_params=_header_params,
|
|
@@ -1935,7 +1935,7 @@ class LeaderboardServiceApi:
|
|
|
1935
1935
|
_content_type: Optional[StrictStr] = None,
|
|
1936
1936
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1937
1937
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1938
|
-
) ->
|
|
1938
|
+
) -> V1GetLeaderboardResponse:
|
|
1939
1939
|
"""leaderboard_service_get_leaderboard
|
|
1940
1940
|
|
|
1941
1941
|
|
|
@@ -1972,7 +1972,7 @@ class LeaderboardServiceApi:
|
|
|
1972
1972
|
)
|
|
1973
1973
|
|
|
1974
1974
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1975
|
-
'200': "
|
|
1975
|
+
'200': "V1GetLeaderboardResponse",
|
|
1976
1976
|
}
|
|
1977
1977
|
response_data = self.api_client.call_api(
|
|
1978
1978
|
*_param,
|
|
@@ -2001,7 +2001,7 @@ class LeaderboardServiceApi:
|
|
|
2001
2001
|
_content_type: Optional[StrictStr] = None,
|
|
2002
2002
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2003
2003
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2004
|
-
) -> ApiResponse[
|
|
2004
|
+
) -> ApiResponse[V1GetLeaderboardResponse]:
|
|
2005
2005
|
"""leaderboard_service_get_leaderboard
|
|
2006
2006
|
|
|
2007
2007
|
|
|
@@ -2038,7 +2038,7 @@ class LeaderboardServiceApi:
|
|
|
2038
2038
|
)
|
|
2039
2039
|
|
|
2040
2040
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2041
|
-
'200': "
|
|
2041
|
+
'200': "V1GetLeaderboardResponse",
|
|
2042
2042
|
}
|
|
2043
2043
|
response_data = self.api_client.call_api(
|
|
2044
2044
|
*_param,
|
|
@@ -2104,7 +2104,7 @@ class LeaderboardServiceApi:
|
|
|
2104
2104
|
)
|
|
2105
2105
|
|
|
2106
2106
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2107
|
-
'200': "
|
|
2107
|
+
'200': "V1GetLeaderboardResponse",
|
|
2108
2108
|
}
|
|
2109
2109
|
response_data = self.api_client.call_api(
|
|
2110
2110
|
*_param,
|
|
@@ -2157,7 +2157,7 @@ class LeaderboardServiceApi:
|
|
|
2157
2157
|
|
|
2158
2158
|
return self.api_client.param_serialize(
|
|
2159
2159
|
method='GET',
|
|
2160
|
-
resource_path='/
|
|
2160
|
+
resource_path='/v1/{name_3}',
|
|
2161
2161
|
path_params=_path_params,
|
|
2162
2162
|
query_params=_query_params,
|
|
2163
2163
|
header_params=_header_params,
|
|
@@ -2176,7 +2176,7 @@ class LeaderboardServiceApi:
|
|
|
2176
2176
|
@validate_call
|
|
2177
2177
|
def leaderboard_service_import_leaderboard(
|
|
2178
2178
|
self,
|
|
2179
|
-
body:
|
|
2179
|
+
body: V1ImportLeaderboardRequest,
|
|
2180
2180
|
_request_timeout: Union[
|
|
2181
2181
|
None,
|
|
2182
2182
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2189,12 +2189,12 @@ class LeaderboardServiceApi:
|
|
|
2189
2189
|
_content_type: Optional[StrictStr] = None,
|
|
2190
2190
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2191
2191
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2192
|
-
) ->
|
|
2192
|
+
) -> V1ImportLeaderboardResponse:
|
|
2193
2193
|
"""leaderboard_service_import_leaderboard
|
|
2194
2194
|
|
|
2195
2195
|
|
|
2196
2196
|
:param body: (required)
|
|
2197
|
-
:type body:
|
|
2197
|
+
:type body: V1ImportLeaderboardRequest
|
|
2198
2198
|
:param _request_timeout: timeout setting for this request. If one
|
|
2199
2199
|
number provided, it will be total request
|
|
2200
2200
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2226,7 +2226,7 @@ class LeaderboardServiceApi:
|
|
|
2226
2226
|
)
|
|
2227
2227
|
|
|
2228
2228
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2229
|
-
'200': "
|
|
2229
|
+
'200': "V1ImportLeaderboardResponse",
|
|
2230
2230
|
}
|
|
2231
2231
|
response_data = self.api_client.call_api(
|
|
2232
2232
|
*_param,
|
|
@@ -2242,7 +2242,7 @@ class LeaderboardServiceApi:
|
|
|
2242
2242
|
@validate_call
|
|
2243
2243
|
def leaderboard_service_import_leaderboard_with_http_info(
|
|
2244
2244
|
self,
|
|
2245
|
-
body:
|
|
2245
|
+
body: V1ImportLeaderboardRequest,
|
|
2246
2246
|
_request_timeout: Union[
|
|
2247
2247
|
None,
|
|
2248
2248
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2255,12 +2255,12 @@ class LeaderboardServiceApi:
|
|
|
2255
2255
|
_content_type: Optional[StrictStr] = None,
|
|
2256
2256
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2257
2257
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2258
|
-
) -> ApiResponse[
|
|
2258
|
+
) -> ApiResponse[V1ImportLeaderboardResponse]:
|
|
2259
2259
|
"""leaderboard_service_import_leaderboard
|
|
2260
2260
|
|
|
2261
2261
|
|
|
2262
2262
|
:param body: (required)
|
|
2263
|
-
:type body:
|
|
2263
|
+
:type body: V1ImportLeaderboardRequest
|
|
2264
2264
|
:param _request_timeout: timeout setting for this request. If one
|
|
2265
2265
|
number provided, it will be total request
|
|
2266
2266
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2292,7 +2292,7 @@ class LeaderboardServiceApi:
|
|
|
2292
2292
|
)
|
|
2293
2293
|
|
|
2294
2294
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2295
|
-
'200': "
|
|
2295
|
+
'200': "V1ImportLeaderboardResponse",
|
|
2296
2296
|
}
|
|
2297
2297
|
response_data = self.api_client.call_api(
|
|
2298
2298
|
*_param,
|
|
@@ -2308,7 +2308,7 @@ class LeaderboardServiceApi:
|
|
|
2308
2308
|
@validate_call
|
|
2309
2309
|
def leaderboard_service_import_leaderboard_without_preload_content(
|
|
2310
2310
|
self,
|
|
2311
|
-
body:
|
|
2311
|
+
body: V1ImportLeaderboardRequest,
|
|
2312
2312
|
_request_timeout: Union[
|
|
2313
2313
|
None,
|
|
2314
2314
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2326,7 +2326,7 @@ class LeaderboardServiceApi:
|
|
|
2326
2326
|
|
|
2327
2327
|
|
|
2328
2328
|
:param body: (required)
|
|
2329
|
-
:type body:
|
|
2329
|
+
:type body: V1ImportLeaderboardRequest
|
|
2330
2330
|
:param _request_timeout: timeout setting for this request. If one
|
|
2331
2331
|
number provided, it will be total request
|
|
2332
2332
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2358,7 +2358,7 @@ class LeaderboardServiceApi:
|
|
|
2358
2358
|
)
|
|
2359
2359
|
|
|
2360
2360
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2361
|
-
'200': "
|
|
2361
|
+
'200': "V1ImportLeaderboardResponse",
|
|
2362
2362
|
}
|
|
2363
2363
|
response_data = self.api_client.call_api(
|
|
2364
2364
|
*_param,
|
|
@@ -2424,7 +2424,7 @@ class LeaderboardServiceApi:
|
|
|
2424
2424
|
|
|
2425
2425
|
return self.api_client.param_serialize(
|
|
2426
2426
|
method='POST',
|
|
2427
|
-
resource_path='/
|
|
2427
|
+
resource_path='/v1/leaderboards:import',
|
|
2428
2428
|
path_params=_path_params,
|
|
2429
2429
|
query_params=_query_params,
|
|
2430
2430
|
header_params=_header_params,
|
|
@@ -2460,7 +2460,7 @@ class LeaderboardServiceApi:
|
|
|
2460
2460
|
_content_type: Optional[StrictStr] = None,
|
|
2461
2461
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2462
2462
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2463
|
-
) ->
|
|
2463
|
+
) -> V1ListLeaderboardsResponse:
|
|
2464
2464
|
"""leaderboard_service_list_leaderboards
|
|
2465
2465
|
|
|
2466
2466
|
|
|
@@ -2509,7 +2509,7 @@ class LeaderboardServiceApi:
|
|
|
2509
2509
|
)
|
|
2510
2510
|
|
|
2511
2511
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2512
|
-
'200': "
|
|
2512
|
+
'200': "V1ListLeaderboardsResponse",
|
|
2513
2513
|
}
|
|
2514
2514
|
response_data = self.api_client.call_api(
|
|
2515
2515
|
*_param,
|
|
@@ -2542,7 +2542,7 @@ class LeaderboardServiceApi:
|
|
|
2542
2542
|
_content_type: Optional[StrictStr] = None,
|
|
2543
2543
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2544
2544
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2545
|
-
) -> ApiResponse[
|
|
2545
|
+
) -> ApiResponse[V1ListLeaderboardsResponse]:
|
|
2546
2546
|
"""leaderboard_service_list_leaderboards
|
|
2547
2547
|
|
|
2548
2548
|
|
|
@@ -2591,7 +2591,7 @@ class LeaderboardServiceApi:
|
|
|
2591
2591
|
)
|
|
2592
2592
|
|
|
2593
2593
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2594
|
-
'200': "
|
|
2594
|
+
'200': "V1ListLeaderboardsResponse",
|
|
2595
2595
|
}
|
|
2596
2596
|
response_data = self.api_client.call_api(
|
|
2597
2597
|
*_param,
|
|
@@ -2673,7 +2673,7 @@ class LeaderboardServiceApi:
|
|
|
2673
2673
|
)
|
|
2674
2674
|
|
|
2675
2675
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2676
|
-
'200': "
|
|
2676
|
+
'200': "V1ListLeaderboardsResponse",
|
|
2677
2677
|
}
|
|
2678
2678
|
response_data = self.api_client.call_api(
|
|
2679
2679
|
*_param,
|
|
@@ -2748,7 +2748,7 @@ class LeaderboardServiceApi:
|
|
|
2748
2748
|
|
|
2749
2749
|
return self.api_client.param_serialize(
|
|
2750
2750
|
method='GET',
|
|
2751
|
-
resource_path='/
|
|
2751
|
+
resource_path='/v1/leaderboards',
|
|
2752
2752
|
path_params=_path_params,
|
|
2753
2753
|
query_params=_query_params,
|
|
2754
2754
|
header_params=_header_params,
|
|
@@ -2782,7 +2782,7 @@ class LeaderboardServiceApi:
|
|
|
2782
2782
|
_content_type: Optional[StrictStr] = None,
|
|
2783
2783
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2784
2784
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2785
|
-
) ->
|
|
2785
|
+
) -> V1ListMostRecentLeaderboardsResponse:
|
|
2786
2786
|
"""leaderboard_service_list_most_recent_leaderboards
|
|
2787
2787
|
|
|
2788
2788
|
|
|
@@ -2825,7 +2825,7 @@ class LeaderboardServiceApi:
|
|
|
2825
2825
|
)
|
|
2826
2826
|
|
|
2827
2827
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2828
|
-
'200': "
|
|
2828
|
+
'200': "V1ListMostRecentLeaderboardsResponse",
|
|
2829
2829
|
}
|
|
2830
2830
|
response_data = self.api_client.call_api(
|
|
2831
2831
|
*_param,
|
|
@@ -2856,7 +2856,7 @@ class LeaderboardServiceApi:
|
|
|
2856
2856
|
_content_type: Optional[StrictStr] = None,
|
|
2857
2857
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2858
2858
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2859
|
-
) -> ApiResponse[
|
|
2859
|
+
) -> ApiResponse[V1ListMostRecentLeaderboardsResponse]:
|
|
2860
2860
|
"""leaderboard_service_list_most_recent_leaderboards
|
|
2861
2861
|
|
|
2862
2862
|
|
|
@@ -2899,7 +2899,7 @@ class LeaderboardServiceApi:
|
|
|
2899
2899
|
)
|
|
2900
2900
|
|
|
2901
2901
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2902
|
-
'200': "
|
|
2902
|
+
'200': "V1ListMostRecentLeaderboardsResponse",
|
|
2903
2903
|
}
|
|
2904
2904
|
response_data = self.api_client.call_api(
|
|
2905
2905
|
*_param,
|
|
@@ -2973,7 +2973,7 @@ class LeaderboardServiceApi:
|
|
|
2973
2973
|
)
|
|
2974
2974
|
|
|
2975
2975
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2976
|
-
'200': "
|
|
2976
|
+
'200': "V1ListMostRecentLeaderboardsResponse",
|
|
2977
2977
|
}
|
|
2978
2978
|
response_data = self.api_client.call_api(
|
|
2979
2979
|
*_param,
|
|
@@ -3038,7 +3038,7 @@ class LeaderboardServiceApi:
|
|
|
3038
3038
|
|
|
3039
3039
|
return self.api_client.param_serialize(
|
|
3040
3040
|
method='GET',
|
|
3041
|
-
resource_path='/
|
|
3041
|
+
resource_path='/v1/leaderboards:mostRecent',
|
|
3042
3042
|
path_params=_path_params,
|
|
3043
3043
|
query_params=_query_params,
|
|
3044
3044
|
header_params=_header_params,
|
|
@@ -3071,7 +3071,7 @@ class LeaderboardServiceApi:
|
|
|
3071
3071
|
_content_type: Optional[StrictStr] = None,
|
|
3072
3072
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3073
3073
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3074
|
-
) ->
|
|
3074
|
+
) -> V1UpdateLeaderboardResponse:
|
|
3075
3075
|
"""leaderboard_service_update_leaderboard
|
|
3076
3076
|
|
|
3077
3077
|
|
|
@@ -3111,7 +3111,7 @@ class LeaderboardServiceApi:
|
|
|
3111
3111
|
)
|
|
3112
3112
|
|
|
3113
3113
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3114
|
-
'200': "
|
|
3114
|
+
'200': "V1UpdateLeaderboardResponse",
|
|
3115
3115
|
}
|
|
3116
3116
|
response_data = self.api_client.call_api(
|
|
3117
3117
|
*_param,
|
|
@@ -3141,7 +3141,7 @@ class LeaderboardServiceApi:
|
|
|
3141
3141
|
_content_type: Optional[StrictStr] = None,
|
|
3142
3142
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3143
3143
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3144
|
-
) -> ApiResponse[
|
|
3144
|
+
) -> ApiResponse[V1UpdateLeaderboardResponse]:
|
|
3145
3145
|
"""leaderboard_service_update_leaderboard
|
|
3146
3146
|
|
|
3147
3147
|
|
|
@@ -3181,7 +3181,7 @@ class LeaderboardServiceApi:
|
|
|
3181
3181
|
)
|
|
3182
3182
|
|
|
3183
3183
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3184
|
-
'200': "
|
|
3184
|
+
'200': "V1UpdateLeaderboardResponse",
|
|
3185
3185
|
}
|
|
3186
3186
|
response_data = self.api_client.call_api(
|
|
3187
3187
|
*_param,
|
|
@@ -3251,7 +3251,7 @@ class LeaderboardServiceApi:
|
|
|
3251
3251
|
)
|
|
3252
3252
|
|
|
3253
3253
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
3254
|
-
'200': "
|
|
3254
|
+
'200': "V1UpdateLeaderboardResponse",
|
|
3255
3255
|
}
|
|
3256
3256
|
response_data = self.api_client.call_api(
|
|
3257
3257
|
*_param,
|
|
@@ -3320,7 +3320,7 @@ class LeaderboardServiceApi:
|
|
|
3320
3320
|
|
|
3321
3321
|
return self.api_client.param_serialize(
|
|
3322
3322
|
method='PATCH',
|
|
3323
|
-
resource_path='/
|
|
3323
|
+
resource_path='/v1/{leaderboard.name}',
|
|
3324
3324
|
path_params=_path_params,
|
|
3325
3325
|
query_params=_query_params,
|
|
3326
3326
|
header_params=_header_params,
|