eval-studio-client 1.2.4a2__py3-none-any.whl → 1.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- eval_studio_client/api/__init__.py +65 -0
- eval_studio_client/api/api/__init__.py +3 -0
- eval_studio_client/api/api/dashboard_report_service_api.py +292 -0
- eval_studio_client/api/api/dashboard_service_api.py +16 -16
- eval_studio_client/api/api/dashboard_test_case_annotation_service_api.py +611 -0
- eval_studio_client/api/api/document_service_api.py +16 -16
- eval_studio_client/api/api/evaluation_service_api.py +12 -12
- eval_studio_client/api/api/evaluator_service_api.py +16 -16
- eval_studio_client/api/api/leaderboard_report_service_api.py +304 -17
- eval_studio_client/api/api/leaderboard_service_api.py +554 -16
- eval_studio_client/api/api/leaderboard_test_case_annotation_service_api.py +611 -0
- eval_studio_client/api/api/model_service_api.py +16 -16
- eval_studio_client/api/api/operation_service_api.py +821 -17
- eval_studio_client/api/api/perturbator_service_api.py +22 -22
- eval_studio_client/api/api/test_case_service_api.py +300 -16
- eval_studio_client/api/api/test_class_service_api.py +16 -16
- eval_studio_client/api/api/test_service_api.py +285 -16
- eval_studio_client/api/api/workflow_node_service_api.py +16 -16
- eval_studio_client/api/api/workflow_service_api.py +16 -16
- eval_studio_client/api/docs/AdversarialInputsServiceTestAdversarialInputsRobustnessRequest.md +2 -1
- eval_studio_client/api/docs/DashboardReportServiceApi.md +75 -0
- eval_studio_client/api/docs/DashboardServiceApi.md +5 -5
- eval_studio_client/api/docs/DashboardTestCaseAnnotationServiceApi.md +149 -0
- eval_studio_client/api/docs/DocumentServiceApi.md +5 -5
- eval_studio_client/api/docs/EvaluationServiceApi.md +4 -4
- eval_studio_client/api/docs/EvaluatorServiceApi.md +5 -5
- eval_studio_client/api/docs/LeaderboardReportServiceApi.md +75 -5
- eval_studio_client/api/docs/LeaderboardServiceApi.md +141 -5
- eval_studio_client/api/docs/LeaderboardTestCaseAnnotationServiceApi.md +149 -0
- eval_studio_client/api/docs/ModelServiceApi.md +5 -5
- eval_studio_client/api/docs/OperationServiceApi.md +215 -8
- eval_studio_client/api/docs/PerturbatorServiceApi.md +7 -7
- eval_studio_client/api/docs/RequiredTheDashboardTestCaseAnnotationToUpdate.md +35 -0
- eval_studio_client/api/docs/RequiredTheLeaderboardTestCaseAnnotationToUpdate.md +35 -0
- eval_studio_client/api/docs/RequiredTheLeaderboardToUpdate.md +1 -0
- eval_studio_client/api/docs/RequiredTheOperationToFinalize.md +1 -0
- eval_studio_client/api/docs/RequiredTheOperationToUpdate.md +1 -0
- eval_studio_client/api/docs/TestCaseServiceApi.md +75 -5
- eval_studio_client/api/docs/TestCaseServiceAppendTestCasesRequest.md +30 -0
- eval_studio_client/api/docs/TestClassServiceApi.md +5 -5
- eval_studio_client/api/docs/TestServiceApi.md +73 -5
- eval_studio_client/api/docs/V1ActualOutputMeta.md +30 -0
- eval_studio_client/api/docs/V1ActualOutputMetaDiff.md +36 -0
- eval_studio_client/api/docs/V1AgentChatActivityDiagram.md +31 -0
- eval_studio_client/api/docs/V1AgentChatActivityDiagramEdge.md +32 -0
- eval_studio_client/api/docs/V1AgentChatActivityDiagramNode.md +32 -0
- eval_studio_client/api/docs/V1AgentChatActivityDiagramRow.md +30 -0
- eval_studio_client/api/docs/V1AgentChatScriptUsage.md +33 -0
- eval_studio_client/api/docs/V1AgentChatScriptsBarChart.md +30 -0
- eval_studio_client/api/docs/V1AgentChatToolUsage.md +33 -0
- eval_studio_client/api/docs/V1AgentChatToolsBarChart.md +30 -0
- eval_studio_client/api/docs/V1AllMetricScores.md +29 -0
- eval_studio_client/api/docs/V1AppendTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchCreateLeaderboardsWithoutCacheRequest.md +31 -0
- eval_studio_client/api/docs/V1BatchCreateLeaderboardsWithoutCacheResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchMarkOperationSeenByCreatorResponse.md +29 -0
- eval_studio_client/api/docs/V1CmpLeaderboardReportsRequest.md +33 -0
- eval_studio_client/api/docs/V1CmpLeaderboardReportsResponse.md +29 -0
- eval_studio_client/api/docs/V1ComparisonItem.md +36 -0
- eval_studio_client/api/docs/V1ComparisonMetricScore.md +30 -0
- eval_studio_client/api/docs/V1ComparisonResult.md +31 -0
- eval_studio_client/api/docs/V1ComparisonSummary.md +31 -0
- eval_studio_client/api/docs/V1CreateEvaluationRequest.md +1 -0
- eval_studio_client/api/docs/V1CreateTestFromTestCasesRequest.md +32 -0
- eval_studio_client/api/docs/V1CreateTestFromTestCasesResponse.md +29 -0
- eval_studio_client/api/docs/V1DashboardReport.md +31 -0
- eval_studio_client/api/docs/V1DashboardReportResult.md +39 -0
- eval_studio_client/api/docs/V1DashboardTestCaseAnnotation.md +36 -0
- eval_studio_client/api/docs/V1DataFragment.md +31 -0
- eval_studio_client/api/docs/V1DeepCompareLeaderboardsRequest.md +33 -0
- eval_studio_client/api/docs/V1DeepCompareLeaderboardsResponse.md +29 -0
- eval_studio_client/api/docs/V1DiffItem.md +36 -0
- eval_studio_client/api/docs/V1EvaluationType.md +12 -0
- eval_studio_client/api/docs/V1FlippedMetric.md +31 -0
- eval_studio_client/api/docs/V1GetDashboardReportResponse.md +29 -0
- eval_studio_client/api/docs/V1HumanDecision.md +12 -0
- eval_studio_client/api/docs/V1Info.md +1 -0
- eval_studio_client/api/docs/V1Leaderboard.md +1 -0
- eval_studio_client/api/docs/V1LeaderboardCmpReport.md +30 -0
- eval_studio_client/api/docs/V1LeaderboardComparisonItem.md +31 -0
- eval_studio_client/api/docs/V1LeaderboardInfo.md +30 -0
- eval_studio_client/api/docs/V1LeaderboardReportActualOutputMeta.md +6 -3
- eval_studio_client/api/docs/V1LeaderboardReportResult.md +11 -8
- eval_studio_client/api/docs/V1LeaderboardReportResultView.md +12 -0
- eval_studio_client/api/docs/V1LeaderboardTestCaseAnnotation.md +36 -0
- eval_studio_client/api/docs/V1ListDashboardTestCaseAnnotationsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListLeaderboardTestCaseAnnotationsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListOperationsResponse.md +1 -0
- eval_studio_client/api/docs/V1ListUnseenOperationsResponse.md +30 -0
- eval_studio_client/api/docs/V1MarkOperationSeenByCreatorResponse.md +29 -0
- eval_studio_client/api/docs/V1Metric.md +30 -0
- eval_studio_client/api/docs/V1MetricAverage.md +36 -0
- eval_studio_client/api/docs/V1MetricMeta.md +40 -0
- eval_studio_client/api/docs/V1MetricScore.md +1 -1
- eval_studio_client/api/docs/V1MetricScores.md +1 -1
- eval_studio_client/api/docs/V1ModelType.md +1 -1
- eval_studio_client/api/docs/V1ModelsComparisons.md +32 -0
- eval_studio_client/api/docs/V1ModelsComparisonsMetrics.md +33 -0
- eval_studio_client/api/docs/V1ModelsOverview.md +34 -0
- eval_studio_client/api/docs/V1Operation.md +1 -0
- eval_studio_client/api/docs/V1OperationView.md +12 -0
- eval_studio_client/api/docs/V1RetrievedContextDiff.md +36 -0
- eval_studio_client/api/docs/V1Stats.md +2 -0
- eval_studio_client/api/docs/V1TechnicalMetrics.md +30 -0
- eval_studio_client/api/docs/V1TechnicalMetricsDetail.md +33 -0
- eval_studio_client/api/docs/V1TestCaseLeaderboardItem.md +31 -0
- eval_studio_client/api/docs/V1TestCaseRelationshipInfo.md +31 -0
- eval_studio_client/api/docs/V1TestCaseResult.md +48 -0
- eval_studio_client/api/docs/V1TextSimilarityMetric.md +12 -0
- eval_studio_client/api/docs/V1UpdateDashboardTestCaseAnnotationResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateLeaderboardTestCaseAnnotationResponse.md +29 -0
- eval_studio_client/api/docs/WorkflowNodeServiceApi.md +5 -5
- eval_studio_client/api/docs/WorkflowServiceApi.md +5 -5
- eval_studio_client/api/models/__init__.py +62 -0
- eval_studio_client/api/models/adversarial_inputs_service_test_adversarial_inputs_robustness_request.py +17 -2
- eval_studio_client/api/models/required_the_dashboard_test_case_annotation_to_update.py +108 -0
- eval_studio_client/api/models/required_the_leaderboard_test_case_annotation_to_update.py +108 -0
- eval_studio_client/api/models/required_the_leaderboard_to_update.py +5 -2
- eval_studio_client/api/models/required_the_operation_to_finalize.py +6 -2
- eval_studio_client/api/models/required_the_operation_to_update.py +6 -2
- eval_studio_client/api/models/test_case_service_append_test_cases_request.py +89 -0
- eval_studio_client/api/models/v1_actual_output_meta.py +97 -0
- eval_studio_client/api/models/v1_actual_output_meta_diff.py +101 -0
- eval_studio_client/api/models/v1_agent_chat_activity_diagram.py +109 -0
- eval_studio_client/api/models/v1_agent_chat_activity_diagram_edge.py +97 -0
- eval_studio_client/api/models/v1_agent_chat_activity_diagram_node.py +97 -0
- eval_studio_client/api/models/v1_agent_chat_activity_diagram_row.py +97 -0
- eval_studio_client/api/models/v1_agent_chat_script_usage.py +101 -0
- eval_studio_client/api/models/v1_agent_chat_scripts_bar_chart.py +102 -0
- eval_studio_client/api/models/v1_agent_chat_tool_usage.py +101 -0
- eval_studio_client/api/models/v1_agent_chat_tools_bar_chart.py +102 -0
- eval_studio_client/api/models/v1_all_metric_scores.py +87 -0
- eval_studio_client/api/models/v1_append_test_cases_response.py +95 -0
- eval_studio_client/api/models/v1_batch_create_leaderboards_without_cache_request.py +99 -0
- eval_studio_client/api/models/v1_batch_create_leaderboards_without_cache_response.py +91 -0
- eval_studio_client/api/models/v1_batch_mark_operation_seen_by_creator_response.py +95 -0
- eval_studio_client/api/models/v1_cmp_leaderboard_reports_request.py +96 -0
- eval_studio_client/api/models/v1_cmp_leaderboard_reports_response.py +91 -0
- eval_studio_client/api/models/v1_comparison_item.py +130 -0
- eval_studio_client/api/models/v1_comparison_metric_score.py +89 -0
- eval_studio_client/api/models/v1_comparison_result.py +120 -0
- eval_studio_client/api/models/v1_comparison_summary.py +91 -0
- eval_studio_client/api/models/v1_create_evaluation_request.py +5 -2
- eval_studio_client/api/models/v1_create_test_from_test_cases_request.py +93 -0
- eval_studio_client/api/models/v1_create_test_from_test_cases_response.py +91 -0
- eval_studio_client/api/models/v1_dashboard_report.py +109 -0
- eval_studio_client/api/models/v1_dashboard_report_result.py +139 -0
- eval_studio_client/api/models/v1_dashboard_test_case_annotation.py +112 -0
- eval_studio_client/api/models/v1_data_fragment.py +91 -0
- eval_studio_client/api/models/v1_deep_compare_leaderboards_request.py +96 -0
- eval_studio_client/api/models/v1_deep_compare_leaderboards_response.py +91 -0
- eval_studio_client/api/models/v1_diff_item.py +137 -0
- eval_studio_client/api/models/v1_evaluation_type.py +39 -0
- eval_studio_client/api/models/v1_flipped_metric.py +91 -0
- eval_studio_client/api/models/v1_get_dashboard_report_response.py +91 -0
- eval_studio_client/api/models/v1_human_decision.py +38 -0
- eval_studio_client/api/models/v1_info.py +4 -2
- eval_studio_client/api/models/v1_leaderboard.py +5 -2
- eval_studio_client/api/models/v1_leaderboard_cmp_report.py +93 -0
- eval_studio_client/api/models/v1_leaderboard_comparison_item.py +91 -0
- eval_studio_client/api/models/v1_leaderboard_info.py +97 -0
- eval_studio_client/api/models/v1_leaderboard_report_actual_output_meta.py +23 -9
- eval_studio_client/api/models/v1_leaderboard_report_result.py +21 -10
- eval_studio_client/api/models/v1_leaderboard_report_result_view.py +38 -0
- eval_studio_client/api/models/v1_leaderboard_test_case_annotation.py +112 -0
- eval_studio_client/api/models/v1_list_dashboard_test_case_annotations_response.py +95 -0
- eval_studio_client/api/models/v1_list_leaderboard_test_case_annotations_response.py +95 -0
- eval_studio_client/api/models/v1_list_operations_response.py +5 -3
- eval_studio_client/api/models/v1_list_unseen_operations_response.py +97 -0
- eval_studio_client/api/models/v1_mark_operation_seen_by_creator_response.py +91 -0
- eval_studio_client/api/models/v1_metric.py +89 -0
- eval_studio_client/api/models/v1_metric_average.py +101 -0
- eval_studio_client/api/models/v1_metric_meta.py +109 -0
- eval_studio_client/api/models/v1_metric_score.py +6 -1
- eval_studio_client/api/models/v1_metric_scores.py +1 -1
- eval_studio_client/api/models/v1_model_type.py +2 -1
- eval_studio_client/api/models/v1_models_comparisons.py +93 -0
- eval_studio_client/api/models/v1_models_comparisons_metrics.py +103 -0
- eval_studio_client/api/models/v1_models_overview.py +97 -0
- eval_studio_client/api/models/v1_operation.py +6 -2
- eval_studio_client/api/models/v1_operation_view.py +38 -0
- eval_studio_client/api/models/v1_retrieved_context_diff.py +101 -0
- eval_studio_client/api/models/v1_stats.py +16 -2
- eval_studio_client/api/models/v1_technical_metrics.py +96 -0
- eval_studio_client/api/models/v1_technical_metrics_detail.py +95 -0
- eval_studio_client/api/models/v1_test_case_leaderboard_item.py +91 -0
- eval_studio_client/api/models/v1_test_case_relationship_info.py +91 -0
- eval_studio_client/api/models/v1_test_case_result.py +157 -0
- eval_studio_client/api/models/v1_text_similarity_metric.py +39 -0
- eval_studio_client/api/models/v1_update_dashboard_test_case_annotation_response.py +91 -0
- eval_studio_client/api/models/v1_update_leaderboard_test_case_annotation_response.py +91 -0
- eval_studio_client/api/models/v1_workflow_node_type.py +1 -0
- eval_studio_client/api/models/v1_workflow_type.py +1 -0
- eval_studio_client/api/test/test_adversarial_inputs_service_test_adversarial_inputs_robustness_request.py +6 -0
- eval_studio_client/api/test/test_dashboard_report_service_api.py +37 -0
- eval_studio_client/api/test/test_dashboard_test_case_annotation_service_api.py +43 -0
- eval_studio_client/api/test/test_leaderboard_report_service_api.py +6 -0
- eval_studio_client/api/test/test_leaderboard_service_api.py +12 -0
- eval_studio_client/api/test/test_leaderboard_test_case_annotation_service_api.py +43 -0
- eval_studio_client/api/test/test_operation_service_api.py +18 -0
- eval_studio_client/api/test/test_required_the_dashboard_test_case_annotation_to_update.py +57 -0
- eval_studio_client/api/test/test_required_the_leaderboard_test_case_annotation_to_update.py +57 -0
- eval_studio_client/api/test/test_required_the_leaderboard_to_update.py +2 -1
- eval_studio_client/api/test/test_required_the_operation_to_finalize.py +2 -1
- eval_studio_client/api/test/test_required_the_operation_to_update.py +2 -1
- eval_studio_client/api/test/test_test_case_service_api.py +6 -0
- eval_studio_client/api/test/test_test_case_service_append_test_cases_request.py +52 -0
- eval_studio_client/api/test/test_test_service_api.py +6 -0
- eval_studio_client/api/test/test_v1_abort_operation_response.py +2 -1
- eval_studio_client/api/test/test_v1_actual_output_meta.py +61 -0
- eval_studio_client/api/test/test_v1_actual_output_meta_diff.py +66 -0
- eval_studio_client/api/test/test_v1_agent_chat_activity_diagram.py +65 -0
- eval_studio_client/api/test/test_v1_agent_chat_activity_diagram_edge.py +53 -0
- eval_studio_client/api/test/test_v1_agent_chat_activity_diagram_node.py +53 -0
- eval_studio_client/api/test/test_v1_agent_chat_activity_diagram_row.py +56 -0
- eval_studio_client/api/test/test_v1_agent_chat_script_usage.py +54 -0
- eval_studio_client/api/test/test_v1_agent_chat_scripts_bar_chart.py +57 -0
- eval_studio_client/api/test/test_v1_agent_chat_tool_usage.py +54 -0
- eval_studio_client/api/test/test_v1_agent_chat_tools_bar_chart.py +57 -0
- eval_studio_client/api/test/test_v1_all_metric_scores.py +53 -0
- eval_studio_client/api/test/test_v1_append_test_cases_response.py +74 -0
- eval_studio_client/api/test/test_v1_batch_create_leaderboards_request.py +2 -1
- eval_studio_client/api/test/test_v1_batch_create_leaderboards_response.py +2 -1
- eval_studio_client/api/test/test_v1_batch_create_leaderboards_without_cache_request.py +120 -0
- eval_studio_client/api/test/test_v1_batch_create_leaderboards_without_cache_response.py +72 -0
- eval_studio_client/api/test/test_v1_batch_delete_leaderboards_response.py +2 -1
- eval_studio_client/api/test/test_v1_batch_get_leaderboards_response.py +2 -1
- eval_studio_client/api/test/test_v1_batch_get_operations_response.py +2 -1
- eval_studio_client/api/test/test_v1_batch_import_leaderboard_response.py +2 -1
- eval_studio_client/api/test/test_v1_batch_mark_operation_seen_by_creator_response.py +74 -0
- eval_studio_client/api/test/test_v1_cmp_leaderboard_reports_request.py +55 -0
- eval_studio_client/api/test/test_v1_cmp_leaderboard_reports_response.py +255 -0
- eval_studio_client/api/test/test_v1_comparison_item.py +233 -0
- eval_studio_client/api/test/test_v1_comparison_metric_score.py +52 -0
- eval_studio_client/api/test/test_v1_comparison_result.py +258 -0
- eval_studio_client/api/test/test_v1_comparison_summary.py +53 -0
- eval_studio_client/api/test/test_v1_create_evaluation_request.py +2 -1
- eval_studio_client/api/test/test_v1_create_leaderboard_request.py +2 -1
- eval_studio_client/api/test/test_v1_create_leaderboard_response.py +2 -1
- eval_studio_client/api/test/test_v1_create_leaderboard_without_cache_response.py +2 -1
- eval_studio_client/api/test/test_v1_create_test_from_test_cases_request.py +54 -0
- eval_studio_client/api/test/test_v1_create_test_from_test_cases_response.py +68 -0
- eval_studio_client/api/test/test_v1_dashboard_report.py +142 -0
- eval_studio_client/api/test/test_v1_dashboard_report_result.py +72 -0
- eval_studio_client/api/test/test_v1_dashboard_test_case_annotation.py +58 -0
- eval_studio_client/api/test/test_v1_data_fragment.py +57 -0
- eval_studio_client/api/test/test_v1_deep_compare_leaderboards_request.py +55 -0
- eval_studio_client/api/test/test_v1_deep_compare_leaderboards_response.py +255 -0
- eval_studio_client/api/test/test_v1_delete_leaderboard_response.py +2 -1
- eval_studio_client/api/test/test_v1_diff_item.py +226 -0
- eval_studio_client/api/test/test_v1_evaluation_type.py +33 -0
- eval_studio_client/api/test/test_v1_finalize_operation_response.py +2 -1
- eval_studio_client/api/test/test_v1_flipped_metric.py +53 -0
- eval_studio_client/api/test/test_v1_generate_test_cases_response.py +2 -1
- eval_studio_client/api/test/test_v1_get_dashboard_report_response.py +143 -0
- eval_studio_client/api/test/test_v1_get_info_response.py +4 -1
- eval_studio_client/api/test/test_v1_get_leaderboard_report_response.py +39 -2
- eval_studio_client/api/test/test_v1_get_leaderboard_response.py +2 -1
- eval_studio_client/api/test/test_v1_get_operation_response.py +2 -1
- eval_studio_client/api/test/test_v1_get_stats_response.py +3 -1
- eval_studio_client/api/test/test_v1_human_decision.py +33 -0
- eval_studio_client/api/test/test_v1_import_leaderboard_response.py +2 -1
- eval_studio_client/api/test/test_v1_import_test_cases_from_library_response.py +2 -1
- eval_studio_client/api/test/test_v1_info.py +4 -1
- eval_studio_client/api/test/test_v1_leaderboard.py +2 -1
- eval_studio_client/api/test/test_v1_leaderboard_cmp_report.py +254 -0
- eval_studio_client/api/test/test_v1_leaderboard_comparison_item.py +53 -0
- eval_studio_client/api/test/test_v1_leaderboard_info.py +57 -0
- eval_studio_client/api/test/test_v1_leaderboard_report.py +39 -2
- eval_studio_client/api/test/test_v1_leaderboard_report_actual_output_meta.py +33 -1
- eval_studio_client/api/test/test_v1_leaderboard_report_result.py +39 -2
- eval_studio_client/api/test/test_v1_leaderboard_report_result_view.py +33 -0
- eval_studio_client/api/test/test_v1_leaderboard_test_case_annotation.py +58 -0
- eval_studio_client/api/test/test_v1_list_dashboard_test_case_annotations_response.py +61 -0
- eval_studio_client/api/test/test_v1_list_leaderboard_test_case_annotations_response.py +61 -0
- eval_studio_client/api/test/test_v1_list_leaderboards_response.py +2 -1
- eval_studio_client/api/test/test_v1_list_most_recent_leaderboards_response.py +2 -1
- eval_studio_client/api/test/test_v1_list_operations_response.py +4 -2
- eval_studio_client/api/test/test_v1_list_unseen_operations_response.py +75 -0
- eval_studio_client/api/test/test_v1_mark_operation_seen_by_creator_response.py +72 -0
- eval_studio_client/api/test/test_v1_metric.py +52 -0
- eval_studio_client/api/test/test_v1_metric_average.py +58 -0
- eval_studio_client/api/test/test_v1_metric_meta.py +66 -0
- eval_studio_client/api/test/test_v1_models_comparisons.py +54 -0
- eval_studio_client/api/test/test_v1_models_comparisons_metrics.py +65 -0
- eval_studio_client/api/test/test_v1_models_overview.py +60 -0
- eval_studio_client/api/test/test_v1_operation.py +2 -1
- eval_studio_client/api/test/test_v1_operation_view.py +33 -0
- eval_studio_client/api/test/test_v1_process_workflow_node_response.py +2 -1
- eval_studio_client/api/test/test_v1_retrieved_context_diff.py +66 -0
- eval_studio_client/api/test/test_v1_stats.py +3 -1
- eval_studio_client/api/test/test_v1_technical_metrics.py +62 -0
- eval_studio_client/api/test/test_v1_technical_metrics_detail.py +55 -0
- eval_studio_client/api/test/test_v1_test_case_leaderboard_item.py +53 -0
- eval_studio_client/api/test/test_v1_test_case_relationship_info.py +53 -0
- eval_studio_client/api/test/test_v1_test_case_result.py +106 -0
- eval_studio_client/api/test/test_v1_text_similarity_metric.py +33 -0
- eval_studio_client/api/test/test_v1_update_dashboard_test_case_annotation_response.py +59 -0
- eval_studio_client/api/test/test_v1_update_leaderboard_response.py +2 -1
- eval_studio_client/api/test/test_v1_update_leaderboard_test_case_annotation_response.py +59 -0
- eval_studio_client/api/test/test_v1_update_operation_response.py +2 -1
- eval_studio_client/gen/openapiv2/eval_studio.swagger.json +2340 -210
- eval_studio_client/models.py +18 -6
- {eval_studio_client-1.2.4a2.dist-info → eval_studio_client-1.3.0.dist-info}/METADATA +2 -2
- {eval_studio_client-1.2.4a2.dist-info → eval_studio_client-1.3.0.dist-info}/RECORD +306 -111
- {eval_studio_client-1.2.4a2.dist-info → eval_studio_client-1.3.0.dist-info}/WHEEL +0 -0
|
@@ -42,7 +42,7 @@ class TestClassServiceApi:
|
|
|
42
42
|
@validate_call
|
|
43
43
|
def test_class_service_get_test_class(
|
|
44
44
|
self,
|
|
45
|
-
|
|
45
|
+
name_10: Annotated[str, Field(strict=True, description="The name of the TestClass to retrieve. Format: testClasses/<UUID>")],
|
|
46
46
|
_request_timeout: Union[
|
|
47
47
|
None,
|
|
48
48
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -59,8 +59,8 @@ class TestClassServiceApi:
|
|
|
59
59
|
"""test_class_service_get_test_class
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
:param
|
|
63
|
-
:type
|
|
62
|
+
:param name_10: The name of the TestClass to retrieve. Format: testClasses/<UUID> (required)
|
|
63
|
+
:type name_10: str
|
|
64
64
|
:param _request_timeout: timeout setting for this request. If one
|
|
65
65
|
number provided, it will be total request
|
|
66
66
|
timeout. It can also be a pair (tuple) of
|
|
@@ -84,7 +84,7 @@ class TestClassServiceApi:
|
|
|
84
84
|
""" # noqa: E501
|
|
85
85
|
|
|
86
86
|
_param = self._test_class_service_get_test_class_serialize(
|
|
87
|
-
|
|
87
|
+
name_10=name_10,
|
|
88
88
|
_request_auth=_request_auth,
|
|
89
89
|
_content_type=_content_type,
|
|
90
90
|
_headers=_headers,
|
|
@@ -108,7 +108,7 @@ class TestClassServiceApi:
|
|
|
108
108
|
@validate_call
|
|
109
109
|
def test_class_service_get_test_class_with_http_info(
|
|
110
110
|
self,
|
|
111
|
-
|
|
111
|
+
name_10: Annotated[str, Field(strict=True, description="The name of the TestClass to retrieve. Format: testClasses/<UUID>")],
|
|
112
112
|
_request_timeout: Union[
|
|
113
113
|
None,
|
|
114
114
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -125,8 +125,8 @@ class TestClassServiceApi:
|
|
|
125
125
|
"""test_class_service_get_test_class
|
|
126
126
|
|
|
127
127
|
|
|
128
|
-
:param
|
|
129
|
-
:type
|
|
128
|
+
:param name_10: The name of the TestClass to retrieve. Format: testClasses/<UUID> (required)
|
|
129
|
+
:type name_10: str
|
|
130
130
|
:param _request_timeout: timeout setting for this request. If one
|
|
131
131
|
number provided, it will be total request
|
|
132
132
|
timeout. It can also be a pair (tuple) of
|
|
@@ -150,7 +150,7 @@ class TestClassServiceApi:
|
|
|
150
150
|
""" # noqa: E501
|
|
151
151
|
|
|
152
152
|
_param = self._test_class_service_get_test_class_serialize(
|
|
153
|
-
|
|
153
|
+
name_10=name_10,
|
|
154
154
|
_request_auth=_request_auth,
|
|
155
155
|
_content_type=_content_type,
|
|
156
156
|
_headers=_headers,
|
|
@@ -174,7 +174,7 @@ class TestClassServiceApi:
|
|
|
174
174
|
@validate_call
|
|
175
175
|
def test_class_service_get_test_class_without_preload_content(
|
|
176
176
|
self,
|
|
177
|
-
|
|
177
|
+
name_10: Annotated[str, Field(strict=True, description="The name of the TestClass to retrieve. Format: testClasses/<UUID>")],
|
|
178
178
|
_request_timeout: Union[
|
|
179
179
|
None,
|
|
180
180
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -191,8 +191,8 @@ class TestClassServiceApi:
|
|
|
191
191
|
"""test_class_service_get_test_class
|
|
192
192
|
|
|
193
193
|
|
|
194
|
-
:param
|
|
195
|
-
:type
|
|
194
|
+
:param name_10: The name of the TestClass to retrieve. Format: testClasses/<UUID> (required)
|
|
195
|
+
:type name_10: str
|
|
196
196
|
:param _request_timeout: timeout setting for this request. If one
|
|
197
197
|
number provided, it will be total request
|
|
198
198
|
timeout. It can also be a pair (tuple) of
|
|
@@ -216,7 +216,7 @@ class TestClassServiceApi:
|
|
|
216
216
|
""" # noqa: E501
|
|
217
217
|
|
|
218
218
|
_param = self._test_class_service_get_test_class_serialize(
|
|
219
|
-
|
|
219
|
+
name_10=name_10,
|
|
220
220
|
_request_auth=_request_auth,
|
|
221
221
|
_content_type=_content_type,
|
|
222
222
|
_headers=_headers,
|
|
@@ -235,7 +235,7 @@ class TestClassServiceApi:
|
|
|
235
235
|
|
|
236
236
|
def _test_class_service_get_test_class_serialize(
|
|
237
237
|
self,
|
|
238
|
-
|
|
238
|
+
name_10,
|
|
239
239
|
_request_auth,
|
|
240
240
|
_content_type,
|
|
241
241
|
_headers,
|
|
@@ -255,8 +255,8 @@ class TestClassServiceApi:
|
|
|
255
255
|
_body_params: Optional[bytes] = None
|
|
256
256
|
|
|
257
257
|
# process the path parameters
|
|
258
|
-
if
|
|
259
|
-
_path_params['
|
|
258
|
+
if name_10 is not None:
|
|
259
|
+
_path_params['name_10'] = name_10
|
|
260
260
|
# process the query parameters
|
|
261
261
|
# process the header parameters
|
|
262
262
|
# process the form parameters
|
|
@@ -277,7 +277,7 @@ class TestClassServiceApi:
|
|
|
277
277
|
|
|
278
278
|
return self.api_client.param_serialize(
|
|
279
279
|
method='GET',
|
|
280
|
-
resource_path='/v1/{
|
|
280
|
+
resource_path='/v1/{name_10}',
|
|
281
281
|
path_params=_path_params,
|
|
282
282
|
query_params=_query_params,
|
|
283
283
|
header_params=_header_params,
|
|
@@ -34,6 +34,8 @@ from eval_studio_client.api.models.v1_batch_get_tests_response import V1BatchGet
|
|
|
34
34
|
from eval_studio_client.api.models.v1_batch_import_tests_request import V1BatchImportTestsRequest
|
|
35
35
|
from eval_studio_client.api.models.v1_batch_import_tests_response import V1BatchImportTestsResponse
|
|
36
36
|
from eval_studio_client.api.models.v1_clone_test_response import V1CloneTestResponse
|
|
37
|
+
from eval_studio_client.api.models.v1_create_test_from_test_cases_request import V1CreateTestFromTestCasesRequest
|
|
38
|
+
from eval_studio_client.api.models.v1_create_test_from_test_cases_response import V1CreateTestFromTestCasesResponse
|
|
37
39
|
from eval_studio_client.api.models.v1_create_test_response import V1CreateTestResponse
|
|
38
40
|
from eval_studio_client.api.models.v1_delete_test_response import V1DeleteTestResponse
|
|
39
41
|
from eval_studio_client.api.models.v1_generate_test_cases_response import V1GenerateTestCasesResponse
|
|
@@ -1407,6 +1409,273 @@ class TestServiceApi:
|
|
|
1407
1409
|
|
|
1408
1410
|
|
|
1409
1411
|
|
|
1412
|
+
@validate_call
|
|
1413
|
+
def test_service_create_test_from_test_cases(
|
|
1414
|
+
self,
|
|
1415
|
+
body: V1CreateTestFromTestCasesRequest,
|
|
1416
|
+
_request_timeout: Union[
|
|
1417
|
+
None,
|
|
1418
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1419
|
+
Tuple[
|
|
1420
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1421
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1422
|
+
]
|
|
1423
|
+
] = None,
|
|
1424
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1425
|
+
_content_type: Optional[StrictStr] = None,
|
|
1426
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1427
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1428
|
+
) -> V1CreateTestFromTestCasesResponse:
|
|
1429
|
+
"""test_service_create_test_from_test_cases
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
:param body: (required)
|
|
1433
|
+
:type body: V1CreateTestFromTestCasesRequest
|
|
1434
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1435
|
+
number provided, it will be total request
|
|
1436
|
+
timeout. It can also be a pair (tuple) of
|
|
1437
|
+
(connection, read) timeouts.
|
|
1438
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1439
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1440
|
+
request; this effectively ignores the
|
|
1441
|
+
authentication in the spec for a single request.
|
|
1442
|
+
:type _request_auth: dict, optional
|
|
1443
|
+
:param _content_type: force content-type for the request.
|
|
1444
|
+
:type _content_type: str, Optional
|
|
1445
|
+
:param _headers: set to override the headers for a single
|
|
1446
|
+
request; this effectively ignores the headers
|
|
1447
|
+
in the spec for a single request.
|
|
1448
|
+
:type _headers: dict, optional
|
|
1449
|
+
:param _host_index: set to override the host_index for a single
|
|
1450
|
+
request; this effectively ignores the host_index
|
|
1451
|
+
in the spec for a single request.
|
|
1452
|
+
:type _host_index: int, optional
|
|
1453
|
+
:return: Returns the result object.
|
|
1454
|
+
""" # noqa: E501
|
|
1455
|
+
|
|
1456
|
+
_param = self._test_service_create_test_from_test_cases_serialize(
|
|
1457
|
+
body=body,
|
|
1458
|
+
_request_auth=_request_auth,
|
|
1459
|
+
_content_type=_content_type,
|
|
1460
|
+
_headers=_headers,
|
|
1461
|
+
_host_index=_host_index
|
|
1462
|
+
)
|
|
1463
|
+
|
|
1464
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1465
|
+
'200': "V1CreateTestFromTestCasesResponse",
|
|
1466
|
+
}
|
|
1467
|
+
response_data = self.api_client.call_api(
|
|
1468
|
+
*_param,
|
|
1469
|
+
_request_timeout=_request_timeout
|
|
1470
|
+
)
|
|
1471
|
+
response_data.read()
|
|
1472
|
+
return self.api_client.response_deserialize(
|
|
1473
|
+
response_data=response_data,
|
|
1474
|
+
response_types_map=_response_types_map,
|
|
1475
|
+
).data
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
@validate_call
|
|
1479
|
+
def test_service_create_test_from_test_cases_with_http_info(
|
|
1480
|
+
self,
|
|
1481
|
+
body: V1CreateTestFromTestCasesRequest,
|
|
1482
|
+
_request_timeout: Union[
|
|
1483
|
+
None,
|
|
1484
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1485
|
+
Tuple[
|
|
1486
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1487
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1488
|
+
]
|
|
1489
|
+
] = None,
|
|
1490
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1491
|
+
_content_type: Optional[StrictStr] = None,
|
|
1492
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1493
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1494
|
+
) -> ApiResponse[V1CreateTestFromTestCasesResponse]:
|
|
1495
|
+
"""test_service_create_test_from_test_cases
|
|
1496
|
+
|
|
1497
|
+
|
|
1498
|
+
:param body: (required)
|
|
1499
|
+
:type body: V1CreateTestFromTestCasesRequest
|
|
1500
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1501
|
+
number provided, it will be total request
|
|
1502
|
+
timeout. It can also be a pair (tuple) of
|
|
1503
|
+
(connection, read) timeouts.
|
|
1504
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1505
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1506
|
+
request; this effectively ignores the
|
|
1507
|
+
authentication in the spec for a single request.
|
|
1508
|
+
:type _request_auth: dict, optional
|
|
1509
|
+
:param _content_type: force content-type for the request.
|
|
1510
|
+
:type _content_type: str, Optional
|
|
1511
|
+
:param _headers: set to override the headers for a single
|
|
1512
|
+
request; this effectively ignores the headers
|
|
1513
|
+
in the spec for a single request.
|
|
1514
|
+
:type _headers: dict, optional
|
|
1515
|
+
:param _host_index: set to override the host_index for a single
|
|
1516
|
+
request; this effectively ignores the host_index
|
|
1517
|
+
in the spec for a single request.
|
|
1518
|
+
:type _host_index: int, optional
|
|
1519
|
+
:return: Returns the result object.
|
|
1520
|
+
""" # noqa: E501
|
|
1521
|
+
|
|
1522
|
+
_param = self._test_service_create_test_from_test_cases_serialize(
|
|
1523
|
+
body=body,
|
|
1524
|
+
_request_auth=_request_auth,
|
|
1525
|
+
_content_type=_content_type,
|
|
1526
|
+
_headers=_headers,
|
|
1527
|
+
_host_index=_host_index
|
|
1528
|
+
)
|
|
1529
|
+
|
|
1530
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1531
|
+
'200': "V1CreateTestFromTestCasesResponse",
|
|
1532
|
+
}
|
|
1533
|
+
response_data = self.api_client.call_api(
|
|
1534
|
+
*_param,
|
|
1535
|
+
_request_timeout=_request_timeout
|
|
1536
|
+
)
|
|
1537
|
+
response_data.read()
|
|
1538
|
+
return self.api_client.response_deserialize(
|
|
1539
|
+
response_data=response_data,
|
|
1540
|
+
response_types_map=_response_types_map,
|
|
1541
|
+
)
|
|
1542
|
+
|
|
1543
|
+
|
|
1544
|
+
@validate_call
|
|
1545
|
+
def test_service_create_test_from_test_cases_without_preload_content(
|
|
1546
|
+
self,
|
|
1547
|
+
body: V1CreateTestFromTestCasesRequest,
|
|
1548
|
+
_request_timeout: Union[
|
|
1549
|
+
None,
|
|
1550
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1551
|
+
Tuple[
|
|
1552
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1553
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1554
|
+
]
|
|
1555
|
+
] = None,
|
|
1556
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1557
|
+
_content_type: Optional[StrictStr] = None,
|
|
1558
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1559
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1560
|
+
) -> RESTResponseType:
|
|
1561
|
+
"""test_service_create_test_from_test_cases
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
:param body: (required)
|
|
1565
|
+
:type body: V1CreateTestFromTestCasesRequest
|
|
1566
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1567
|
+
number provided, it will be total request
|
|
1568
|
+
timeout. It can also be a pair (tuple) of
|
|
1569
|
+
(connection, read) timeouts.
|
|
1570
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1571
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1572
|
+
request; this effectively ignores the
|
|
1573
|
+
authentication in the spec for a single request.
|
|
1574
|
+
:type _request_auth: dict, optional
|
|
1575
|
+
:param _content_type: force content-type for the request.
|
|
1576
|
+
:type _content_type: str, Optional
|
|
1577
|
+
:param _headers: set to override the headers for a single
|
|
1578
|
+
request; this effectively ignores the headers
|
|
1579
|
+
in the spec for a single request.
|
|
1580
|
+
:type _headers: dict, optional
|
|
1581
|
+
:param _host_index: set to override the host_index for a single
|
|
1582
|
+
request; this effectively ignores the host_index
|
|
1583
|
+
in the spec for a single request.
|
|
1584
|
+
:type _host_index: int, optional
|
|
1585
|
+
:return: Returns the result object.
|
|
1586
|
+
""" # noqa: E501
|
|
1587
|
+
|
|
1588
|
+
_param = self._test_service_create_test_from_test_cases_serialize(
|
|
1589
|
+
body=body,
|
|
1590
|
+
_request_auth=_request_auth,
|
|
1591
|
+
_content_type=_content_type,
|
|
1592
|
+
_headers=_headers,
|
|
1593
|
+
_host_index=_host_index
|
|
1594
|
+
)
|
|
1595
|
+
|
|
1596
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1597
|
+
'200': "V1CreateTestFromTestCasesResponse",
|
|
1598
|
+
}
|
|
1599
|
+
response_data = self.api_client.call_api(
|
|
1600
|
+
*_param,
|
|
1601
|
+
_request_timeout=_request_timeout
|
|
1602
|
+
)
|
|
1603
|
+
return response_data.response
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
def _test_service_create_test_from_test_cases_serialize(
|
|
1607
|
+
self,
|
|
1608
|
+
body,
|
|
1609
|
+
_request_auth,
|
|
1610
|
+
_content_type,
|
|
1611
|
+
_headers,
|
|
1612
|
+
_host_index,
|
|
1613
|
+
) -> RequestSerialized:
|
|
1614
|
+
|
|
1615
|
+
_host = None
|
|
1616
|
+
|
|
1617
|
+
_collection_formats: Dict[str, str] = {
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
_path_params: Dict[str, str] = {}
|
|
1621
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1622
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1623
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1624
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1625
|
+
_body_params: Optional[bytes] = None
|
|
1626
|
+
|
|
1627
|
+
# process the path parameters
|
|
1628
|
+
# process the query parameters
|
|
1629
|
+
# process the header parameters
|
|
1630
|
+
# process the form parameters
|
|
1631
|
+
# process the body parameter
|
|
1632
|
+
if body is not None:
|
|
1633
|
+
_body_params = body
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
# set the HTTP header `Accept`
|
|
1637
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1638
|
+
[
|
|
1639
|
+
'application/json'
|
|
1640
|
+
]
|
|
1641
|
+
)
|
|
1642
|
+
|
|
1643
|
+
# set the HTTP header `Content-Type`
|
|
1644
|
+
if _content_type:
|
|
1645
|
+
_header_params['Content-Type'] = _content_type
|
|
1646
|
+
else:
|
|
1647
|
+
_default_content_type = (
|
|
1648
|
+
self.api_client.select_header_content_type(
|
|
1649
|
+
[
|
|
1650
|
+
'application/json'
|
|
1651
|
+
]
|
|
1652
|
+
)
|
|
1653
|
+
)
|
|
1654
|
+
if _default_content_type is not None:
|
|
1655
|
+
_header_params['Content-Type'] = _default_content_type
|
|
1656
|
+
|
|
1657
|
+
# authentication setting
|
|
1658
|
+
_auth_settings: List[str] = [
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
return self.api_client.param_serialize(
|
|
1662
|
+
method='POST',
|
|
1663
|
+
resource_path='/v1/tests:createTestFromTestCases',
|
|
1664
|
+
path_params=_path_params,
|
|
1665
|
+
query_params=_query_params,
|
|
1666
|
+
header_params=_header_params,
|
|
1667
|
+
body=_body_params,
|
|
1668
|
+
post_params=_form_params,
|
|
1669
|
+
files=_files,
|
|
1670
|
+
auth_settings=_auth_settings,
|
|
1671
|
+
collection_formats=_collection_formats,
|
|
1672
|
+
_host=_host,
|
|
1673
|
+
_request_auth=_request_auth
|
|
1674
|
+
)
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
|
|
1410
1679
|
@validate_call
|
|
1411
1680
|
def test_service_delete_test(
|
|
1412
1681
|
self,
|
|
@@ -1963,7 +2232,7 @@ class TestServiceApi:
|
|
|
1963
2232
|
@validate_call
|
|
1964
2233
|
def test_service_get_test(
|
|
1965
2234
|
self,
|
|
1966
|
-
|
|
2235
|
+
name_11: Annotated[str, Field(strict=True, description="Required. The name of the Test to retrieve.")],
|
|
1967
2236
|
_request_timeout: Union[
|
|
1968
2237
|
None,
|
|
1969
2238
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1980,8 +2249,8 @@ class TestServiceApi:
|
|
|
1980
2249
|
"""test_service_get_test
|
|
1981
2250
|
|
|
1982
2251
|
|
|
1983
|
-
:param
|
|
1984
|
-
:type
|
|
2252
|
+
:param name_11: Required. The name of the Test to retrieve. (required)
|
|
2253
|
+
:type name_11: str
|
|
1985
2254
|
:param _request_timeout: timeout setting for this request. If one
|
|
1986
2255
|
number provided, it will be total request
|
|
1987
2256
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2005,7 +2274,7 @@ class TestServiceApi:
|
|
|
2005
2274
|
""" # noqa: E501
|
|
2006
2275
|
|
|
2007
2276
|
_param = self._test_service_get_test_serialize(
|
|
2008
|
-
|
|
2277
|
+
name_11=name_11,
|
|
2009
2278
|
_request_auth=_request_auth,
|
|
2010
2279
|
_content_type=_content_type,
|
|
2011
2280
|
_headers=_headers,
|
|
@@ -2029,7 +2298,7 @@ class TestServiceApi:
|
|
|
2029
2298
|
@validate_call
|
|
2030
2299
|
def test_service_get_test_with_http_info(
|
|
2031
2300
|
self,
|
|
2032
|
-
|
|
2301
|
+
name_11: Annotated[str, Field(strict=True, description="Required. The name of the Test to retrieve.")],
|
|
2033
2302
|
_request_timeout: Union[
|
|
2034
2303
|
None,
|
|
2035
2304
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2046,8 +2315,8 @@ class TestServiceApi:
|
|
|
2046
2315
|
"""test_service_get_test
|
|
2047
2316
|
|
|
2048
2317
|
|
|
2049
|
-
:param
|
|
2050
|
-
:type
|
|
2318
|
+
:param name_11: Required. The name of the Test to retrieve. (required)
|
|
2319
|
+
:type name_11: str
|
|
2051
2320
|
:param _request_timeout: timeout setting for this request. If one
|
|
2052
2321
|
number provided, it will be total request
|
|
2053
2322
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2071,7 +2340,7 @@ class TestServiceApi:
|
|
|
2071
2340
|
""" # noqa: E501
|
|
2072
2341
|
|
|
2073
2342
|
_param = self._test_service_get_test_serialize(
|
|
2074
|
-
|
|
2343
|
+
name_11=name_11,
|
|
2075
2344
|
_request_auth=_request_auth,
|
|
2076
2345
|
_content_type=_content_type,
|
|
2077
2346
|
_headers=_headers,
|
|
@@ -2095,7 +2364,7 @@ class TestServiceApi:
|
|
|
2095
2364
|
@validate_call
|
|
2096
2365
|
def test_service_get_test_without_preload_content(
|
|
2097
2366
|
self,
|
|
2098
|
-
|
|
2367
|
+
name_11: Annotated[str, Field(strict=True, description="Required. The name of the Test to retrieve.")],
|
|
2099
2368
|
_request_timeout: Union[
|
|
2100
2369
|
None,
|
|
2101
2370
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2112,8 +2381,8 @@ class TestServiceApi:
|
|
|
2112
2381
|
"""test_service_get_test
|
|
2113
2382
|
|
|
2114
2383
|
|
|
2115
|
-
:param
|
|
2116
|
-
:type
|
|
2384
|
+
:param name_11: Required. The name of the Test to retrieve. (required)
|
|
2385
|
+
:type name_11: str
|
|
2117
2386
|
:param _request_timeout: timeout setting for this request. If one
|
|
2118
2387
|
number provided, it will be total request
|
|
2119
2388
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2137,7 +2406,7 @@ class TestServiceApi:
|
|
|
2137
2406
|
""" # noqa: E501
|
|
2138
2407
|
|
|
2139
2408
|
_param = self._test_service_get_test_serialize(
|
|
2140
|
-
|
|
2409
|
+
name_11=name_11,
|
|
2141
2410
|
_request_auth=_request_auth,
|
|
2142
2411
|
_content_type=_content_type,
|
|
2143
2412
|
_headers=_headers,
|
|
@@ -2156,7 +2425,7 @@ class TestServiceApi:
|
|
|
2156
2425
|
|
|
2157
2426
|
def _test_service_get_test_serialize(
|
|
2158
2427
|
self,
|
|
2159
|
-
|
|
2428
|
+
name_11,
|
|
2160
2429
|
_request_auth,
|
|
2161
2430
|
_content_type,
|
|
2162
2431
|
_headers,
|
|
@@ -2176,8 +2445,8 @@ class TestServiceApi:
|
|
|
2176
2445
|
_body_params: Optional[bytes] = None
|
|
2177
2446
|
|
|
2178
2447
|
# process the path parameters
|
|
2179
|
-
if
|
|
2180
|
-
_path_params['
|
|
2448
|
+
if name_11 is not None:
|
|
2449
|
+
_path_params['name_11'] = name_11
|
|
2181
2450
|
# process the query parameters
|
|
2182
2451
|
# process the header parameters
|
|
2183
2452
|
# process the form parameters
|
|
@@ -2198,7 +2467,7 @@ class TestServiceApi:
|
|
|
2198
2467
|
|
|
2199
2468
|
return self.api_client.param_serialize(
|
|
2200
2469
|
method='GET',
|
|
2201
|
-
resource_path='/v1/{
|
|
2470
|
+
resource_path='/v1/{name_11}',
|
|
2202
2471
|
path_params=_path_params,
|
|
2203
2472
|
query_params=_query_params,
|
|
2204
2473
|
header_params=_header_params,
|
|
@@ -865,7 +865,7 @@ class WorkflowNodeServiceApi:
|
|
|
865
865
|
@validate_call
|
|
866
866
|
def workflow_node_service_get_workflow_node(
|
|
867
867
|
self,
|
|
868
|
-
|
|
868
|
+
name_12: Annotated[str, Field(strict=True, description="Required. The name of the WorkflowNode to retrieve.")],
|
|
869
869
|
view: Annotated[Optional[StrictStr], Field(description="Optional. The level of detail to include in the response. - WORKFLOW_NODE_VIEW_UNSPECIFIED: Unspecified view. - WORKFLOW_NODE_VIEW_BASIC: Basic view. Lacks large data fields. TODO: describe what fields are omitted. - WORKFLOW_NODE_VIEW_FULL: Full view. Contains all fields.")] = None,
|
|
870
870
|
_request_timeout: Union[
|
|
871
871
|
None,
|
|
@@ -883,8 +883,8 @@ class WorkflowNodeServiceApi:
|
|
|
883
883
|
"""GetWorkflowNode retrieves a WorkflowNode by name. Deleted WorkflowNode is returned without error, it has a delete_time and deleter fields set.
|
|
884
884
|
|
|
885
885
|
|
|
886
|
-
:param
|
|
887
|
-
:type
|
|
886
|
+
:param name_12: Required. The name of the WorkflowNode to retrieve. (required)
|
|
887
|
+
:type name_12: str
|
|
888
888
|
:param view: Optional. The level of detail to include in the response. - WORKFLOW_NODE_VIEW_UNSPECIFIED: Unspecified view. - WORKFLOW_NODE_VIEW_BASIC: Basic view. Lacks large data fields. TODO: describe what fields are omitted. - WORKFLOW_NODE_VIEW_FULL: Full view. Contains all fields.
|
|
889
889
|
:type view: str
|
|
890
890
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -910,7 +910,7 @@ class WorkflowNodeServiceApi:
|
|
|
910
910
|
""" # noqa: E501
|
|
911
911
|
|
|
912
912
|
_param = self._workflow_node_service_get_workflow_node_serialize(
|
|
913
|
-
|
|
913
|
+
name_12=name_12,
|
|
914
914
|
view=view,
|
|
915
915
|
_request_auth=_request_auth,
|
|
916
916
|
_content_type=_content_type,
|
|
@@ -935,7 +935,7 @@ class WorkflowNodeServiceApi:
|
|
|
935
935
|
@validate_call
|
|
936
936
|
def workflow_node_service_get_workflow_node_with_http_info(
|
|
937
937
|
self,
|
|
938
|
-
|
|
938
|
+
name_12: Annotated[str, Field(strict=True, description="Required. The name of the WorkflowNode to retrieve.")],
|
|
939
939
|
view: Annotated[Optional[StrictStr], Field(description="Optional. The level of detail to include in the response. - WORKFLOW_NODE_VIEW_UNSPECIFIED: Unspecified view. - WORKFLOW_NODE_VIEW_BASIC: Basic view. Lacks large data fields. TODO: describe what fields are omitted. - WORKFLOW_NODE_VIEW_FULL: Full view. Contains all fields.")] = None,
|
|
940
940
|
_request_timeout: Union[
|
|
941
941
|
None,
|
|
@@ -953,8 +953,8 @@ class WorkflowNodeServiceApi:
|
|
|
953
953
|
"""GetWorkflowNode retrieves a WorkflowNode by name. Deleted WorkflowNode is returned without error, it has a delete_time and deleter fields set.
|
|
954
954
|
|
|
955
955
|
|
|
956
|
-
:param
|
|
957
|
-
:type
|
|
956
|
+
:param name_12: Required. The name of the WorkflowNode to retrieve. (required)
|
|
957
|
+
:type name_12: str
|
|
958
958
|
:param view: Optional. The level of detail to include in the response. - WORKFLOW_NODE_VIEW_UNSPECIFIED: Unspecified view. - WORKFLOW_NODE_VIEW_BASIC: Basic view. Lacks large data fields. TODO: describe what fields are omitted. - WORKFLOW_NODE_VIEW_FULL: Full view. Contains all fields.
|
|
959
959
|
:type view: str
|
|
960
960
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -980,7 +980,7 @@ class WorkflowNodeServiceApi:
|
|
|
980
980
|
""" # noqa: E501
|
|
981
981
|
|
|
982
982
|
_param = self._workflow_node_service_get_workflow_node_serialize(
|
|
983
|
-
|
|
983
|
+
name_12=name_12,
|
|
984
984
|
view=view,
|
|
985
985
|
_request_auth=_request_auth,
|
|
986
986
|
_content_type=_content_type,
|
|
@@ -1005,7 +1005,7 @@ class WorkflowNodeServiceApi:
|
|
|
1005
1005
|
@validate_call
|
|
1006
1006
|
def workflow_node_service_get_workflow_node_without_preload_content(
|
|
1007
1007
|
self,
|
|
1008
|
-
|
|
1008
|
+
name_12: Annotated[str, Field(strict=True, description="Required. The name of the WorkflowNode to retrieve.")],
|
|
1009
1009
|
view: Annotated[Optional[StrictStr], Field(description="Optional. The level of detail to include in the response. - WORKFLOW_NODE_VIEW_UNSPECIFIED: Unspecified view. - WORKFLOW_NODE_VIEW_BASIC: Basic view. Lacks large data fields. TODO: describe what fields are omitted. - WORKFLOW_NODE_VIEW_FULL: Full view. Contains all fields.")] = None,
|
|
1010
1010
|
_request_timeout: Union[
|
|
1011
1011
|
None,
|
|
@@ -1023,8 +1023,8 @@ class WorkflowNodeServiceApi:
|
|
|
1023
1023
|
"""GetWorkflowNode retrieves a WorkflowNode by name. Deleted WorkflowNode is returned without error, it has a delete_time and deleter fields set.
|
|
1024
1024
|
|
|
1025
1025
|
|
|
1026
|
-
:param
|
|
1027
|
-
:type
|
|
1026
|
+
:param name_12: Required. The name of the WorkflowNode to retrieve. (required)
|
|
1027
|
+
:type name_12: str
|
|
1028
1028
|
:param view: Optional. The level of detail to include in the response. - WORKFLOW_NODE_VIEW_UNSPECIFIED: Unspecified view. - WORKFLOW_NODE_VIEW_BASIC: Basic view. Lacks large data fields. TODO: describe what fields are omitted. - WORKFLOW_NODE_VIEW_FULL: Full view. Contains all fields.
|
|
1029
1029
|
:type view: str
|
|
1030
1030
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1050,7 +1050,7 @@ class WorkflowNodeServiceApi:
|
|
|
1050
1050
|
""" # noqa: E501
|
|
1051
1051
|
|
|
1052
1052
|
_param = self._workflow_node_service_get_workflow_node_serialize(
|
|
1053
|
-
|
|
1053
|
+
name_12=name_12,
|
|
1054
1054
|
view=view,
|
|
1055
1055
|
_request_auth=_request_auth,
|
|
1056
1056
|
_content_type=_content_type,
|
|
@@ -1070,7 +1070,7 @@ class WorkflowNodeServiceApi:
|
|
|
1070
1070
|
|
|
1071
1071
|
def _workflow_node_service_get_workflow_node_serialize(
|
|
1072
1072
|
self,
|
|
1073
|
-
|
|
1073
|
+
name_12,
|
|
1074
1074
|
view,
|
|
1075
1075
|
_request_auth,
|
|
1076
1076
|
_content_type,
|
|
@@ -1091,8 +1091,8 @@ class WorkflowNodeServiceApi:
|
|
|
1091
1091
|
_body_params: Optional[bytes] = None
|
|
1092
1092
|
|
|
1093
1093
|
# process the path parameters
|
|
1094
|
-
if
|
|
1095
|
-
_path_params['
|
|
1094
|
+
if name_12 is not None:
|
|
1095
|
+
_path_params['name_12'] = name_12
|
|
1096
1096
|
# process the query parameters
|
|
1097
1097
|
if view is not None:
|
|
1098
1098
|
|
|
@@ -1117,7 +1117,7 @@ class WorkflowNodeServiceApi:
|
|
|
1117
1117
|
|
|
1118
1118
|
return self.api_client.param_serialize(
|
|
1119
1119
|
method='GET',
|
|
1120
|
-
resource_path='/v1/{
|
|
1120
|
+
resource_path='/v1/{name_12}',
|
|
1121
1121
|
path_params=_path_params,
|
|
1122
1122
|
query_params=_query_params,
|
|
1123
1123
|
header_params=_header_params,
|