eval-studio-client 1.0.0a1__py3-none-any.whl → 1.0.1__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 +43 -0
- eval_studio_client/api/api/__init__.py +5 -0
- eval_studio_client/api/api/human_calibration_service_api.py +304 -0
- eval_studio_client/api/api/perturbator_service_api.py +268 -1
- eval_studio_client/api/api/prompt_library_service_api.py +669 -0
- eval_studio_client/api/api/test_service_api.py +568 -0
- eval_studio_client/api/api/workflow_edge_service_api.py +296 -0
- eval_studio_client/api/api/workflow_node_service_api.py +1634 -0
- eval_studio_client/api/api/workflow_service_api.py +1609 -0
- eval_studio_client/api/docs/HumanCalibrationServiceApi.md +77 -0
- eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md +1 -0
- eval_studio_client/api/docs/PerturbatorServiceApi.md +33 -3
- eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md +2 -1
- eval_studio_client/api/docs/PromptLibraryServiceApi.md +155 -0
- eval_studio_client/api/docs/ProtobufNullValue.md +12 -0
- eval_studio_client/api/docs/RequiredTheTestCaseToUpdate.md +1 -0
- eval_studio_client/api/docs/RequiredTheUpdatedWorkflow.md +44 -0
- eval_studio_client/api/docs/RequiredTheUpdatedWorkflowNode.md +44 -0
- eval_studio_client/api/docs/TestServiceApi.md +140 -0
- eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md +1 -0
- eval_studio_client/api/docs/TestServiceImportTestCasesFromLibraryRequest.md +32 -0
- eval_studio_client/api/docs/TestServiceListTestCaseLibraryItemsRequest.md +35 -0
- eval_studio_client/api/docs/TestServicePerturbTestRequest.md +1 -0
- eval_studio_client/api/docs/V1BatchDeleteWorkflowsRequest.md +29 -0
- eval_studio_client/api/docs/V1BatchDeleteWorkflowsResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetWorkflowEdgesResponse.md +29 -0
- eval_studio_client/api/docs/V1BatchGetWorkflowNodesResponse.md +29 -0
- eval_studio_client/api/docs/V1CreateEvaluationRequest.md +1 -0
- eval_studio_client/api/docs/V1CreateWorkflowResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteWorkflowNodeResponse.md +29 -0
- eval_studio_client/api/docs/V1DeleteWorkflowResponse.md +29 -0
- eval_studio_client/api/docs/V1EstimateThresholdRequest.md +33 -0
- eval_studio_client/api/docs/V1GetWorkflowNodePrerequisitesResponse.md +30 -0
- eval_studio_client/api/docs/V1GetWorkflowNodeResponse.md +29 -0
- eval_studio_client/api/docs/V1GetWorkflowResponse.md +29 -0
- eval_studio_client/api/docs/V1ImportEvaluationRequest.md +1 -0
- eval_studio_client/api/docs/V1ImportTestCasesFromLibraryResponse.md +29 -0
- eval_studio_client/api/docs/V1ImportTestCasesRequest.md +33 -0
- eval_studio_client/api/docs/V1LabeledTestCase.md +31 -0
- eval_studio_client/api/docs/V1ListPromptLibraryItemsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListTestCaseLibraryItemsResponse.md +29 -0
- eval_studio_client/api/docs/V1ListWorkflowsResponse.md +29 -0
- eval_studio_client/api/docs/V1ProcessWorkflowNodeResponse.md +29 -0
- eval_studio_client/api/docs/V1PromptLibraryItem.md +42 -0
- eval_studio_client/api/docs/V1TestCase.md +1 -0
- eval_studio_client/api/docs/V1TestSuiteEvaluates.md +11 -0
- eval_studio_client/api/docs/V1UpdateWorkflowNodeResponse.md +29 -0
- eval_studio_client/api/docs/V1UpdateWorkflowResponse.md +29 -0
- eval_studio_client/api/docs/V1Workflow.md +46 -0
- eval_studio_client/api/docs/V1WorkflowEdge.md +40 -0
- eval_studio_client/api/docs/V1WorkflowEdgeType.md +12 -0
- eval_studio_client/api/docs/V1WorkflowNode.md +46 -0
- eval_studio_client/api/docs/V1WorkflowNodeArtifact.md +40 -0
- eval_studio_client/api/docs/V1WorkflowNodeArtifacts.md +29 -0
- eval_studio_client/api/docs/V1WorkflowNodeAttributes.md +30 -0
- eval_studio_client/api/docs/V1WorkflowNodeStatus.md +12 -0
- eval_studio_client/api/docs/V1WorkflowNodeType.md +12 -0
- eval_studio_client/api/docs/V1WorkflowNodeView.md +12 -0
- eval_studio_client/api/docs/V1WorkflowType.md +12 -0
- eval_studio_client/api/docs/WorkflowEdgeServiceApi.md +76 -0
- eval_studio_client/api/docs/WorkflowNodeServiceApi.md +423 -0
- eval_studio_client/api/docs/WorkflowServiceApi.md +417 -0
- eval_studio_client/api/models/__init__.py +38 -0
- eval_studio_client/api/models/perturbation_service_create_perturbation_request.py +8 -2
- eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py +5 -3
- eval_studio_client/api/models/protobuf_null_value.py +36 -0
- eval_studio_client/api/models/required_the_test_case_to_update.py +6 -2
- eval_studio_client/api/models/required_the_updated_workflow.py +152 -0
- eval_studio_client/api/models/required_the_updated_workflow_node.py +152 -0
- eval_studio_client/api/models/test_service_generate_test_cases_request.py +4 -2
- eval_studio_client/api/models/test_service_import_test_cases_from_library_request.py +93 -0
- eval_studio_client/api/models/test_service_list_test_case_library_items_request.py +99 -0
- eval_studio_client/api/models/test_service_perturb_test_request.py +4 -2
- eval_studio_client/api/models/v1_batch_delete_workflows_request.py +87 -0
- eval_studio_client/api/models/v1_batch_delete_workflows_response.py +95 -0
- eval_studio_client/api/models/v1_batch_get_workflow_edges_response.py +95 -0
- eval_studio_client/api/models/v1_batch_get_workflow_nodes_response.py +95 -0
- eval_studio_client/api/models/v1_create_evaluation_request.py +7 -2
- eval_studio_client/api/models/v1_create_workflow_response.py +91 -0
- eval_studio_client/api/models/v1_delete_workflow_node_response.py +91 -0
- eval_studio_client/api/models/v1_delete_workflow_response.py +91 -0
- eval_studio_client/api/models/v1_estimate_threshold_request.py +103 -0
- eval_studio_client/api/models/v1_get_workflow_node_prerequisites_response.py +89 -0
- eval_studio_client/api/models/v1_get_workflow_node_response.py +91 -0
- eval_studio_client/api/models/v1_get_workflow_response.py +91 -0
- eval_studio_client/api/models/v1_import_evaluation_request.py +7 -2
- eval_studio_client/api/models/v1_import_test_cases_from_library_response.py +91 -0
- eval_studio_client/api/models/v1_import_test_cases_request.py +95 -0
- eval_studio_client/api/models/v1_labeled_test_case.py +91 -0
- eval_studio_client/api/models/v1_list_prompt_library_items_response.py +95 -0
- eval_studio_client/api/models/v1_list_test_case_library_items_response.py +95 -0
- eval_studio_client/api/models/v1_list_workflows_response.py +95 -0
- eval_studio_client/api/models/v1_process_workflow_node_response.py +91 -0
- eval_studio_client/api/models/v1_prompt_library_item.py +129 -0
- eval_studio_client/api/models/v1_test_case.py +6 -2
- eval_studio_client/api/models/v1_test_suite_evaluates.py +39 -0
- eval_studio_client/api/models/v1_update_workflow_node_response.py +91 -0
- eval_studio_client/api/models/v1_update_workflow_response.py +91 -0
- eval_studio_client/api/models/v1_workflow.py +156 -0
- eval_studio_client/api/models/v1_workflow_edge.py +123 -0
- eval_studio_client/api/models/v1_workflow_edge_type.py +37 -0
- eval_studio_client/api/models/v1_workflow_node.py +156 -0
- eval_studio_client/api/models/v1_workflow_node_artifact.py +122 -0
- eval_studio_client/api/models/v1_workflow_node_artifacts.py +97 -0
- eval_studio_client/api/models/v1_workflow_node_attributes.py +87 -0
- eval_studio_client/api/models/v1_workflow_node_status.py +40 -0
- eval_studio_client/api/models/v1_workflow_node_type.py +41 -0
- eval_studio_client/api/models/v1_workflow_node_view.py +38 -0
- eval_studio_client/api/models/v1_workflow_type.py +37 -0
- eval_studio_client/api/test/test_human_calibration_service_api.py +38 -0
- eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py +20 -2
- eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py +4 -1
- eval_studio_client/api/test/test_prompt_library_service_api.py +43 -0
- eval_studio_client/api/test/test_protobuf_null_value.py +33 -0
- eval_studio_client/api/test/test_required_the_test_case_to_update.py +4 -1
- eval_studio_client/api/test/test_required_the_updated_workflow.py +88 -0
- eval_studio_client/api/test/test_required_the_updated_workflow_node.py +80 -0
- eval_studio_client/api/test/test_test_service_api.py +12 -0
- eval_studio_client/api/test/test_test_service_generate_test_cases_request.py +4 -1
- eval_studio_client/api/test/test_test_service_import_test_cases_from_library_request.py +56 -0
- eval_studio_client/api/test/test_test_service_list_test_case_library_items_request.py +63 -0
- eval_studio_client/api/test/test_test_service_perturb_test_request.py +4 -1
- eval_studio_client/api/test/test_v1_batch_delete_test_cases_response.py +4 -1
- eval_studio_client/api/test/test_v1_batch_delete_workflows_request.py +53 -0
- eval_studio_client/api/test/test_v1_batch_delete_workflows_response.py +92 -0
- eval_studio_client/api/test/test_v1_batch_get_workflow_edges_response.py +64 -0
- eval_studio_client/api/test/test_v1_batch_get_workflow_nodes_response.py +84 -0
- eval_studio_client/api/test/test_v1_create_evaluation_request.py +20 -2
- eval_studio_client/api/test/test_v1_create_test_case_response.py +4 -1
- eval_studio_client/api/test/test_v1_create_workflow_response.py +90 -0
- eval_studio_client/api/test/test_v1_delete_test_case_response.py +4 -1
- eval_studio_client/api/test/test_v1_delete_workflow_node_response.py +82 -0
- eval_studio_client/api/test/test_v1_delete_workflow_response.py +90 -0
- eval_studio_client/api/test/test_v1_estimate_threshold_request.py +60 -0
- eval_studio_client/api/test/test_v1_evaluation_test.py +4 -1
- eval_studio_client/api/test/test_v1_find_all_test_cases_by_id_response.py +4 -1
- eval_studio_client/api/test/test_v1_get_test_case_response.py +4 -1
- eval_studio_client/api/test/test_v1_get_workflow_node_prerequisites_response.py +56 -0
- eval_studio_client/api/test/test_v1_get_workflow_node_response.py +82 -0
- eval_studio_client/api/test/test_v1_get_workflow_response.py +90 -0
- eval_studio_client/api/test/test_v1_import_evaluation_request.py +16 -1
- eval_studio_client/api/test/test_v1_import_test_cases_from_library_response.py +71 -0
- eval_studio_client/api/test/test_v1_import_test_cases_request.py +57 -0
- eval_studio_client/api/test/test_v1_labeled_test_case.py +53 -0
- eval_studio_client/api/test/test_v1_list_prompt_library_items_response.py +71 -0
- eval_studio_client/api/test/test_v1_list_test_case_library_items_response.py +71 -0
- eval_studio_client/api/test/test_v1_list_test_cases_response.py +4 -1
- eval_studio_client/api/test/test_v1_list_workflows_response.py +92 -0
- eval_studio_client/api/test/test_v1_process_workflow_node_response.py +71 -0
- eval_studio_client/api/test/test_v1_prompt_library_item.py +68 -0
- eval_studio_client/api/test/test_v1_test_case.py +4 -1
- eval_studio_client/api/test/test_v1_test_suite_evaluates.py +33 -0
- eval_studio_client/api/test/test_v1_update_test_case_response.py +4 -1
- eval_studio_client/api/test/test_v1_update_workflow_node_response.py +82 -0
- eval_studio_client/api/test/test_v1_update_workflow_response.py +90 -0
- eval_studio_client/api/test/test_v1_workflow.py +89 -0
- eval_studio_client/api/test/test_v1_workflow_edge.py +61 -0
- eval_studio_client/api/test/test_v1_workflow_edge_type.py +33 -0
- eval_studio_client/api/test/test_v1_workflow_node.py +81 -0
- eval_studio_client/api/test/test_v1_workflow_node_artifact.py +61 -0
- eval_studio_client/api/test/test_v1_workflow_node_artifacts.py +64 -0
- eval_studio_client/api/test/test_v1_workflow_node_attributes.py +51 -0
- eval_studio_client/api/test/test_v1_workflow_node_status.py +33 -0
- eval_studio_client/api/test/test_v1_workflow_node_type.py +33 -0
- eval_studio_client/api/test/test_v1_workflow_node_view.py +33 -0
- eval_studio_client/api/test/test_v1_workflow_type.py +33 -0
- eval_studio_client/api/test/test_workflow_edge_service_api.py +38 -0
- eval_studio_client/api/test/test_workflow_node_service_api.py +73 -0
- eval_studio_client/api/test/test_workflow_service_api.py +73 -0
- eval_studio_client/client.py +7 -0
- eval_studio_client/dashboards.py +66 -18
- eval_studio_client/gen/openapiv2/eval_studio.swagger.json +2665 -794
- eval_studio_client/leaderboards.py +125 -0
- eval_studio_client/models.py +3 -42
- eval_studio_client/test_labs.py +49 -21
- eval_studio_client/tests.py +221 -51
- eval_studio_client/utils.py +26 -0
- {eval_studio_client-1.0.0a1.dist-info → eval_studio_client-1.0.1.dist-info}/METADATA +1 -2
- {eval_studio_client-1.0.0a1.dist-info → eval_studio_client-1.0.1.dist-info}/RECORD +180 -50
- {eval_studio_client-1.0.0a1.dist-info → eval_studio_client-1.0.1.dist-info}/WHEEL +1 -1
|
@@ -1,71 +1,84 @@
|
|
|
1
1
|
eval_studio_client/__about__.py,sha256=7TnXVu0lNAY4UdQ_2iwTlAENGdigMUVBy6UmtWGB6sQ,30
|
|
2
2
|
eval_studio_client/__init__.py,sha256=v8lXY_l4j3lAbIfW21nZFeWZX0sl4nKHbB29h2qYVU8,207
|
|
3
|
-
eval_studio_client/client.py,sha256=
|
|
4
|
-
eval_studio_client/dashboards.py,sha256=
|
|
3
|
+
eval_studio_client/client.py,sha256=49M61MjjVlpbGLX0xVT8frIA7hAaMPoexZLTAf3uR9A,3595
|
|
4
|
+
eval_studio_client/dashboards.py,sha256=xPzvwEIgeWdIMDTbk-T2LZgxyBxgJZxOjP_gYYrd05s,9456
|
|
5
5
|
eval_studio_client/documents.py,sha256=fjsbHnqZnouu0stCf_p15RgoszkY4_gIsbX1hiw7Xv8,3076
|
|
6
6
|
eval_studio_client/evaluators.py,sha256=blJlWMswIGr1u6TQDiiO-fInYVnkBT0Y02J57o8Z094,2100
|
|
7
7
|
eval_studio_client/insights.py,sha256=bhe6XBVJ61-2bcDdNe6HiZsu0sly8LeoYAKo1GkgK08,1199
|
|
8
|
-
eval_studio_client/leaderboards.py,sha256=
|
|
9
|
-
eval_studio_client/models.py,sha256=
|
|
8
|
+
eval_studio_client/leaderboards.py,sha256=8NYTHkPLqGaepTDxxaNwGZnsHGNbriinhGEQz2ASZYQ,12418
|
|
9
|
+
eval_studio_client/models.py,sha256=Mes3lFNg5avAG-x5MUUFAWYZ-eTfSDm26REe53YuCGg,19881
|
|
10
10
|
eval_studio_client/perturbators.py,sha256=CtcWqEgPGpOcDHvYAQBlNDKnS-ZDBkL7Y_Ygsgpvikw,3133
|
|
11
11
|
eval_studio_client/problems.py,sha256=rdGIfo7AqyxGhWMpbIDX1WXFoQvzKktKAWDKRde5VbY,1515
|
|
12
|
-
eval_studio_client/test_labs.py,sha256=
|
|
13
|
-
eval_studio_client/tests.py,sha256=
|
|
14
|
-
eval_studio_client/
|
|
12
|
+
eval_studio_client/test_labs.py,sha256=tePU8z4Cw6wMBrW-pSP3FAaT76Y2RK3xiWaRVndcmv4,12331
|
|
13
|
+
eval_studio_client/tests.py,sha256=PbHCAYc3XOl5w2Xz8qLeBuDVhw3qHDrh33bmDKf7lf4,29425
|
|
14
|
+
eval_studio_client/utils.py,sha256=e5bsQVgNHYNSqSOthxlmncerPdgbvWwQaY_C-libuXk,764
|
|
15
|
+
eval_studio_client/api/__init__.py,sha256=ELzs59tN3fGjZtekIGMxSUyrJwP0wSp9MCKI8l-9vhQ,19414
|
|
15
16
|
eval_studio_client/api/api_client.py,sha256=yFQKmCsVhswcTbdGY4lf-61mf8FVm3Kfon8Qhe1sPKw,26431
|
|
16
17
|
eval_studio_client/api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
17
18
|
eval_studio_client/api/configuration.py,sha256=rAQXjKDfjAk_zcAJaB09S3MefXbG8RRHILcBo9JTYjc,14523
|
|
18
19
|
eval_studio_client/api/exceptions.py,sha256=VE8qQXvxgTEFEP9X23O4EY-nrRc6GEY_fHYIr5yrfHQ,6013
|
|
19
20
|
eval_studio_client/api/rest.py,sha256=gNGsvbhm2CgYxq7TOVPBwucMMYAoO5PFHAeHoW722kc,9457
|
|
20
|
-
eval_studio_client/api/api/__init__.py,sha256=
|
|
21
|
+
eval_studio_client/api/api/__init__.py,sha256=jugYx7S9UbT0lJxgn52SyMEk4S-YWN_sDP2YD09Q6Vc,1877
|
|
21
22
|
eval_studio_client/api/api/dashboard_service_api.py,sha256=vboCwILDsXe7sYLSBzNqM6OY0tB0vrzj_1lY-CGBxuY,88395
|
|
22
23
|
eval_studio_client/api/api/document_service_api.py,sha256=4tQEcpemCcBnwxyHepELNz_XSo6rhOWpngQf6f2BnKo,74867
|
|
23
24
|
eval_studio_client/api/api/evaluation_service_api.py,sha256=4f0gKNH8YTSmOejIdnXyJekhvuecF1LPi1EabDgXvUY,82515
|
|
24
25
|
eval_studio_client/api/api/evaluator_service_api.py,sha256=QOwt0PrrUo1aXrvq7Nsla8Ctuzw0Q0y3J68-ag-Rims,55738
|
|
26
|
+
eval_studio_client/api/api/human_calibration_service_api.py,sha256=98KIqT97s2C7H6iqd90U4fSDUIFsVzBoY6qGXh9j1P0,11714
|
|
25
27
|
eval_studio_client/api/api/info_service_api.py,sha256=1eVJDlATwU8c8hh-WFr26pCCo586aca7i5-5fD3R5gE,10219
|
|
26
28
|
eval_studio_client/api/api/leaderboard_service_api.py,sha256=W5mHdC0-MZaTnHtzmCePCykTIpCz-aLNPBQddHnLDR8,152921
|
|
27
29
|
eval_studio_client/api/api/model_service_api.py,sha256=50dkmpCsCRVbxKXJJID_I2MR-MRCGxwzQWejmsGO-ks,116805
|
|
28
30
|
eval_studio_client/api/api/operation_progress_service_api.py,sha256=f5tG76U4UX3PAC_B6PtRtzAUE54fpggtMc-9BMMF5sI,11690
|
|
29
31
|
eval_studio_client/api/api/operation_service_api.py,sha256=z86HruMwzS9NoeE6z8QA4TmoAp78XMnb3alEXmh6MpI,56464
|
|
30
32
|
eval_studio_client/api/api/perturbation_service_api.py,sha256=8Z7jUxyE6o0VC5HSa_wlCgVWi62SA6RSEMkW2qgzJDU,12599
|
|
31
|
-
eval_studio_client/api/api/perturbator_service_api.py,sha256=
|
|
33
|
+
eval_studio_client/api/api/perturbator_service_api.py,sha256=BTheUZKTE4w-F8scgpYcIkpsZ_2zzOckw6H4gF-R4do,45503
|
|
32
34
|
eval_studio_client/api/api/prompt_generation_service_api.py,sha256=0QQcErjBwFfLNRCUiKefz-3AGo-T1j3Hkq1W6nt6J_U,12656
|
|
35
|
+
eval_studio_client/api/api/prompt_library_service_api.py,sha256=cFaDJdd4FJInMKoW5gkoQSRupSUjZ_xFuNmM0Kg2jdE,28421
|
|
33
36
|
eval_studio_client/api/api/test_case_service_api.py,sha256=jDo-bw_GsmOu1dXIn6kMLwIORWBNNTHYhc8sGWNZYxE,78266
|
|
34
37
|
eval_studio_client/api/api/test_class_service_api.py,sha256=PcKqIpnL8Jpgxd9CIFnSquBN33ekHO5bVcBcQFZZaXM,20767
|
|
35
38
|
eval_studio_client/api/api/test_lab_service_api.py,sha256=C_e6ZISmN86ArMwYe0KVwOahIIZ6aSpVix0-58H_1KM,25738
|
|
36
|
-
eval_studio_client/api/api/test_service_api.py,sha256=
|
|
39
|
+
eval_studio_client/api/api/test_service_api.py,sha256=RCI9miwzoK9Ch9bC9oHTQr4NasfYSBBpeLkuwYa0ZVo,142951
|
|
37
40
|
eval_studio_client/api/api/who_am_i_service_api.py,sha256=bURcXn7xlBE2lL1JcNrEioQQVKUIclxbR9Mj-dSQfuo,10329
|
|
41
|
+
eval_studio_client/api/api/workflow_edge_service_api.py,sha256=RBmBtVTCMaVgHTYE0EhG4eDYO63llbh8RJ4jlXeZtfI,12342
|
|
42
|
+
eval_studio_client/api/api/workflow_node_service_api.py,sha256=GFOjqNr3gwXLuJTmgc9FTHGvM31OBfKIQ_ydwCtkAMc,72205
|
|
43
|
+
eval_studio_client/api/api/workflow_service_api.py,sha256=FUfQVudCoUp4G7_szmlZxgo22XfaTQGfu1kajUY2ud4,64764
|
|
38
44
|
eval_studio_client/api/docs/DashboardServiceApi.md,sha256=LC7bGUxFhpy2PegN7h4D_L5hgPRlwEXxCPqma704WT0,19675
|
|
39
45
|
eval_studio_client/api/docs/DocumentServiceApi.md,sha256=meZFsr8iloxE97M6JcEG_Hhv5ksE__H7VfCjpHNoDlM,16170
|
|
40
46
|
eval_studio_client/api/docs/EvaluationServiceApi.md,sha256=hpEKIgelQ1LaPa8l3Wwci0Zn9qVtQTvvDDbGa2VewIs,20042
|
|
41
47
|
eval_studio_client/api/docs/EvaluatorServiceApi.md,sha256=H39KlAytM67zs5uLwXAwJ0_akdhH98ygm46a9ikULxE,12445
|
|
48
|
+
eval_studio_client/api/docs/HumanCalibrationServiceApi.md,sha256=8bdjHavxbIZrReO9ScWR46QX_RZBT1JNDQN7ixhT158,2849
|
|
42
49
|
eval_studio_client/api/docs/InfoServiceApi.md,sha256=5BWQoX4HoeKf5qQHYBGg72830wdmGxoScGKof1HmrYc,1965
|
|
43
50
|
eval_studio_client/api/docs/LeaderboardServiceApi.md,sha256=zz11ytNu0JtBfKAfYp1oFv6-XMG6uiXyU9anRtJUlZ8,36836
|
|
44
51
|
eval_studio_client/api/docs/ModelServiceApi.md,sha256=BFlBazqSHkc4xk_w2yCDl7lohJIN_pzmNKI-ppRjMDU,25019
|
|
45
52
|
eval_studio_client/api/docs/OperationProgressServiceApi.md,sha256=bS9Wrjm89O5trne_BFiC0zXnwWr3HuiJLZl2nO_7B6w,2650
|
|
46
53
|
eval_studio_client/api/docs/OperationServiceApi.md,sha256=NWiYqIw9rnrYa7AcRTFcXH4AWCiOybpXn1lxyC6YJJ8,12478
|
|
47
54
|
eval_studio_client/api/docs/PerturbationServiceApi.md,sha256=KybVmytWNgjLuSQYFhuyo76Djsl6arwIp-F3B-L-xJY,2816
|
|
48
|
-
eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md,sha256=
|
|
49
|
-
eval_studio_client/api/docs/PerturbatorServiceApi.md,sha256=
|
|
55
|
+
eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md,sha256=CAbEv7qO90YDYTgYfvGF5hzueV-3EzOgvinIvf0mzQ0,1886
|
|
56
|
+
eval_studio_client/api/docs/PerturbatorServiceApi.md,sha256=xsQOE5oGznk-9kQA1FI4e1snRn0cbBEDQFtHdS8Y-Rk,11385
|
|
50
57
|
eval_studio_client/api/docs/PromptGenerationServiceApi.md,sha256=WGRkhPNd7v5b06IFc1Ff-EUyZR1MrfaYFf7CZZw9YsI,2856
|
|
51
|
-
eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md,sha256=
|
|
58
|
+
eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md,sha256=mKR2-TCgAVxS9udspUbohePeUwSMLQ4nEq6qF7Jpj7Y,2358
|
|
59
|
+
eval_studio_client/api/docs/PromptLibraryServiceApi.md,sha256=30uJZah-5ULNeAMOo6kUs53Ia1UEM-mywE0TP3-6Nag,6512
|
|
52
60
|
eval_studio_client/api/docs/ProtobufAny.md,sha256=sf40Vp58QzpEL9hnIoF28BRRgcFrB1NDJFCcQACv_zM,4608
|
|
61
|
+
eval_studio_client/api/docs/ProtobufNullValue.md,sha256=dU4vJwx5LrZZwVFKsjXBxEERvGNP5B1iGryiH6g1mVU,477
|
|
53
62
|
eval_studio_client/api/docs/RequiredTheDashboardToUpdate.md,sha256=BVOvOdaRnmg9IQoA4nMT5YB8V1ymPabGNkWgn5_29kM,2620
|
|
54
63
|
eval_studio_client/api/docs/RequiredTheDocumentToUpdate.md,sha256=XIbspwsWmbf2sdPKxiPf9JWvmqgk6_wqrOHQgxX7WB4,2439
|
|
55
64
|
eval_studio_client/api/docs/RequiredTheLeaderboardToUpdate.md,sha256=Ce3xJxpOfjWepq6MIDCWfMuA-oeU0teB5IrntKiG9Tw,4014
|
|
56
65
|
eval_studio_client/api/docs/RequiredTheModelToUpdate.md,sha256=zCjxnWXUkopE6Aj9oNUsaGvYmofuTt3kGAl0rn8l-Ac,2550
|
|
57
66
|
eval_studio_client/api/docs/RequiredTheOperationToFinalize.md,sha256=lS166DG5qL_Z-XqWzTs2nti7bhi7EbG2gfcv1-XYhEw,2440
|
|
58
67
|
eval_studio_client/api/docs/RequiredTheOperationToUpdate.md,sha256=C3NgHs1s9QuGnuUrWcoZkH716hB9rXbH1av6ojdWWuA,2412
|
|
59
|
-
eval_studio_client/api/docs/RequiredTheTestCaseToUpdate.md,sha256=
|
|
68
|
+
eval_studio_client/api/docs/RequiredTheTestCaseToUpdate.md,sha256=mN8hogSGVxH7dV_C6G8W9A8IcNtKv2IkwoWZ15J5HBE,2440
|
|
60
69
|
eval_studio_client/api/docs/RequiredTheTestToUpdate.md,sha256=jYniWSet2y-g11nLcsCUmad9Tnz2hIgJl7BLpvtoIdU,2257
|
|
70
|
+
eval_studio_client/api/docs/RequiredTheUpdatedWorkflow.md,sha256=bgy-tPek7v32l7fkCW6BiCkuFdACfWw5qTIy_YJM8zY,2873
|
|
71
|
+
eval_studio_client/api/docs/RequiredTheUpdatedWorkflowNode.md,sha256=2IKLwG9nMCCKLU-XOszO7iTCeT28SAR40C1rFAdl_-k,3013
|
|
61
72
|
eval_studio_client/api/docs/RpcStatus.md,sha256=yJVcDty4KVV1H8nvmc4dr_7blyCar_js0SXW5QA8Z8I,1776
|
|
62
73
|
eval_studio_client/api/docs/TestCaseServiceApi.md,sha256=df2EDVgZj-d5lec2tlzRA_JhuXDqGtXSscRLz_x2z44,17251
|
|
63
74
|
eval_studio_client/api/docs/TestCaseServiceBatchDeleteTestCasesRequest.md,sha256=QcPFhvfLHzbiLDC0rAKeDJHQp-uBfMl7zeDbtdtvH30,1339
|
|
64
75
|
eval_studio_client/api/docs/TestClassServiceApi.md,sha256=EJ-Ha7chpo_L5d-Ex4rW88LqTNoSOYfJdj9wkbYVqC4,4341
|
|
65
76
|
eval_studio_client/api/docs/TestLabServiceApi.md,sha256=J0_dlLp92Q2UTpINe6w_tlaHcaY4_En-J7CWIyyeqoA,5545
|
|
66
|
-
eval_studio_client/api/docs/TestServiceApi.md,sha256=
|
|
67
|
-
eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md,sha256=
|
|
68
|
-
eval_studio_client/api/docs/
|
|
77
|
+
eval_studio_client/api/docs/TestServiceApi.md,sha256=7OJxzXS4v89EGCUBOw25DSLYNJTvDbjM9qgDbT3xQmo,30989
|
|
78
|
+
eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md,sha256=C0A78skaYWQL3K6Z0tkdo8lq-egQoA6NkNwWVf4v7xw,2115
|
|
79
|
+
eval_studio_client/api/docs/TestServiceImportTestCasesFromLibraryRequest.md,sha256=bqx1N5B-qjLg3sNSSJv4hQRInJSzznr50esMCtMRelA,1776
|
|
80
|
+
eval_studio_client/api/docs/TestServiceListTestCaseLibraryItemsRequest.md,sha256=OBkPfxSsrJM1E9krMXBt08NcsmAlOt16kycXC0N7huU,1842
|
|
81
|
+
eval_studio_client/api/docs/TestServicePerturbTestRequest.md,sha256=iXqEbf-4fSz2JXpchr9vT5sLNZkOieIid00ctW1wk6c,1554
|
|
69
82
|
eval_studio_client/api/docs/V1BatchCreateLeaderboardsRequest.md,sha256=v3I0WjeesPwOQvjUP0CjI_FVZ_RRKxKHwZddtBdvQYA,1536
|
|
70
83
|
eval_studio_client/api/docs/V1BatchCreateLeaderboardsResponse.md,sha256=xTCB6Ecw32MbDI750hqOPDMOhUQRG71P-HEbj7NKk5g,1193
|
|
71
84
|
eval_studio_client/api/docs/V1BatchDeleteDashboardsRequest.md,sha256=sGmGomZOcVA5ssTGyHw_sll2Ikur2JNn0s2Jb_jP3W8,1214
|
|
@@ -81,12 +94,16 @@ eval_studio_client/api/docs/V1BatchDeleteModelsResponse.md,sha256=riPOJXRkfZikQ2
|
|
|
81
94
|
eval_studio_client/api/docs/V1BatchDeleteTestCasesResponse.md,sha256=w1ywXEfXSGZaaQmcICToR8GBgPjdHS8yXJ3Su-U0J0Q,1195
|
|
82
95
|
eval_studio_client/api/docs/V1BatchDeleteTestsRequest.md,sha256=QFht3jx7N-M9OwZ-7VERMHPygDILGOxrKxVb6WCM4qs,1338
|
|
83
96
|
eval_studio_client/api/docs/V1BatchDeleteTestsResponse.md,sha256=7qhd2yhWR4ffFboRn2aLHwp250ONWH2lNjHqdShJgP4,1112
|
|
97
|
+
eval_studio_client/api/docs/V1BatchDeleteWorkflowsRequest.md,sha256=z-HU1QdAdxxJZeukiSDWVewqxTpCz-vd_s2pMUuT-Ds,1200
|
|
98
|
+
eval_studio_client/api/docs/V1BatchDeleteWorkflowsResponse.md,sha256=RtlYsgGJOuiIwKPBRzJNS26JuU75ntSeoLvsUNmgLS4,1180
|
|
84
99
|
eval_studio_client/api/docs/V1BatchGetDashboardsResponse.md,sha256=s16VgtMFvKItlylAQfC4jRJj1aQxZdc5jvDI7HAp4o0,1160
|
|
85
100
|
eval_studio_client/api/docs/V1BatchGetDocumentsResponse.md,sha256=vqUfaycwoEmYaCV_5msMl5X26SFOtaC64uXFC4nDOGM,1153
|
|
86
101
|
eval_studio_client/api/docs/V1BatchGetLeaderboardsResponse.md,sha256=4xmSM5HGT6B2G3EnGjBRnGCs3fk6hzfeIZ7UNBGybdo,1194
|
|
87
102
|
eval_studio_client/api/docs/V1BatchGetModelsResponse.md,sha256=3hyTy2h8JeFoB5iK_jeopSiSZVk3X29CFHSxPkCTOFw,1102
|
|
88
103
|
eval_studio_client/api/docs/V1BatchGetOperationsResponse.md,sha256=noM0_rtRZM2QS1IzCTNJYLJv_eQXo3vGpn2fE9dyTws,1170
|
|
89
104
|
eval_studio_client/api/docs/V1BatchGetTestsResponse.md,sha256=YcEChCN6vXZkSDs3Dk8BgYe0QPy-1sYLEm1XmBXC9Q0,1085
|
|
105
|
+
eval_studio_client/api/docs/V1BatchGetWorkflowEdgesResponse.md,sha256=ApqNv7M6ct-GCICIofo92QGcLzkjtRdkGqPZJlfaczE,1209
|
|
106
|
+
eval_studio_client/api/docs/V1BatchGetWorkflowNodesResponse.md,sha256=8yp0Io4SM8Sz4PFXjCz5Fgw1I3NcxGXM1dcZkBE_2gI,1209
|
|
90
107
|
eval_studio_client/api/docs/V1BatchImportLeaderboardRequest.md,sha256=VUoaYiD9EFAiKMWXtNIAy7DK7-7NfwdvE7cK3dK-CXE,2003
|
|
91
108
|
eval_studio_client/api/docs/V1BatchImportLeaderboardResponse.md,sha256=blArM0EAy5El3wX854bIwPn53HGhU0dkD24Ve1PUQRU,1180
|
|
92
109
|
eval_studio_client/api/docs/V1BatchImportTestsRequest.md,sha256=ZN3r-y9FBXeamC_WCbCar6OpbTTg_XuE56nqH3ljgpI,1521
|
|
@@ -95,7 +112,7 @@ eval_studio_client/api/docs/V1CheckBaseModelsResponse.md,sha256=qYL6yEP6It-KSYTS
|
|
|
95
112
|
eval_studio_client/api/docs/V1CollectionInfo.md,sha256=2iHdNlhmUHE3b6onAJ1ICEzJb_DybNs4ARWjUmkbeVU,1279
|
|
96
113
|
eval_studio_client/api/docs/V1CreateDashboardResponse.md,sha256=KVvv7O5LVaHq1KN37uZtEi1hrtmwM5hodhcQDsU3FpY,1083
|
|
97
114
|
eval_studio_client/api/docs/V1CreateDocumentResponse.md,sha256=ZgaSw6BFfUIpkPDI8wj7GJf7U61PzTaPX4IjPGan_Ow,1067
|
|
98
|
-
eval_studio_client/api/docs/V1CreateEvaluationRequest.md,sha256=
|
|
115
|
+
eval_studio_client/api/docs/V1CreateEvaluationRequest.md,sha256=7YI-Q5PWcevsSMyx2ojb666e20xxlgxm1lbdNAfPgPw,2319
|
|
99
116
|
eval_studio_client/api/docs/V1CreateEvaluatorResponse.md,sha256=ew8KdI4A0CaQ1j7KSARIgErErErUq0nolHC8fbl14mI,1083
|
|
100
117
|
eval_studio_client/api/docs/V1CreateLeaderboardRequest.md,sha256=ix1VypKBRjBasnJ1Q28JdAeow0IUIaV7dt0znDkNGDc,1102
|
|
101
118
|
eval_studio_client/api/docs/V1CreateLeaderboardResponse.md,sha256=qVGdVCKCQdyOoF9lyWypblXaykzIHSzVu_6kAj3w75o,1109
|
|
@@ -105,6 +122,7 @@ eval_studio_client/api/docs/V1CreatePerturbationResponse.md,sha256=quAjpQ7aaGHBV
|
|
|
105
122
|
eval_studio_client/api/docs/V1CreateTestCaseResponse.md,sha256=cL_eWpvtpIOt3g2vieC_5nwMJJUqTPjTL3SX0CjcHAY,1074
|
|
106
123
|
eval_studio_client/api/docs/V1CreateTestLabResponse.md,sha256=5GW7qERdraNJT-0tcJepC_LsbwQbqejyYh6hL0BdraM,1058
|
|
107
124
|
eval_studio_client/api/docs/V1CreateTestResponse.md,sha256=fSw8GoHv7zx91aFvyLzHG5w5nuqzil6hGo5MvCHOj5M,1003
|
|
125
|
+
eval_studio_client/api/docs/V1CreateWorkflowResponse.md,sha256=KYXx47FTWjDmOBAfC72jFi5GX0rCBOr0xIPy-q4FmH4,1067
|
|
108
126
|
eval_studio_client/api/docs/V1Dashboard.md,sha256=SE0mtwIBp0-Iih10slE6T5cC3L0oajDKsh7tegKo8bQ,2323
|
|
109
127
|
eval_studio_client/api/docs/V1DashboardStatus.md,sha256=Cdamni0C7EsCDUqjjYeJE7uRrN2XvQJEdonyPBIjS2Y,685
|
|
110
128
|
eval_studio_client/api/docs/V1DeleteDashboardResponse.md,sha256=p-rBdA9mZc_K4jE3NkOl-_MytL8uqgXwB8UrfpQy3S8,1083
|
|
@@ -114,7 +132,10 @@ eval_studio_client/api/docs/V1DeleteLeaderboardResponse.md,sha256=KM2htzsssD1Ii8
|
|
|
114
132
|
eval_studio_client/api/docs/V1DeleteModelResponse.md,sha256=Rao4Y02t0tx7ettBKF6K0B411umHlJKi1_UHxp0ba7U,1019
|
|
115
133
|
eval_studio_client/api/docs/V1DeleteTestCaseResponse.md,sha256=Tu9z5CO7pKrqXI-jnj3hloizMke16V0ONkQbwH41xeA,1074
|
|
116
134
|
eval_studio_client/api/docs/V1DeleteTestResponse.md,sha256=NnzrS3EfN09kajNPTKAVifQD63g91aQLLZGLzgiPNFY,1003
|
|
135
|
+
eval_studio_client/api/docs/V1DeleteWorkflowNodeResponse.md,sha256=Gz-VgTCOQDo2c6UG6IaOkWSCMtHEn-9TJAySFtpbfSw,1129
|
|
136
|
+
eval_studio_client/api/docs/V1DeleteWorkflowResponse.md,sha256=1bI_uGCC_KzQ9gXDUotof2x8KvX_Wkz7VaHT5WrnA7o,1067
|
|
117
137
|
eval_studio_client/api/docs/V1Document.md,sha256=1qRJipUHo6K9e_5Gbk4YWhQM3O5-KBrr9jqjLT7Bk9o,2144
|
|
138
|
+
eval_studio_client/api/docs/V1EstimateThresholdRequest.md,sha256=O1SJT6MEdwpqV88yrG__1blpclRVn5ygq5cHKsn5Nwo,1583
|
|
118
139
|
eval_studio_client/api/docs/V1EvaluationTest.md,sha256=u23SsaPTGnDMfNexHCy62TBy60AM-V2X424I8udUEO0,1374
|
|
119
140
|
eval_studio_client/api/docs/V1Evaluator.md,sha256=S19l905MU8qPevCwr6iIINiCY42RJz8WN_kdRip4jv4,3039
|
|
120
141
|
eval_studio_client/api/docs/V1EvaluatorParamType.md,sha256=XVKlniYkPU4TTF6QkfZAMGgbCJoaXF1w_l5v567uGyo,613
|
|
@@ -136,11 +157,17 @@ eval_studio_client/api/docs/V1GetPerturbatorResponse.md,sha256=Q9NCx2rrdvvyGtiqP
|
|
|
136
157
|
eval_studio_client/api/docs/V1GetTestCaseResponse.md,sha256=0T6TNPookxue42iV5laAsfeh04yqbRPpwC-UUuMQt0E,1035
|
|
137
158
|
eval_studio_client/api/docs/V1GetTestClassResponse.md,sha256=oqnkXN7B5eV3qUOXAKHkxS0AhJ7QBoLVzz6X3L2Kxa0,1051
|
|
138
159
|
eval_studio_client/api/docs/V1GetTestResponse.md,sha256=jmbGwx-xglBJOe6T8DN3J_wZYqF_qXRGdsLqTPpt0g8,964
|
|
139
|
-
eval_studio_client/api/docs/
|
|
160
|
+
eval_studio_client/api/docs/V1GetWorkflowNodePrerequisitesResponse.md,sha256=bPup2bG4Zg-MqRJZUOaSvc0LHzRHKltQQ-2qmnPPoHE,1433
|
|
161
|
+
eval_studio_client/api/docs/V1GetWorkflowNodeResponse.md,sha256=JtqT-3gmnVR7aHKnjTpdw_VaMVHg1Lui5dOcmM084co,1090
|
|
162
|
+
eval_studio_client/api/docs/V1GetWorkflowResponse.md,sha256=Jwlqxd_GJTWWSXU_Zcv58bFqYS49j1zYeyNNTRX3URw,1028
|
|
163
|
+
eval_studio_client/api/docs/V1ImportEvaluationRequest.md,sha256=gr5_OKvxEMhKfOqpTdwcx8PpCAxKup6ubcOfQrRoIKk,1721
|
|
140
164
|
eval_studio_client/api/docs/V1ImportLeaderboardRequest.md,sha256=1aBBkjuUpgCTyqkKcdWQZGkN3skMKndO6tGlQoxi0WY,1893
|
|
141
165
|
eval_studio_client/api/docs/V1ImportLeaderboardResponse.md,sha256=WeNoOYI1qNOionChjNnyDujA9o34M8_WDsXyYeMOoEs,1109
|
|
166
|
+
eval_studio_client/api/docs/V1ImportTestCasesFromLibraryResponse.md,sha256=Za3xdFm15RmoGbiNAZzAOiVuRHgtC6U5R93zlrgp46M,1244
|
|
167
|
+
eval_studio_client/api/docs/V1ImportTestCasesRequest.md,sha256=6ZuVubZTFxD5O9tZsRR1qMkqsVW0LAoUqIhvJ7k94_U,1640
|
|
142
168
|
eval_studio_client/api/docs/V1Info.md,sha256=9tmzQLTRXj3FFmrqtPC5BcvbG3K-sPCw0SZlTn4JCg0,1611
|
|
143
169
|
eval_studio_client/api/docs/V1Insight.md,sha256=2l0P_ZwywFM1R8rEdjU4RpVsKsX-utkJVLkcScSMm8U,1836
|
|
170
|
+
eval_studio_client/api/docs/V1LabeledTestCase.md,sha256=x6t91UbpBmivmJUbSyh4FJTT4ouqq1ZLqXP-vC07gGI,1215
|
|
144
171
|
eval_studio_client/api/docs/V1Leaderboard.md,sha256=wh_WfNOSoB3WufWQIVai27ZaNI5f6TdXbEcolxjEmsI,3709
|
|
145
172
|
eval_studio_client/api/docs/V1LeaderboardStatus.md,sha256=lCe8JUyREr9vFQS_7qtuE6LWCMFxg82ukLAwTXt-rOU,604
|
|
146
173
|
eval_studio_client/api/docs/V1LeaderboardType.md,sha256=8kQdVoo6WaRMd8o6zfGXsh7mhnJ7f7YbIRCStjVqxCY,554
|
|
@@ -159,10 +186,13 @@ eval_studio_client/api/docs/V1ListMostRecentModelsResponse.md,sha256=jQAKzVCAIL5
|
|
|
159
186
|
eval_studio_client/api/docs/V1ListMostRecentTestsResponse.md,sha256=nvIv4NqKnDLMR4qlCLZTxovLKL74QnkttOfausxC4GU,1157
|
|
160
187
|
eval_studio_client/api/docs/V1ListOperationsResponse.md,sha256=weyV_-9DriiyzWCWPk6L04PgisUdhU4EAfndOKoShb8,1100
|
|
161
188
|
eval_studio_client/api/docs/V1ListPerturbatorsResponse.md,sha256=3WQ6k99hrdfUjCIFbRouwRz7XsQmaifGd5Ryo6ZC5sA,1134
|
|
189
|
+
eval_studio_client/api/docs/V1ListPromptLibraryItemsResponse.md,sha256=1-aiMadB0kEpHHZ54hKInWTDg-H8PKnrl1np_-0wxqI,1254
|
|
162
190
|
eval_studio_client/api/docs/V1ListRAGCollectionsResponse.md,sha256=o3VJDBIjDiR5XQmzBX3r290otx3pf8OxwENqussWXxU,1205
|
|
191
|
+
eval_studio_client/api/docs/V1ListTestCaseLibraryItemsResponse.md,sha256=_CJtsuvR75JDxrb2MHOMzsd84pxk_G7Vzw6vtpAV1UI,1277
|
|
163
192
|
eval_studio_client/api/docs/V1ListTestCasesResponse.md,sha256=avESjIFuW6GBE0G9eVG3tBqx6Ps4FTF6lCesHFxaUKU,1090
|
|
164
193
|
eval_studio_client/api/docs/V1ListTestClassesResponse.md,sha256=1qwkK5OU60zvWngySTG8XAN6NmHUe1BhDfw6aRZOxnU,1137
|
|
165
194
|
eval_studio_client/api/docs/V1ListTestsResponse.md,sha256=NFiSpglSDzsy8OtcdzlqHNwPgOqZAbswTARycMSo56s,1030
|
|
195
|
+
eval_studio_client/api/docs/V1ListWorkflowsResponse.md,sha256=c8XvzQ6B9k45mT37rWt9lFaNEFk_j5q-d9_981WMEPU,1085
|
|
166
196
|
eval_studio_client/api/docs/V1Model.md,sha256=rImr8_44g7n-0Gj8DnKzIxgG6NFXuGMo81LsXfnWXqk,2358
|
|
167
197
|
eval_studio_client/api/docs/V1ModelType.md,sha256=43en3zOytBZhqoelWfUPZuHXJ6WFU2N1aZ2DFiHtgRk,772
|
|
168
198
|
eval_studio_client/api/docs/V1Operation.md,sha256=IZjyJE4MTwUayi-sHL-emkMt3tC-clP6So2yKZvXeGo,2207
|
|
@@ -172,13 +202,16 @@ eval_studio_client/api/docs/V1Perturbator.md,sha256=Vf3ZkYIE2hip-U_I1tnTDY8833QM
|
|
|
172
202
|
eval_studio_client/api/docs/V1PerturbatorConfiguration.md,sha256=zq8LgQgg6x5AXFLLTwzStu-kYAurXNv0Z-unApog_b8,1349
|
|
173
203
|
eval_studio_client/api/docs/V1PerturbatorIntensity.md,sha256=ZJg5e9UI8Aqf1QOqtsiqNvNzr2dhL4fYxQsVlmadHaI,302
|
|
174
204
|
eval_studio_client/api/docs/V1ProblemAndAction.md,sha256=DdvxyI9cB75CI5Vud96EhBqv5iKA21F9Nx0QNHAPPCo,2114
|
|
205
|
+
eval_studio_client/api/docs/V1ProcessWorkflowNodeResponse.md,sha256=F8MefuQah_BuUpwg1qKtveX80VL3KoBmXLT9f9T2eM0,1141
|
|
206
|
+
eval_studio_client/api/docs/V1PromptLibraryItem.md,sha256=sWa1dgWxPku3Y4vw3FJIozkM4VLDfsMl-EKO3PSCo6c,2519
|
|
175
207
|
eval_studio_client/api/docs/V1Test.md,sha256=ZsPwZKPHvBk_ZftcPhWVVB6W8Pn9xmWx8lDHzm1dIYk,2065
|
|
176
|
-
eval_studio_client/api/docs/V1TestCase.md,sha256=
|
|
208
|
+
eval_studio_client/api/docs/V1TestCase.md,sha256=YcKo0HsqAGj-PP6o68_ePueOwYgZwqXWzPYLwgixA9w,2248
|
|
177
209
|
eval_studio_client/api/docs/V1TestCaseRelationship.md,sha256=RVS7nB1oFpXBvoFxHSmmEG8QCm-xzxH2PLtnsA8Cc_0,1178
|
|
178
210
|
eval_studio_client/api/docs/V1TestCasesGenerator.md,sha256=FEt16R-MY4j3tpkro-1nvDaNW2dKzqsFCNITfJYZ0Fw,300
|
|
179
211
|
eval_studio_client/api/docs/V1TestClass.md,sha256=4sEXmPZMQQlE32VilwRUI_tlMgOz3GjzRukpOMz8PNY,2308
|
|
180
212
|
eval_studio_client/api/docs/V1TestClassType.md,sha256=kJO3zKy6soXVaJtkKaeu4uI_8K5qPY6Ema4EtrkMM7Y,831
|
|
181
213
|
eval_studio_client/api/docs/V1TestLab.md,sha256=SwpAVKwynUaP7AkNHIJl7BZa2FG6WIA7rrKJp_0L0RA,2191
|
|
214
|
+
eval_studio_client/api/docs/V1TestSuiteEvaluates.md,sha256=eeKSSLZWf87oAcm6jU3hhKtogmdIh9Kw4cwxYcjuuMo,300
|
|
182
215
|
eval_studio_client/api/docs/V1UpdateDashboardResponse.md,sha256=oFK2b7VwaeXHaG4SU9sx16v3_fiL4zuObrp1QIN3TQY,1083
|
|
183
216
|
eval_studio_client/api/docs/V1UpdateDocumentResponse.md,sha256=qeNtZX2yIcCt6UTeYVssqyw4_vh3mAEIELfxW20_uLw,1067
|
|
184
217
|
eval_studio_client/api/docs/V1UpdateLeaderboardResponse.md,sha256=d9ClW0oA0KDy7PH-Q29pdS5wp_EJWhCh_xbtrVuR464,1115
|
|
@@ -186,24 +219,45 @@ eval_studio_client/api/docs/V1UpdateModelResponse.md,sha256=Xdr-QPSrLymjQS9nt6qS
|
|
|
186
219
|
eval_studio_client/api/docs/V1UpdateOperationResponse.md,sha256=ms38fXdc3DQuLytlBySUSPdDcs8EYnJwL3hUfLMthgE,1083
|
|
187
220
|
eval_studio_client/api/docs/V1UpdateTestCaseResponse.md,sha256=KrBzTze-_KGKU6RFm1jVLtWQW3ZJsSDwis9fsvTss9g,1074
|
|
188
221
|
eval_studio_client/api/docs/V1UpdateTestResponse.md,sha256=C6j4yLhO_vVgDC6Gx3GhmTYbkED__oSYI9mTQiahhIo,1003
|
|
222
|
+
eval_studio_client/api/docs/V1UpdateWorkflowNodeResponse.md,sha256=nvtIc2rO05WqAoj96SHeX_uetKeeyRn_b4IoxLe4I3A,1129
|
|
223
|
+
eval_studio_client/api/docs/V1UpdateWorkflowResponse.md,sha256=F8MzlZ1lIl_MFV_Uz1k5XtRDydeTXDIZotSgtl4-on4,1067
|
|
189
224
|
eval_studio_client/api/docs/V1WhoAmIResponse.md,sha256=3xTHHUxYCnn4ptR7OOpRUP6hbcvwY-M6D1HYtlcFDks,1152
|
|
225
|
+
eval_studio_client/api/docs/V1Workflow.md,sha256=8NBSANIPkIViXDH0ZxmHnOzOC8OcdDZBuqxCJZT3XAU,2898
|
|
226
|
+
eval_studio_client/api/docs/V1WorkflowEdge.md,sha256=IfxLeF_Le1rAZlT0Qo28qpfGtvvcEdWkKqHJaDfaeZY,2376
|
|
227
|
+
eval_studio_client/api/docs/V1WorkflowEdgeType.md,sha256=mHXM3x0whwW7IUaQLQM-IOolkyQqFyqBFa9ywbThda0,474
|
|
228
|
+
eval_studio_client/api/docs/V1WorkflowNode.md,sha256=R39Zh9oXLdXtn9feSKCRgmrV6BS0YNUw15lQ-vW4DUA,3018
|
|
229
|
+
eval_studio_client/api/docs/V1WorkflowNodeArtifact.md,sha256=HQ57HhYw6zrDmmMTG_0K-_u8pdrw4Mz8kWKY5Rkosx4,2478
|
|
230
|
+
eval_studio_client/api/docs/V1WorkflowNodeArtifacts.md,sha256=kPFZd7T39L_9CGD9qCTSaDItpjUd7c3OJ9b83BzG-t8,1172
|
|
231
|
+
eval_studio_client/api/docs/V1WorkflowNodeAttributes.md,sha256=Rh0_sCboi7EAfF9LDegGbdaI5CKkeP4mhlgP4wgwdCs,1161
|
|
232
|
+
eval_studio_client/api/docs/V1WorkflowNodeStatus.md,sha256=Q9RtcGjtfi1Qw0GjpScvGk61QXDJCJqcv4-qhLh8_ng,662
|
|
233
|
+
eval_studio_client/api/docs/V1WorkflowNodeType.md,sha256=9tn9ElpFrVQYvi_VMOC8gsH4FW4hK2-06d6GQ6pudpk,354
|
|
234
|
+
eval_studio_client/api/docs/V1WorkflowNodeView.md,sha256=qKRCP9Yacvpa6dHUEJUfgFAWxhB6aPbTTPjCHT3y8S0,593
|
|
235
|
+
eval_studio_client/api/docs/V1WorkflowType.md,sha256=NEV31ubMjbz-pIgrhHjE6g2edQCCC-VMbgESKFz5L8I,342
|
|
190
236
|
eval_studio_client/api/docs/WhoAmIServiceApi.md,sha256=4WdD0einH2LA3FWwL_BDvPDG6O3w_Sc2Gn82KceAjH8,2163
|
|
191
|
-
eval_studio_client/api/
|
|
192
|
-
eval_studio_client/api/
|
|
193
|
-
eval_studio_client/api/
|
|
237
|
+
eval_studio_client/api/docs/WorkflowEdgeServiceApi.md,sha256=fB-zkBckND3ON83Mp3U7HJgGC6VkzQ5HD5xO3-TjQyg,3274
|
|
238
|
+
eval_studio_client/api/docs/WorkflowNodeServiceApi.md,sha256=0dqZ3Cb26GamvnqAfSfq9ftY6AGaF23Tpw5XFgZkvEE,19446
|
|
239
|
+
eval_studio_client/api/docs/WorkflowServiceApi.md,sha256=Rg3e1jwpePnpXWjEYsrViY2E5DNqMuyq-wvZ1PbM6l8,15215
|
|
240
|
+
eval_studio_client/api/models/__init__.py,sha256=rV6BM8zLGAEqQcbDhY3ztjvCBGUsuYNdhufFICnBFX8,16969
|
|
241
|
+
eval_studio_client/api/models/perturbation_service_create_perturbation_request.py,sha256=D8BU4iUc3kXQ4t21BSh4uBq06NiDre04oP-8fZVz-3U,5632
|
|
242
|
+
eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py,sha256=Tn_pheV_B2mEAVGA4Kz_xMvAa9RdR6Ln6hInWy8J5oU,4731
|
|
194
243
|
eval_studio_client/api/models/protobuf_any.py,sha256=9qXtOw_UGwhMxyWFeOBBh7H3YfB-84Oahljw8CxhUlk,6833
|
|
244
|
+
eval_studio_client/api/models/protobuf_null_value.py,sha256=gzH8xbikdazJpeZFihi_kGQrZUtPZsjTS3rnE4cSUek,953
|
|
195
245
|
eval_studio_client/api/models/required_the_dashboard_to_update.py,sha256=kDBsZbsHnrA6NqNtYrpC6_EevsbL3yhcgACT5R6pgCs,5824
|
|
196
246
|
eval_studio_client/api/models/required_the_document_to_update.py,sha256=UlvsDBnDHbBagaYxAC0VJqOHb0a67ODai467GIYcoIk,5156
|
|
197
247
|
eval_studio_client/api/models/required_the_leaderboard_to_update.py,sha256=RBv_r7oja8J-zV0oDE7gfQyy58yjpxbeD-bcm8zLNkQ,9971
|
|
198
248
|
eval_studio_client/api/models/required_the_model_to_update.py,sha256=0nB99roI_A3ixYXHzwwB838Ok22V9IZksbS5I_T42-E,5768
|
|
199
249
|
eval_studio_client/api/models/required_the_operation_to_finalize.py,sha256=c0_oEodfTumLE2Hmjp5qoG7LPGwJWbtSGwwEah-GfdQ,5806
|
|
200
250
|
eval_studio_client/api/models/required_the_operation_to_update.py,sha256=II4o_WsR6FslqgeC2MsBaC99VOgDFoHVne-LtMPqirc,5798
|
|
201
|
-
eval_studio_client/api/models/required_the_test_case_to_update.py,sha256=
|
|
251
|
+
eval_studio_client/api/models/required_the_test_case_to_update.py,sha256=nxAcjtxGla82y5VtFgMwyVOfDfhJJre27gqRRdj2nk8,5511
|
|
202
252
|
eval_studio_client/api/models/required_the_test_to_update.py,sha256=-X4yDqaGMSdQWW6TZC9-TD9n8f_Qx2Znuk55PGrBYQA,5295
|
|
253
|
+
eval_studio_client/api/models/required_the_updated_workflow.py,sha256=-yySNigOyd3bkAtuJezT1aVBDxcrRivIpdJUeGe2wkU,7270
|
|
254
|
+
eval_studio_client/api/models/required_the_updated_workflow_node.py,sha256=slKL_z9WEoPsP9lv0FiphsMTLQakieB4T7OTLtroTMs,7571
|
|
203
255
|
eval_studio_client/api/models/rpc_status.py,sha256=8cmO-ChYfT29ao8Yd3OMAxvEHWbLQEeymtPbpNFpPQg,4107
|
|
204
256
|
eval_studio_client/api/models/test_case_service_batch_delete_test_cases_request.py,sha256=cnEZPpuhkSsXrarBTQJ0AGknBvuwPYRX8Lv7sQlabH0,2735
|
|
205
|
-
eval_studio_client/api/models/test_service_generate_test_cases_request.py,sha256=
|
|
206
|
-
eval_studio_client/api/models/
|
|
257
|
+
eval_studio_client/api/models/test_service_generate_test_cases_request.py,sha256=Tueaqhjn3nXSYlIii4wpmFUMU5uvqc3UYA2UM0zSRz4,4183
|
|
258
|
+
eval_studio_client/api/models/test_service_import_test_cases_from_library_request.py,sha256=vMz2Tbm1166aluvSUbRnAZcobxneLRBcAyIg1txzeDo,3519
|
|
259
|
+
eval_studio_client/api/models/test_service_list_test_case_library_items_request.py,sha256=NR8Mcon23WNnYm_zzBZH4X_KMT0GMbUFUzu1RlXmj_4,4150
|
|
260
|
+
eval_studio_client/api/models/test_service_perturb_test_request.py,sha256=75V0_GOWh5lNNygBiA4vwOBysaNergt5q25Z_LmrtaY,4157
|
|
207
261
|
eval_studio_client/api/models/v1_batch_create_leaderboards_request.py,sha256=BnvrdeSe0EdFBJA6Rim9LRUF5WH-z3-2LDQshXrYjr0,3828
|
|
208
262
|
eval_studio_client/api/models/v1_batch_create_leaderboards_response.py,sha256=3j42JVzTrrwMyg1_4KtfoM37h5Uve8k9jgg4exUWbFk,2932
|
|
209
263
|
eval_studio_client/api/models/v1_batch_delete_dashboards_request.py,sha256=ZTVzYajd6JFmcM3yNbPMqjbsxg9BkHAUe0E0hKBugos,2736
|
|
@@ -219,12 +273,16 @@ eval_studio_client/api/models/v1_batch_delete_models_response.py,sha256=x9j8Aokn
|
|
|
219
273
|
eval_studio_client/api/models/v1_batch_delete_test_cases_response.py,sha256=8wMjavbxQiFKM31gRIUQvp44JVgYielXJQk4GKzB1nA,3175
|
|
220
274
|
eval_studio_client/api/models/v1_batch_delete_tests_request.py,sha256=3HshZUrA9R0kJpdbhv6WPe0JrIUvjW89x9TdwqSPU4c,2997
|
|
221
275
|
eval_studio_client/api/models/v1_batch_delete_tests_response.py,sha256=qnU3herqsZvRJJ3bjI851ixNS5pV6ez5UO98BRNODyk,3071
|
|
276
|
+
eval_studio_client/api/models/v1_batch_delete_workflows_request.py,sha256=bFdUuJyMD18tYxoe54QCBLu_mk7mniRJJlSxhItE6KE,2731
|
|
277
|
+
eval_studio_client/api/models/v1_batch_delete_workflows_response.py,sha256=4jN65fHUYCcFq0qYaByV4LyOgKGUgezlDKO8OCm5wAQ,3143
|
|
222
278
|
eval_studio_client/api/models/v1_batch_get_dashboards_response.py,sha256=6hjZ4ShCry1nhojyDDyfkMTIFQUDjHE8jfmX-WJtsvU,3151
|
|
223
279
|
eval_studio_client/api/models/v1_batch_get_documents_response.py,sha256=sWlX9C0vL-boFvKNj_HANxF8cCGc25jZKmGaBb7YACw,3143
|
|
224
280
|
eval_studio_client/api/models/v1_batch_get_leaderboards_response.py,sha256=3NzudrNPQ_TrPLE7-tPSens1AvHKabdpKT9cXOe3ero,3187
|
|
225
281
|
eval_studio_client/api/models/v1_batch_get_models_response.py,sha256=-3TOMQ2ZHocr15OpInE7AtwbpVN321j2NCzei_pEfos,3089
|
|
226
282
|
eval_studio_client/api/models/v1_batch_get_operations_response.py,sha256=p8zpTovVyN8BXPe-vgY_60uaFfr1foXppiATCiCCrEk,3161
|
|
227
283
|
eval_studio_client/api/models/v1_batch_get_tests_response.py,sha256=_or4DG4GcLcqcWiPr0rLYZQFMFcy-zaZo796F4kd3_Y,3071
|
|
284
|
+
eval_studio_client/api/models/v1_batch_get_workflow_edges_response.py,sha256=UAfq_-PKmplh3EwuRZWHuFXt_RB8F8wzx55azvxY9Ig,3134
|
|
285
|
+
eval_studio_client/api/models/v1_batch_get_workflow_nodes_response.py,sha256=bhUH1sGIblKquQDyVfUhr76QbxkateQEwtz5g95bQWY,3134
|
|
228
286
|
eval_studio_client/api/models/v1_batch_import_leaderboard_request.py,sha256=QbdGirue3u-HUPdP0eEmL3K82WIWngRcPp-sfT4M_e0,4553
|
|
229
287
|
eval_studio_client/api/models/v1_batch_import_leaderboard_response.py,sha256=Rhq7TKujyskW50BPAwVZnlj-bn62f9lEhrtUo5kbH68,2928
|
|
230
288
|
eval_studio_client/api/models/v1_batch_import_tests_request.py,sha256=QkjXEyOKiPfymBDrCPmPpFV6kyygs_9pxFVpOfGDLbE,3487
|
|
@@ -233,7 +291,7 @@ eval_studio_client/api/models/v1_check_base_models_response.py,sha256=e1tYkpzz4G
|
|
|
233
291
|
eval_studio_client/api/models/v1_collection_info.py,sha256=_S9sBjG-yVkJYnoSYTaislKAOAGpRGOg9oMfiYrqd7E,3268
|
|
234
292
|
eval_studio_client/api/models/v1_create_dashboard_response.py,sha256=JE7L2SKMLi11TMYcJ_FxlD31q_dH_xHX_nTbDhb6aHE,2900
|
|
235
293
|
eval_studio_client/api/models/v1_create_document_response.py,sha256=gnG3OEkQLuy-lchL0oT2NkQ5wM0uWn0D2pb8t8-Img0,2883
|
|
236
|
-
eval_studio_client/api/models/v1_create_evaluation_request.py,sha256=
|
|
294
|
+
eval_studio_client/api/models/v1_create_evaluation_request.py,sha256=XVGZMw-x4eNjTqVJzXtfHNGaKIRAXaEmDWGAxmrjIEI,6050
|
|
237
295
|
eval_studio_client/api/models/v1_create_evaluator_response.py,sha256=zDDeAKYC3OqCKNh6yvmPxbzWmVUCWYw-qEjTmkvfuo0,2900
|
|
238
296
|
eval_studio_client/api/models/v1_create_leaderboard_request.py,sha256=AjZvgU3MGQztxO9EULQvKxCyp6r6-dbylYLPT9wk0tc,2930
|
|
239
297
|
eval_studio_client/api/models/v1_create_leaderboard_response.py,sha256=gv0MH-n4vIusUW74diUBdHHKKsRC_xMaL5UVl2Sbmdg,2908
|
|
@@ -243,6 +301,7 @@ eval_studio_client/api/models/v1_create_perturbation_response.py,sha256=9QCl1A55
|
|
|
243
301
|
eval_studio_client/api/models/v1_create_test_case_response.py,sha256=F-mxjt_o2KAZr7QUHIHN0VqmJzFuUr1Nw0X3KncoeF8,2928
|
|
244
302
|
eval_studio_client/api/models/v1_create_test_lab_response.py,sha256=kuJ7kRhvI0gX1tdIB_aEvEKUBQul6lD7H2tLBMGKUGI,2910
|
|
245
303
|
eval_studio_client/api/models/v1_create_test_response.py,sha256=F1iCYq3ViQDfgWb8qTQ_sFeHVxffgre0lXN23mL_aBQ,2815
|
|
304
|
+
eval_studio_client/api/models/v1_create_workflow_response.py,sha256=GTSU8d9VQpvsqKNQf5aN9zFbMB2yDmmg0hipLf3sirI,2883
|
|
246
305
|
eval_studio_client/api/models/v1_dashboard.py,sha256=LJoflp9BtBRVheojTNcidXjO-EOIxEYtlZxSmvk6nDs,5832
|
|
247
306
|
eval_studio_client/api/models/v1_dashboard_status.py,sha256=o9dq82habKRksajZJWmqw8nZ-G5aCedkviAOgqsQO-o,1379
|
|
248
307
|
eval_studio_client/api/models/v1_delete_dashboard_response.py,sha256=ofqbBnVNPABB6iwGp3nQ26Sc4zVX9aek5D3kiWUQcJ0,2900
|
|
@@ -252,7 +311,10 @@ eval_studio_client/api/models/v1_delete_leaderboard_response.py,sha256=SnZp8C2CQ
|
|
|
252
311
|
eval_studio_client/api/models/v1_delete_model_response.py,sha256=DtxZnlcI3uZwjIYfJOJkHYL8Mbe5CfuIxBBTewWAr9Q,2832
|
|
253
312
|
eval_studio_client/api/models/v1_delete_test_case_response.py,sha256=O_vEDY6YiFTaoy7hDJP_00eDSlGm2do-flrksYYqm4g,2928
|
|
254
313
|
eval_studio_client/api/models/v1_delete_test_response.py,sha256=RlYkvH3xJZjM8BaaS7ibIZVX4qLzOShrlWwLi478P9c,2815
|
|
314
|
+
eval_studio_client/api/models/v1_delete_workflow_node_response.py,sha256=t6O6_k7gfFCuIt2Qm_GmkB-shNlJIeEgbq94eGrcmuw,2880
|
|
315
|
+
eval_studio_client/api/models/v1_delete_workflow_response.py,sha256=ONFzP-cRCRDh57RdcqZOLW4Ww2rt0ZwbvH4jXOHYKzY,2883
|
|
255
316
|
eval_studio_client/api/models/v1_document.py,sha256=nCw63ZezQgX_LxkFvt2Ef55aiGlAvpHHT2KOU31s2sA,5165
|
|
317
|
+
eval_studio_client/api/models/v1_estimate_threshold_request.py,sha256=7tHnLh2PzlaWslURALIvH7GgwlqIBo950rUBBWWgDQM,4083
|
|
256
318
|
eval_studio_client/api/models/v1_evaluation_test.py,sha256=ZYMPixSbh4JNbe13tpGEGwGLTSbfSOXpc32cqGCagEA,4306
|
|
257
319
|
eval_studio_client/api/models/v1_evaluator.py,sha256=lEK10HH3cjWz34EtA-8yvZ4l3o8Z5PZCp2MNFdhbiNs,7991
|
|
258
320
|
eval_studio_client/api/models/v1_evaluator_param_type.py,sha256=IcS-TTJ8ab42UGQ2KW_o97yMJ5w-CWPPVJtM6j9q2Uc,1494
|
|
@@ -274,11 +336,17 @@ eval_studio_client/api/models/v1_get_perturbator_response.py,sha256=xVvhEWmuuBik
|
|
|
274
336
|
eval_studio_client/api/models/v1_get_test_case_response.py,sha256=87XdEvS2-ivERyK8exs0vRHgyRuGbKmSY3_E84S-6og,2916
|
|
275
337
|
eval_studio_client/api/models/v1_get_test_class_response.py,sha256=xQvzAktGUZYaBo4XpwXdvihrlXa6Cn1cFWqd2XJn0io,2934
|
|
276
338
|
eval_studio_client/api/models/v1_get_test_response.py,sha256=F2OHPkoLbibeP992NNpbYY3IkFPIY43tJ1XNfmVrQSo,2803
|
|
277
|
-
eval_studio_client/api/models/
|
|
339
|
+
eval_studio_client/api/models/v1_get_workflow_node_prerequisites_response.py,sha256=kz6oH41wySzUtvHsB_pZB3BCbt85IAmg5SxK5ZQBp_w,2957
|
|
340
|
+
eval_studio_client/api/models/v1_get_workflow_node_response.py,sha256=oGCd1iyfHq0a-diRSpQ5qx-pc5v1m1X9A2pEmmnG4-g,2868
|
|
341
|
+
eval_studio_client/api/models/v1_get_workflow_response.py,sha256=NQDBfgOAFC7Vspv0AL-C_6vLx5w4Gx1TpBXmC910XO8,2871
|
|
342
|
+
eval_studio_client/api/models/v1_import_evaluation_request.py,sha256=n_DWXWvcXi472ClLRAtEBnlmRj7FoVXuPg0d0NpMKzA,4426
|
|
278
343
|
eval_studio_client/api/models/v1_import_leaderboard_request.py,sha256=NPS_ueiyyTQf8lGhc8Mc8ExSOZWf8_6k5tLrXpHZnUA,4507
|
|
279
344
|
eval_studio_client/api/models/v1_import_leaderboard_response.py,sha256=2pvZ0U7oTCfKqMNvuOXGvSFCOnytD9il1-B3fHhnrks,2908
|
|
345
|
+
eval_studio_client/api/models/v1_import_test_cases_from_library_response.py,sha256=5UPK7Tpc7T1SxuWEZi1rzsnhz5WlkBE3-Hvptjkmus4,2944
|
|
346
|
+
eval_studio_client/api/models/v1_import_test_cases_request.py,sha256=e6hI8WdcOvJfRE_RVqFLJfs-ajaF1kH-bgMdfN124x0,3654
|
|
280
347
|
eval_studio_client/api/models/v1_info.py,sha256=HETShtykEMd5JOpggPtQKritGLsA563AfUpUs1B4Q48,4171
|
|
281
348
|
eval_studio_client/api/models/v1_insight.py,sha256=cUYLIZ3XoqG2Woho-lsFqbueqvIlPSNQWvWg8CjmCRM,4840
|
|
349
|
+
eval_studio_client/api/models/v1_labeled_test_case.py,sha256=t-C7dvcRQLPyDwxt5R7e4nsTDiaUk5msgS2a9w_hhog,3117
|
|
282
350
|
eval_studio_client/api/models/v1_leaderboard.py,sha256=VfE-eQaj5iVtwmVKt7TbPP1bjR_p5wP1O5sJGt-_eKs,9973
|
|
283
351
|
eval_studio_client/api/models/v1_leaderboard_status.py,sha256=UJ_672qYRVEovxkVjXSozXQJKiGu9AEH02BvRFulgPM,1316
|
|
284
352
|
eval_studio_client/api/models/v1_leaderboard_type.py,sha256=kt7A8VYFkaK75ESBU2sjYSJv7zf3ec9rEGPnUxqEqYI,1250
|
|
@@ -297,10 +365,13 @@ eval_studio_client/api/models/v1_list_most_recent_models_response.py,sha256=Ar-4
|
|
|
297
365
|
eval_studio_client/api/models/v1_list_most_recent_tests_response.py,sha256=Q5u5yNzv_32U1aChryBAY9FZats7qiW42i6QCENE0eI,3083
|
|
298
366
|
eval_studio_client/api/models/v1_list_operations_response.py,sha256=CfcgkKAzYFKH2vhxOErw7rb_3stdbEpLAm8Z7-qACp4,3133
|
|
299
367
|
eval_studio_client/api/models/v1_list_perturbators_response.py,sha256=HueOij2e2sTo1ZU8D_N45cR1VbAsDF6l64nhC6ZANcY,3169
|
|
368
|
+
eval_studio_client/api/models/v1_list_prompt_library_items_response.py,sha256=JMYjDVcBbGGe06g9gZ8EB5QxoPeN_teaQhuYoK9S6tc,3319
|
|
300
369
|
eval_studio_client/api/models/v1_list_rag_collections_response.py,sha256=48d1mSL4WMImS_EnRsHehtyC32-wkQYiVVX7DKCyaQg,3215
|
|
370
|
+
eval_studio_client/api/models/v1_list_test_case_library_items_response.py,sha256=gVPCZdlAmrwXwio4Lx7hHjsq_jQDoBK_2IwY4hoIa7U,3318
|
|
301
371
|
eval_studio_client/api/models/v1_list_test_cases_response.py,sha256=qdOH5MQJtLBI2Eit7ydfKxvahOK9NUt0QTqrLsnvlR0,3139
|
|
302
372
|
eval_studio_client/api/models/v1_list_test_classes_response.py,sha256=YcigweWfh2cEl9ZEIMRcq8My1HYgN6DL4liUXrQlIFI,3188
|
|
303
373
|
eval_studio_client/api/models/v1_list_tests_response.py,sha256=xq0scvOuwUvx6l156FT9mHUNHA0FKPPYL_G9v2pNdyc,3058
|
|
374
|
+
eval_studio_client/api/models/v1_list_workflows_response.py,sha256=H7PSPS5iuPZFSPvCFEJpl9MxuQzxQtNPEzEcStzTAn8,3117
|
|
304
375
|
eval_studio_client/api/models/v1_model.py,sha256=cWHo_-Te4__19zNHP6andFhJ4TeN4uH8Vq0iVUIIX_w,5852
|
|
305
376
|
eval_studio_client/api/models/v1_model_type.py,sha256=JJBbcSiCXlWZuHcmPKdrJQe2ORx4hul9c7cOxoB6UNQ,1818
|
|
306
377
|
eval_studio_client/api/models/v1_operation.py,sha256=L0Pti9ZO2KzZ17s7DvWlwiyrjyMpF4JFDXc8Xaqp4jM,5886
|
|
@@ -310,13 +381,16 @@ eval_studio_client/api/models/v1_perturbator.py,sha256=8gV-aZTLpuv4UoQibLAvOC3Wr
|
|
|
310
381
|
eval_studio_client/api/models/v1_perturbator_configuration.py,sha256=kjqIGltRMGY0AON-krWZmjQn3AnOmuadu90h08zqTcs,3057
|
|
311
382
|
eval_studio_client/api/models/v1_perturbator_intensity.py,sha256=lOz0Y2ktEZljsQT2Re-fN6PxjfYrqqDUSNXG3JAUcW8,1040
|
|
312
383
|
eval_studio_client/api/models/v1_problem_and_action.py,sha256=OK2g0yckcoXIcHwvnYFkd1QiMQPkuFiCDHyI9oUBgvQ,5740
|
|
384
|
+
eval_studio_client/api/models/v1_process_workflow_node_response.py,sha256=eEMfXAm7uoXIdRI2dxYblZc7fvT7V1wUgT-OXTdKe2s,2916
|
|
385
|
+
eval_studio_client/api/models/v1_prompt_library_item.py,sha256=1x94j6obHsWApbO0aTyFa_Y4SaF0LsRCppOfLQIuuwc,6000
|
|
313
386
|
eval_studio_client/api/models/v1_test.py,sha256=I8T0rYUSvfyj3ozzUxLnqPEa2FfA2d9OVGtKxGA8CyA,5379
|
|
314
|
-
eval_studio_client/api/models/v1_test_case.py,sha256=
|
|
387
|
+
eval_studio_client/api/models/v1_test_case.py,sha256=OLkRwkhygNr1wh0tUaOADsFE4kchPeKY2XQl2yb-dyo,5595
|
|
315
388
|
eval_studio_client/api/models/v1_test_case_relationship.py,sha256=1LOlLLgjC0M58wTLFSP4FLz33kyD7avlY3grMmJpQ1w,2941
|
|
316
389
|
eval_studio_client/api/models/v1_test_cases_generator.py,sha256=pHiwHphRqwgnYjPaOUALS_5arPP3zj08cPcQfoW4NDQ,2330
|
|
317
390
|
eval_studio_client/api/models/v1_test_class.py,sha256=-h71BJDZKuUCdGlcP13xOxx1vNSmWP_ZFkKRBYeS6Mw,5705
|
|
318
391
|
eval_studio_client/api/models/v1_test_class_type.py,sha256=h8nU9k400_DrGJpfp90WQCV5ZIDc6Lqdlcdn7dz47QA,1677
|
|
319
392
|
eval_studio_client/api/models/v1_test_lab.py,sha256=3CCteMA6_reVB4c6L__SX0Oe_oPJErqV8zvmOdDE4KM,6186
|
|
393
|
+
eval_studio_client/api/models/v1_test_suite_evaluates.py,sha256=upPolagrIHMW74hVjYt-4tPD-KvcX_uUGWGApFJUo6o,1022
|
|
320
394
|
eval_studio_client/api/models/v1_update_dashboard_response.py,sha256=QbZlZA3MOjxILVrC-wl8C72eInaPRnQnIDQ9UEuWkB4,2900
|
|
321
395
|
eval_studio_client/api/models/v1_update_document_response.py,sha256=Hf0Z42Z5iV3puEc02XEFvZRmr8eTo1xe54eQ-q1OR0M,2883
|
|
322
396
|
eval_studio_client/api/models/v1_update_leaderboard_response.py,sha256=VSvDeGfVi5JO_e8hZW2UrTc_22y6Wjj3bz2BwuXAmDY,2934
|
|
@@ -324,39 +398,59 @@ eval_studio_client/api/models/v1_update_model_response.py,sha256=OjYx10XWQd59N8C
|
|
|
324
398
|
eval_studio_client/api/models/v1_update_operation_response.py,sha256=5_enB7FYGvu1cz50XkBcx8kE153b5Fj1PKkdXkfy7F8,2900
|
|
325
399
|
eval_studio_client/api/models/v1_update_test_case_response.py,sha256=KyEK84-JjSlYGaS2AYTr289Ej1BwIHam7UYQttcgmhE,2928
|
|
326
400
|
eval_studio_client/api/models/v1_update_test_response.py,sha256=zNGvsle6u0jhBzkgmFIdB8Tsu4-jfjT58HJAm9r70Qg,2815
|
|
401
|
+
eval_studio_client/api/models/v1_update_workflow_node_response.py,sha256=XZ-AdY4NFbnmNMRSf-X39rlDX62OExNHBPwYV_Y4bVg,2880
|
|
402
|
+
eval_studio_client/api/models/v1_update_workflow_response.py,sha256=xj9wygTiV_VQc5lK7BpYjW-ep_PY9v3OYtdjP7p2opY,2883
|
|
327
403
|
eval_studio_client/api/models/v1_who_am_i_response.py,sha256=Qtx3fr6Vn8EMoP61BWVxA1iwPfKFuJluKaF9ew5lcpc,3005
|
|
404
|
+
eval_studio_client/api/models/v1_workflow.py,sha256=veOzuf1bd0-p8ZtiAXFBu8cE6jUd_ihOd5LRoYsScJ8,7566
|
|
405
|
+
eval_studio_client/api/models/v1_workflow_edge.py,sha256=QM4DhAxXp4ewFvrIz6WrWYDM5Uc8zHPY6FFZIeJgmLg,5399
|
|
406
|
+
eval_studio_client/api/models/v1_workflow_edge_type.py,sha256=1kZwy01CjT3ZL7kFvDYCL16E8n-NZidBDml2YhLDh_Q,1051
|
|
407
|
+
eval_studio_client/api/models/v1_workflow_node.py,sha256=gJjHv8u2oszDrVdT7AdDDmnsrqN_0D51DimfWGi2KpI,7843
|
|
408
|
+
eval_studio_client/api/models/v1_workflow_node_artifact.py,sha256=PL15IXuVrD7m46S03U-yaS2zflwbVcsDCgeHzwfH0fc,5499
|
|
409
|
+
eval_studio_client/api/models/v1_workflow_node_artifacts.py,sha256=2bihLRrye1rCEV9-gZWCLgbR9hdBlunKnWebrSxyw5k,3294
|
|
410
|
+
eval_studio_client/api/models/v1_workflow_node_attributes.py,sha256=7F3qBibt0fyd80EOmK_lQX2bUCHxIxLvF3iB_Sw6lSg,2750
|
|
411
|
+
eval_studio_client/api/models/v1_workflow_node_status.py,sha256=h8HKblDlqvY4xRiMMEPbAhyPOiQoa0EZnm6zb_4s8K8,1451
|
|
412
|
+
eval_studio_client/api/models/v1_workflow_node_type.py,sha256=KVThy6ykpg_hOLPALfOQ2aQGAwqYsJ64bwuigg-2zOg,1267
|
|
413
|
+
eval_studio_client/api/models/v1_workflow_node_view.py,sha256=Kv7VM7p5sZIj88iRJSZk2leAz0hq_7rQPv8MFHjyA98,1224
|
|
414
|
+
eval_studio_client/api/models/v1_workflow_type.py,sha256=-QCn6v4VwpeyK3YFI2dy8nloY13t_UTv13aLlGYO3Tg,889
|
|
328
415
|
eval_studio_client/api/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
416
|
eval_studio_client/api/test/test_dashboard_service_api.py,sha256=l7B_2D8uZIPjZGvOGRy9zCV2l3f7ryF9LRYTQXaJYK8,1957
|
|
330
417
|
eval_studio_client/api/test/test_document_service_api.py,sha256=cwiz7pLo7FGkA1DyLhYJfjjhLrSRE_zfYGdH8FCp-Jk,1752
|
|
331
418
|
eval_studio_client/api/test/test_evaluation_service_api.py,sha256=jQU9jfJB6Ibz37Po7dNBHP6az4U9s7Ed6KDhh6Em6YQ,1344
|
|
332
419
|
eval_studio_client/api/test/test_evaluator_service_api.py,sha256=moz8VaWVGmuYf7gxtrXdXLb9gqSj7mmEDJMsAJigMBI,1477
|
|
420
|
+
eval_studio_client/api/test/test_human_calibration_service_api.py,sha256=BA7gj5L-ldFFEJa-3rJN6tqnmfgKbq8caUREBJn19q8,1045
|
|
333
421
|
eval_studio_client/api/test/test_info_service_api.py,sha256=HQ-iUirTdUlYR5ItkoaGkQXNQ0xhbU9-rwTvky9gndE,820
|
|
334
422
|
eval_studio_client/api/test/test_leaderboard_service_api.py,sha256=mS4QbRXAHbh97Ap7qEptfUTI3Z925JwWpfk5K56uF84,2717
|
|
335
423
|
eval_studio_client/api/test/test_model_service_api.py,sha256=4Mj4y6MOpjjycID_PHXesmIpi-s-SnJ_5aHcQGreeUw,2249
|
|
336
424
|
eval_studio_client/api/test/test_operation_progress_service_api.py,sha256=tXMwJtJHNBT7EzHYcxSQkZn5rOXeoUx1NX6Q9ZZKypQ,962
|
|
337
425
|
eval_studio_client/api/test/test_operation_service_api.py,sha256=0PFn2bLCdEHL2tMOcX9uAblVnI18COLfq6rboTmt_dY,1475
|
|
338
426
|
eval_studio_client/api/test/test_perturbation_service_api.py,sha256=YfpA2pAUSpFgYUHsUr0uYEApGNJ6OvOUi4qbYPnc32M,898
|
|
339
|
-
eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py,sha256=
|
|
427
|
+
eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py,sha256=HunBlh4Opgs6faTBBadBv_-Y6QVAzLGuS_awyUGPWh4,4203
|
|
340
428
|
eval_studio_client/api/test/test_perturbator_service_api.py,sha256=w2sSSGqQImehFdh5mW1CJCrspDrbh9AGChLKi_4B5sA,1039
|
|
341
429
|
eval_studio_client/api/test/test_prompt_generation_service_api.py,sha256=FtstQnT4GyMjUgycVy85mzB9q6q59UqthLrYAok-q7c,933
|
|
342
|
-
eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py,sha256=
|
|
430
|
+
eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py,sha256=TlhzXOkAgV-jioyu1DjH0JmwN1jQtGueLErLk3DZ_NQ,3050
|
|
431
|
+
eval_studio_client/api/test/test_prompt_library_service_api.py,sha256=-x6joUIUUcAf8U6Ow-ztF4dYucRQWGSpqA-KZkpFl1U,1082
|
|
343
432
|
eval_studio_client/api/test/test_protobuf_any.py,sha256=r_hldJTEazzotyfozzezCku_pJVbjJkJLNgkd-tNwuE,1392
|
|
433
|
+
eval_studio_client/api/test/test_protobuf_null_value.py,sha256=4NEuiQEHZFZh9ipU6sFD-dd4sFSiUUZsjMDiucsXNaM,782
|
|
344
434
|
eval_studio_client/api/test/test_required_the_dashboard_to_update.py,sha256=W7ONZYvHERtJ7JkaQ7Q-qNhv_TfCQQy0TFs0jd4BFgY,2259
|
|
345
435
|
eval_studio_client/api/test/test_required_the_document_to_update.py,sha256=xSL47970S_U_vhizTkzxLuccEStAdOStN2A9MSdhLDA,2069
|
|
346
436
|
eval_studio_client/api/test/test_required_the_leaderboard_to_update.py,sha256=Nh5LKYZ8SHIieWwLWynCtWygCYKQgUDUlo2Rhc9j4mM,4354
|
|
347
437
|
eval_studio_client/api/test/test_required_the_model_to_update.py,sha256=EMnbgtI5Tjld8Jxi8guFdc_681nD1gTJLUTqUEwyVWM,2174
|
|
348
438
|
eval_studio_client/api/test/test_required_the_operation_to_finalize.py,sha256=CDrFqnYnrtPteZREp1BN-Cn5QANmRbX-t2EDZQhrczs,2511
|
|
349
439
|
eval_studio_client/api/test/test_required_the_operation_to_update.py,sha256=dPcP16j_Hd41iIKK42xHwwRKbicUj_1gCW90m3u4Qkk,2487
|
|
350
|
-
eval_studio_client/api/test/test_required_the_test_case_to_update.py,sha256=
|
|
440
|
+
eval_studio_client/api/test/test_required_the_test_case_to_update.py,sha256=pN8QJPIQYQD-ScMHACT3ZY8YryQgf3tZxC-N3_K0Uhs,2251
|
|
351
441
|
eval_studio_client/api/test/test_required_the_test_to_update.py,sha256=sYN_NehKuYQBGZC87kzJOVTLOBCiT4LkApDh86dQ6TM,2171
|
|
442
|
+
eval_studio_client/api/test/test_required_the_updated_workflow.py,sha256=MUH4SwUo3VWOvpVOb4yqy8_OVi5R1Br2_mRm4HCxWqI,3517
|
|
443
|
+
eval_studio_client/api/test/test_required_the_updated_workflow_node.py,sha256=WlHNv5Q8GlhG0SexYkQPKJ6gU0v_eRiXdXKC6yIn03w,3324
|
|
352
444
|
eval_studio_client/api/test/test_rpc_status.py,sha256=Y36znVymEaHuljg0EEhNC7XdPtdhXJm1MVPLDP0q9EI,1534
|
|
353
445
|
eval_studio_client/api/test/test_test_case_service_api.py,sha256=jvAloz0vZdvvIwVD31EyOxa2v_ErL0FJJxflIxyAFng,1791
|
|
354
446
|
eval_studio_client/api/test/test_test_case_service_batch_delete_test_cases_request.py,sha256=u1C6W1Wg7wMj-FquLFqWgTW-n5-UmZ98fbtvd5Qoo8c,1815
|
|
355
447
|
eval_studio_client/api/test/test_test_class_service_api.py,sha256=yN8S3yg6TbRPmBi9vi9oviRAufBQ_acmt8f-vqJpj_g,1024
|
|
356
448
|
eval_studio_client/api/test/test_test_lab_service_api.py,sha256=T0DoGPp3rN6UPdyBLc8xpWvf5ccmHbxqQPbbfHD-vqU,1000
|
|
357
|
-
eval_studio_client/api/test/test_test_service_api.py,sha256=
|
|
358
|
-
eval_studio_client/api/test/test_test_service_generate_test_cases_request.py,sha256=
|
|
359
|
-
eval_studio_client/api/test/
|
|
449
|
+
eval_studio_client/api/test/test_test_service_api.py,sha256=_CHWGMMjmvlddDGEOlsAkjl3PEofHzSEOwiKjbmAhD4,2526
|
|
450
|
+
eval_studio_client/api/test/test_test_service_generate_test_cases_request.py,sha256=M5RG_ycokATgZEFPuwmBw7qXYa1IZOWoyTVS7PAxo8Q,1976
|
|
451
|
+
eval_studio_client/api/test/test_test_service_import_test_cases_from_library_request.py,sha256=n7u68WMzJ1N5LS1Sq8VMZ3UkWILSnudhhICx3A3ctHI,1949
|
|
452
|
+
eval_studio_client/api/test/test_test_service_list_test_case_library_items_request.py,sha256=Ur0jvDsywak96xE80MmjuY-2D-2-qMF-_PuhVPLIMBk,2167
|
|
453
|
+
eval_studio_client/api/test/test_test_service_perturb_test_request.py,sha256=eP9dZZKmOLEJvxM8Lv820wOxuq4ZONvk07h-iAJxBgY,2079
|
|
360
454
|
eval_studio_client/api/test/test_v1_batch_create_leaderboards_request.py,sha256=eA8aeMCReXohLCDmTjkQMHVBuZNWS37AveqvJ7x2Vy8,5437
|
|
361
455
|
eval_studio_client/api/test/test_v1_batch_create_leaderboards_response.py,sha256=FTtYgOOVeolATU3KFnA3gG9vMnTSz0vtFVI2AEiDsAg,2695
|
|
362
456
|
eval_studio_client/api/test/test_v1_batch_delete_dashboards_request.py,sha256=zm8PI7bHEaDdWYtLuFnjZZZ6H9Yr498N0Zz-0mEO9S4,1668
|
|
@@ -369,15 +463,19 @@ eval_studio_client/api/test/test_v1_batch_delete_leaderboards_request.py,sha256=
|
|
|
369
463
|
eval_studio_client/api/test/test_v1_batch_delete_leaderboards_response.py,sha256=JQDO2XsQhFHCJfHKu3Wfcl0lEZYYVpOMo0tWa6vjNz4,4983
|
|
370
464
|
eval_studio_client/api/test/test_v1_batch_delete_models_request.py,sha256=b5UA8v04e9O_IBR-LkpOGcCIPvtW7f1u_0Pc4GejM_M,1620
|
|
371
465
|
eval_studio_client/api/test/test_v1_batch_delete_models_response.py,sha256=LtOxKzKQKWM73XFQmlvxjHiVma-x-4ZuVyLxmv0Bplo,2482
|
|
372
|
-
eval_studio_client/api/test/test_v1_batch_delete_test_cases_response.py,sha256=
|
|
466
|
+
eval_studio_client/api/test/test_v1_batch_delete_test_cases_response.py,sha256=slOMx8xS4zw4joCgy9dTr8ki8ZsjnYDp6o_zbPyRhE8,2593
|
|
373
467
|
eval_studio_client/api/test/test_v1_batch_delete_tests_request.py,sha256=65MvkpiaakH-UFntCjUtvVqRvXjhkEkU3vAJw8X71DA,1638
|
|
374
468
|
eval_studio_client/api/test/test_v1_batch_delete_tests_response.py,sha256=iAI6nRMnVWlTEk_td5F0aSxBaj4dFvm9tYIwfKY-L4A,2490
|
|
469
|
+
eval_studio_client/api/test/test_v1_batch_delete_workflows_request.py,sha256=SOyTuZuzbroGhUdUSWDQ-dY2CFYIRwWpRI-6WBFYtnc,1656
|
|
470
|
+
eval_studio_client/api/test/test_v1_batch_delete_workflows_response.py,sha256=gtS4Fgt7HbkKxAsdpzhXt-DEDaJmYIZDNgPIijdR64w,4050
|
|
375
471
|
eval_studio_client/api/test/test_v1_batch_get_dashboards_response.py,sha256=bse7GSdgjQKsFAFG2BftNS4kKMJfgE4fN0UZF5j1Cs4,2550
|
|
376
472
|
eval_studio_client/api/test/test_v1_batch_get_documents_response.py,sha256=TXaOjdQzmeilXfmEvtHtmbxDAhGkq8_iWVwgl0x3Btk,2314
|
|
377
473
|
eval_studio_client/api/test/test_v1_batch_get_leaderboards_response.py,sha256=nkq0EY0yy5XTUqpsiKAECZPT7ecm1ZuYfJpEWYRoqqw,4947
|
|
378
474
|
eval_studio_client/api/test/test_v1_batch_get_models_response.py,sha256=9hUIbL12rIeb6oxMN56UO3IxZVUZO5yH71YjFKIvUKo,2446
|
|
379
475
|
eval_studio_client/api/test/test_v1_batch_get_operations_response.py,sha256=NQQQuVTdFuHW4b57s0RRTJfiuOTLLK4LFsGnPjC1kXg,2760
|
|
380
476
|
eval_studio_client/api/test/test_v1_batch_get_tests_response.py,sha256=vwzK5TarbAsm2-NZjvpbNBoCmpM131pW4RH20A4g-h4,2454
|
|
477
|
+
eval_studio_client/api/test/test_v1_batch_get_workflow_edges_response.py,sha256=n5CLUJE9bNDI6PYMxBYDBGPHTRytS2k6wwJ0Se1RtsM,2420
|
|
478
|
+
eval_studio_client/api/test/test_v1_batch_get_workflow_nodes_response.py,sha256=FVRtWLZI7UQl0dDPy36-8PH2lufXUwc444Y8qFCVEjA,3854
|
|
381
479
|
eval_studio_client/api/test/test_v1_batch_import_leaderboard_request.py,sha256=PQdpY05_ZM9slMkdSe_DKUMRke-A3H-1eEXmDh8Rw7c,2010
|
|
382
480
|
eval_studio_client/api/test/test_v1_batch_import_leaderboard_response.py,sha256=35YaSCw05ML-v-9eqDoOcXy4uXbF1Idq02LGEXoJ8Vo,2683
|
|
383
481
|
eval_studio_client/api/test/test_v1_batch_import_tests_request.py,sha256=atDQ5JlmZwhx--_oBfebyY_ivotsdIMzxALbKy1JtyU,1681
|
|
@@ -386,16 +484,17 @@ eval_studio_client/api/test/test_v1_check_base_models_response.py,sha256=I424F_i
|
|
|
386
484
|
eval_studio_client/api/test/test_v1_collection_info.py,sha256=8kjaXSjon83p6IhpwJ_SQyPfIXiOSPNGByrVOavj9bY,1557
|
|
387
485
|
eval_studio_client/api/test/test_v1_create_dashboard_response.py,sha256=eZ1QLNI--mRUUtnvPdX53ah9-XaYT_u6-xxyknfXqck,2408
|
|
388
486
|
eval_studio_client/api/test/test_v1_create_document_response.py,sha256=ISuPY-JKGrx1tngBt7FyyU6rmPB6iWuN_iDFFQXDepw,2192
|
|
389
|
-
eval_studio_client/api/test/test_v1_create_evaluation_request.py,sha256=
|
|
487
|
+
eval_studio_client/api/test/test_v1_create_evaluation_request.py,sha256=6OeQt8Sw4Vc7gedvbGXLCc6_3WU36mt9rqxd5CRQxxc,5339
|
|
390
488
|
eval_studio_client/api/test/test_v1_create_evaluator_response.py,sha256=cb47Ptc5VQpUEpa7Vz2K6eDrDnaZGkmns07g6Q0IvvQ,3645
|
|
391
489
|
eval_studio_client/api/test/test_v1_create_leaderboard_request.py,sha256=dJQ1pN68XjZl29-RCpw_N3fcqKQej-b5zECVnsE1mWM,4601
|
|
392
490
|
eval_studio_client/api/test/test_v1_create_leaderboard_response.py,sha256=Rc6afbNOjXE_BU5JAnjlYUq5m3brOzQfK3LodDKi3yY,2622
|
|
393
491
|
eval_studio_client/api/test/test_v1_create_leaderboard_without_cache_response.py,sha256=pQK-r1a0v6nLfBm0zgpAde489f4vDhBDmhpzrMT1zdk,2768
|
|
394
492
|
eval_studio_client/api/test/test_v1_create_model_response.py,sha256=-fWropoQD9u00zCSUsIFyoUn8NORuOyRPm2uzaoRuUA,2308
|
|
395
493
|
eval_studio_client/api/test/test_v1_create_perturbation_response.py,sha256=JcxrAjOMGJ9rdJcwK8cifK2NzUNjFPdpf7LrZ_v3QDY,1604
|
|
396
|
-
eval_studio_client/api/test/test_v1_create_test_case_response.py,sha256=
|
|
494
|
+
eval_studio_client/api/test/test_v1_create_test_case_response.py,sha256=2zc8CMT6xbmwjFy0UrcNSTujOT4sFo515SiY-NGTD20,2407
|
|
397
495
|
eval_studio_client/api/test/test_v1_create_test_lab_response.py,sha256=ylEWqiOv3fgpHMmFzBRifqSROJk_aUS4C45nTb3JLTk,2412
|
|
398
496
|
eval_studio_client/api/test/test_v1_create_test_response.py,sha256=MSAOIPgVwx2CwSk9v5ePn-J4ecIQhc_4FLi3xd7wLfs,2308
|
|
497
|
+
eval_studio_client/api/test/test_v1_create_workflow_response.py,sha256=yppKVwSFlU3ThPQrmF4Gmr5B0vxlRyLcIk3Lc_Sti90,3776
|
|
399
498
|
eval_studio_client/api/test/test_v1_dashboard.py,sha256=iU6UePju9JUPXgxvgNEW9x8C-5Rw_za4LwI2WrjXuWk,2079
|
|
400
499
|
eval_studio_client/api/test/test_v1_dashboard_status.py,sha256=e9VKDeEgBKdFqon7WuzGLq1qJdznfBoRkRHBJg7huu4,782
|
|
401
500
|
eval_studio_client/api/test/test_v1_delete_dashboard_response.py,sha256=DzOf0sa_rRxal-8hvqyy9u7H-WPdqWuIknZWqbbF7pY,2408
|
|
@@ -403,16 +502,19 @@ eval_studio_client/api/test/test_v1_delete_document_response.py,sha256=NbA3LKK14
|
|
|
403
502
|
eval_studio_client/api/test/test_v1_delete_evaluator_response.py,sha256=uRxY-UxF4l0ehv0d3LPwAyoNdIeYlpeesktLlbDi1sM,3645
|
|
404
503
|
eval_studio_client/api/test/test_v1_delete_leaderboard_response.py,sha256=Pzfn1ttIOYLOpENrnkIBh0gpK2Qn4RIglPQjYJUZ8uE,4613
|
|
405
504
|
eval_studio_client/api/test/test_v1_delete_model_response.py,sha256=IziIJ7JkLs0OIh_N3owBJ6PD6eJiXFf9au0fwfhZ63Y,2308
|
|
406
|
-
eval_studio_client/api/test/test_v1_delete_test_case_response.py,sha256=
|
|
505
|
+
eval_studio_client/api/test/test_v1_delete_test_case_response.py,sha256=l_W0Hn6ARfZGJRfP9TjrDxZA2ZsEs922p5LiNrnOiKg,2407
|
|
407
506
|
eval_studio_client/api/test/test_v1_delete_test_response.py,sha256=BiIi18quSwelzQCpMx4KtBpu2T8tXRhceXBjIqmDckE,2308
|
|
507
|
+
eval_studio_client/api/test/test_v1_delete_workflow_node_response.py,sha256=Dh7aUEMTtJOt4IRM7SL52y0-l1Ou4jnU5gQin2OexaI,3648
|
|
508
|
+
eval_studio_client/api/test/test_v1_delete_workflow_response.py,sha256=UCT03c4WQ5eNaeSPEnD29tuy8848qwDelAmPL31H224,3776
|
|
408
509
|
eval_studio_client/api/test/test_v1_document.py,sha256=HisqsF6odJCJJKoUB-OpzvztUFs2bZ-vDCHvwIilfXY,1889
|
|
409
|
-
eval_studio_client/api/test/
|
|
510
|
+
eval_studio_client/api/test/test_v1_estimate_threshold_request.py,sha256=ep13yY_NFnMty6xfHro-ACT6mGcQG5V0544bfUH7pXA,1950
|
|
511
|
+
eval_studio_client/api/test/test_v1_evaluation_test.py,sha256=MOHTP8y7QJZxOfHUVIlJrSommXWGaOslOhQdYIBi5Bw,2782
|
|
410
512
|
eval_studio_client/api/test/test_v1_evaluator.py,sha256=Jd-2EZ01iag1b8yNw3Ueeqot9rZae4FA7TgD7i1kkhY,3319
|
|
411
513
|
eval_studio_client/api/test/test_v1_evaluator_param_type.py,sha256=cntJdfZEhvtu71zYlyENghFSIMXXIBSZ5NS8VZkcJfM,804
|
|
412
514
|
eval_studio_client/api/test/test_v1_evaluator_parameter.py,sha256=sInYxOvcqkO_F7ejd1mUBYLg3Oqw74YqBxbGnEyNmqU,2006
|
|
413
515
|
eval_studio_client/api/test/test_v1_evaluator_view.py,sha256=_AzgkUjGGKsOUzUnS9mjwayUqKeZu1atPeRZufSFB7Y,768
|
|
414
516
|
eval_studio_client/api/test/test_v1_finalize_operation_response.py,sha256=O_PqAof0Mkv0jKTuyCo_STlD8DicNoZzdumrnvHHSSo,2622
|
|
415
|
-
eval_studio_client/api/test/test_v1_find_all_test_cases_by_id_response.py,sha256=
|
|
517
|
+
eval_studio_client/api/test/test_v1_find_all_test_cases_by_id_response.py,sha256=x9UWv5-jFf5wKkUMcmv8iicFYYRM6znmCMtZBkSOOaI,2595
|
|
416
518
|
eval_studio_client/api/test/test_v1_find_test_lab_response.py,sha256=WB1ElKlRXW_9Pxd2lVuMA9vQTKSScYjE_auZUBEN36o,2388
|
|
417
519
|
eval_studio_client/api/test/test_v1_generate_test_cases_response.py,sha256=JKZeCkW9Md01HcojJBNZCFkcRex8RkZWltCwgbXEX64,2623
|
|
418
520
|
eval_studio_client/api/test/test_v1_get_dashboard_response.py,sha256=v6oXlH54CD5ItStOR29agfqmACsWmRWMpW3iKesxylQ,2372
|
|
@@ -424,14 +526,20 @@ eval_studio_client/api/test/test_v1_get_model_response.py,sha256=yv1s8t-I_VseVgs
|
|
|
424
526
|
eval_studio_client/api/test/test_v1_get_operation_progress_by_parent_response.py,sha256=An3UEbWJesYHkoYTigs1hhwjSajDdP8z1fOTVmw8Zms,1946
|
|
425
527
|
eval_studio_client/api/test/test_v1_get_operation_response.py,sha256=CvT69fxRGBLX0it6xBUZj1Aafl5cr5bgwgn4Y_MZ4jQ,2562
|
|
426
528
|
eval_studio_client/api/test/test_v1_get_perturbator_response.py,sha256=J00HhWvyzZVu1El3dYYNufP29x6LldTPqrRsI_eZL08,2292
|
|
427
|
-
eval_studio_client/api/test/test_v1_get_test_case_response.py,sha256=
|
|
529
|
+
eval_studio_client/api/test/test_v1_get_test_case_response.py,sha256=bvHLNNydBz6JTml4XfFoiiAbUxl0SI9EhLqUdQvkiFA,2371
|
|
428
530
|
eval_studio_client/api/test/test_v1_get_test_class_response.py,sha256=9VpU1V1PYN_X9cBpkV7MM_LXt4BZIuohlSOEjGuPxnI,2484
|
|
429
531
|
eval_studio_client/api/test/test_v1_get_test_response.py,sha256=vG9d0dXvDtgiDP7WMAe1EgRaIzfoG5CWN4dR3tvfTBs,2272
|
|
430
|
-
eval_studio_client/api/test/
|
|
532
|
+
eval_studio_client/api/test/test_v1_get_workflow_node_prerequisites_response.py,sha256=_Xij-vo8z7ZwseZvSBrcqKPq7G7V-1OBmvsUagowm_4,1837
|
|
533
|
+
eval_studio_client/api/test/test_v1_get_workflow_node_response.py,sha256=q2VhvNK3doeqECMo1a44V3KPaMN0h2gXgSLYf74sezc,3612
|
|
534
|
+
eval_studio_client/api/test/test_v1_get_workflow_response.py,sha256=-JpxbdMCM-IycwPjWeEQhZTlNhBn-msDzMEjkSZdm0A,3740
|
|
535
|
+
eval_studio_client/api/test/test_v1_import_evaluation_request.py,sha256=wQAijJRgfraX0SS6eAYFG1xwIZvHqSDHnZ4CCWqNQsA,3440
|
|
431
536
|
eval_studio_client/api/test/test_v1_import_leaderboard_request.py,sha256=eNISkgITy2uGY00ii_HM_oTW0yi72MejLjsrNNEeNDU,1908
|
|
432
537
|
eval_studio_client/api/test/test_v1_import_leaderboard_response.py,sha256=TDJL06A-LSK6h8AR9XOZ5mqTH4nw1AuwI0pmJORRem4,2622
|
|
538
|
+
eval_studio_client/api/test/test_v1_import_test_cases_from_library_response.py,sha256=XLFWGsEZkxbvlgKyAtRUzpOTgwToOhL7cHbtMl8z67E,2733
|
|
539
|
+
eval_studio_client/api/test/test_v1_import_test_cases_request.py,sha256=cnA2noIMQFkAEhvJziPt9tNCJs7BzqoMx82dAJrU0AQ,1733
|
|
433
540
|
eval_studio_client/api/test/test_v1_info.py,sha256=mH4FNLdhWEAoUGStrRwq_V0vzL1yLyVr87JVo69oP6c,1616
|
|
434
541
|
eval_studio_client/api/test/test_v1_insight.py,sha256=ksUlz3_-x1cXDyFkjX5v2Y3aI2ldhw1jCFvgTq4IpL8,1893
|
|
542
|
+
eval_studio_client/api/test/test_v1_labeled_test_case.py,sha256=wcQYAP9bxUQ0yz9iGCY6UY-q5YjPYWsaavBtXHNXMMg,1534
|
|
435
543
|
eval_studio_client/api/test/test_v1_leaderboard.py,sha256=GWCSh8aL4yPekWYTZ-kwOgeACzwFZd_cukuwdjop0ww,4174
|
|
436
544
|
eval_studio_client/api/test/test_v1_leaderboard_status.py,sha256=IJDIjFcgBTZfj6Jntspr7V8wNfQFHrmleWJAF6PRtxk,796
|
|
437
545
|
eval_studio_client/api/test/test_v1_leaderboard_type.py,sha256=dO6jLbCaIL1Rb94trsgsly77EjNERC6Twc1GMPCOaWE,782
|
|
@@ -450,10 +558,13 @@ eval_studio_client/api/test/test_v1_list_most_recent_models_response.py,sha256=7
|
|
|
450
558
|
eval_studio_client/api/test/test_v1_list_most_recent_tests_response.py,sha256=fZ4ZdqZSpemUgsUKycp-LJ9wffVo7jBZSoC1YADbYSs,2527
|
|
451
559
|
eval_studio_client/api/test/test_v1_list_operations_response.py,sha256=B_ECTmGtt7mQCxQcLsx4w-0DXtSQnO4YffKGwC87sVM,2711
|
|
452
560
|
eval_studio_client/api/test/test_v1_list_perturbators_response.py,sha256=gxSgT3r3q_jZGfqy7h8a0VBgDaoGTRITrrgtyreNJME,2413
|
|
561
|
+
eval_studio_client/api/test/test_v1_list_prompt_library_items_response.py,sha256=Mw0vhnWHmGPk5bi_7oqH4mTTULLyrBfFkM5rSMJkYro,2741
|
|
453
562
|
eval_studio_client/api/test/test_v1_list_rag_collections_response.py,sha256=vwDrcwZ_7OH1Rtk63suNYqj2x9a3fB6FYJ7n2pfYK2c,1882
|
|
454
|
-
eval_studio_client/api/test/
|
|
563
|
+
eval_studio_client/api/test/test_v1_list_test_case_library_items_response.py,sha256=_myDd9ydgUlJTqykhXuem7F4Z8dkpx863Mmpr4Lw_uU,2766
|
|
564
|
+
eval_studio_client/api/test/test_v1_list_test_cases_response.py,sha256=n1WYWT9BPf2Z3osELAnYoGxbfl0jhopfI2FdS7OAB8U,2508
|
|
455
565
|
eval_studio_client/api/test/test_v1_list_test_classes_response.py,sha256=WgPVJMVl8ZHWbzhPCFxgyRfNC9GV5LRikQN7DydN3FE,2642
|
|
456
566
|
eval_studio_client/api/test/test_v1_list_tests_response.py,sha256=Rtv3Ge9wSYaHRo4nVARmLN_DG4iGgF1qGBzrGZeUmWA,2405
|
|
567
|
+
eval_studio_client/api/test/test_v1_list_workflows_response.py,sha256=iTDYoq3CBDnvYaLSTUFDQFqKC0p-W0lLcTfAKttjFkk,3965
|
|
457
568
|
eval_studio_client/api/test/test_v1_model.py,sha256=zs6SguE8yBmuLjh-q5zNNoUPFuCV0hiYaKFE7WYr7CE,1994
|
|
458
569
|
eval_studio_client/api/test/test_v1_model_type.py,sha256=HuSuyKq7oDZr1O0QGbohQXeO0ev9eJkhJRC9h4KSZ_4,740
|
|
459
570
|
eval_studio_client/api/test/test_v1_operation.py,sha256=ntxKVnL9BQcJud8nlXwHsy2-oWcdGm1IcaiXfuXsYZQ,2307
|
|
@@ -463,23 +574,42 @@ eval_studio_client/api/test/test_v1_perturbator.py,sha256=NQKg0ai1nQ6tUwBIPo-Ubr
|
|
|
463
574
|
eval_studio_client/api/test/test_v1_perturbator_configuration.py,sha256=B7MXt4_aKJB0ZzTRYBNDVqtXbJBZYAtD8hLkWo4kIoE,1667
|
|
464
575
|
eval_studio_client/api/test/test_v1_perturbator_intensity.py,sha256=V5g-GFazwaUz_rBX8-x_nHoO-DX3n9pHpFTXO_nNQ-Q,817
|
|
465
576
|
eval_studio_client/api/test/test_v1_problem_and_action.py,sha256=y_dJ_44BvbCuD3rlLPcuHAx1DU4Ch_5guT1hdgP-iz8,1946
|
|
577
|
+
eval_studio_client/api/test/test_v1_process_workflow_node_response.py,sha256=5g2EbFbNKDPK5yOx4KpcSdCjTJ3sztY2vocLymoShWs,2647
|
|
578
|
+
eval_studio_client/api/test/test_v1_prompt_library_item.py,sha256=RP1IfoX7pZEyKemb35nvNPMep4flYGFKrnlgXPybjrE,2266
|
|
466
579
|
eval_studio_client/api/test/test_v1_test.py,sha256=ZI5sjw32WTi3ikgXTsrV--fWb_R6302fA7iSzBkfPsY,1991
|
|
467
|
-
eval_studio_client/api/test/test_v1_test_case.py,sha256
|
|
580
|
+
eval_studio_client/api/test/test_v1_test_case.py,sha256=-kIb-yueHbKhkAu76qMSAhM6z0hkvs5_1MltiD1JKO4,2071
|
|
468
581
|
eval_studio_client/api/test/test_v1_test_case_relationship.py,sha256=9M61ao5XykTDDwLwSRHiR352gihgAjOmgczCejEk8-o,1584
|
|
469
582
|
eval_studio_client/api/test/test_v1_test_cases_generator.py,sha256=8-4SkHPSlskfpOOzWKEbGmVtygrIQz6purfj2bd2Wkw,804
|
|
470
583
|
eval_studio_client/api/test/test_v1_test_class.py,sha256=bD61BwWNlCW4zf9IpYEc58YQvzKKtcKaWF6IQ4lQuNI,2173
|
|
471
584
|
eval_studio_client/api/test/test_v1_test_class_type.py,sha256=W-G9hP2KRZdHFYFL2219rA5BPoqEEiqsc2Hr43iet8U,769
|
|
472
585
|
eval_studio_client/api/test/test_v1_test_lab.py,sha256=0icW0RcMyUQdRV_iucGweNoyKNnuMkr9uKjLiUqe-Bo,2079
|
|
586
|
+
eval_studio_client/api/test/test_v1_test_suite_evaluates.py,sha256=fRMYQoOlEzWlmTK29TK3nczLWyEfFD4jTAVMM4EKmyk,804
|
|
473
587
|
eval_studio_client/api/test/test_v1_update_dashboard_response.py,sha256=kWhFBR_iM1RIBTP1EKY-iayZTggdY4Nb_SdH0GX11gM,2408
|
|
474
588
|
eval_studio_client/api/test/test_v1_update_document_response.py,sha256=3q4ccXhd3cjvkLGpv9NEhtSK1hLYE9qTsa1-z1Pqt2Q,2192
|
|
475
589
|
eval_studio_client/api/test/test_v1_update_leaderboard_response.py,sha256=JODZ75QeAArn1lbzRxW0pWP_BAx6MoFGwJGONTC3wIk,4613
|
|
476
590
|
eval_studio_client/api/test/test_v1_update_model_response.py,sha256=a_jqlDFUNpPlc2epPu5UTDTo3SvDB9ewExhPaw8sN1w,2308
|
|
477
591
|
eval_studio_client/api/test/test_v1_update_operation_response.py,sha256=J3-R0O5SYTz1BaFmxTbCLx9wZcMPcmP5VQAul-QJvHs,2598
|
|
478
|
-
eval_studio_client/api/test/test_v1_update_test_case_response.py,sha256=
|
|
592
|
+
eval_studio_client/api/test/test_v1_update_test_case_response.py,sha256=lfWQlPY6rmGV2L1-heHuRTZ2DkSG3BV2qyajLZSkTNw,2407
|
|
479
593
|
eval_studio_client/api/test/test_v1_update_test_response.py,sha256=pqTwL9SgoOM9kk6RI1ED2U4ZkmLHCBZM9Q6ZUU3Q1eU,2308
|
|
594
|
+
eval_studio_client/api/test/test_v1_update_workflow_node_response.py,sha256=VXd7jAy4PUHVacF65o5tRFW3KMfM8TF01j4vMvMv6-A,3648
|
|
595
|
+
eval_studio_client/api/test/test_v1_update_workflow_response.py,sha256=1XjQm2ZNisovKmDyarIji2G_5A97B4SbHvBQrEpdReI,3776
|
|
480
596
|
eval_studio_client/api/test/test_v1_who_am_i_response.py,sha256=bNbjL5-b-4asyziW6znJhuU2yrzd9RgJa2ZiNw3e6YA,1523
|
|
597
|
+
eval_studio_client/api/test/test_v1_workflow.py,sha256=e-t7K4zU4_wUhhwrqp9Vo0S88xqOrWNcNX3X0aGzDig,3350
|
|
598
|
+
eval_studio_client/api/test/test_v1_workflow_edge.py,sha256=j3PegPQBe8oBEkVtXxCfDdBC4UWaaCDojTejZIp-hDY,1985
|
|
599
|
+
eval_studio_client/api/test/test_v1_workflow_edge_type.py,sha256=pKHuvtINx0OLqqfIWQjUxtYetoutvMD8rjh2VQvvKfI,790
|
|
600
|
+
eval_studio_client/api/test/test_v1_workflow_node.py,sha256=2at40KswPaDSDqWSQKR37S0zacRUSwcf_lzSjnZgt5c,3249
|
|
601
|
+
eval_studio_client/api/test/test_v1_workflow_node_artifact.py,sha256=LXXx67A-E-BxFUN0L4UsH25-bW1-lJ74cNAV6U14PAE,2070
|
|
602
|
+
eval_studio_client/api/test/test_v1_workflow_node_artifacts.py,sha256=SBcC51dr9uG1cpzaGPEfj6WhqreZw1152ksPBpqYUGM,2335
|
|
603
|
+
eval_studio_client/api/test/test_v1_workflow_node_attributes.py,sha256=O8UEZ4I-oQTe46sOEgG61wjgLEI49R3blEE3KMCZrqc,1558
|
|
604
|
+
eval_studio_client/api/test/test_v1_workflow_node_status.py,sha256=PoH8NwPjgFo-5Wt1jZuqhNBZYdG0x2_X07F2f_PfyF8,804
|
|
605
|
+
eval_studio_client/api/test/test_v1_workflow_node_type.py,sha256=xOajjSOY5-KkqlP-e6_bANRIklgKF9Czvc97fqhSI-s,790
|
|
606
|
+
eval_studio_client/api/test/test_v1_workflow_node_view.py,sha256=KlEzP_dVr671McdIKB2nj4h6DF1fJq9xkF2gQ0qhALg,790
|
|
607
|
+
eval_studio_client/api/test/test_v1_workflow_type.py,sha256=39HWUKOP7QiUW8MpKkoBZWy-kDHQh66jluu8vO_E_iY,761
|
|
481
608
|
eval_studio_client/api/test/test_who_am_i_service_api.py,sha256=gYWKFamJMyVne2QaOSPz6WEkxExRuAphMGKf1nFayLU,898
|
|
482
|
-
eval_studio_client/
|
|
483
|
-
eval_studio_client
|
|
484
|
-
eval_studio_client
|
|
485
|
-
eval_studio_client
|
|
609
|
+
eval_studio_client/api/test/test_workflow_edge_service_api.py,sha256=JDRVkX3LtODg4_Ya2AYu1KYcRovmh6JsqkPDxisfQJo,1133
|
|
610
|
+
eval_studio_client/api/test/test_workflow_node_service_api.py,sha256=RqCbF4hEBvTEHg7PRa45A7tpdvOgLd3DRAbVQg5kTJo,2870
|
|
611
|
+
eval_studio_client/api/test/test_workflow_service_api.py,sha256=_IhGCm1eLF2MHT2Cf3Niu38pyPciND9O-tMHn9CkkhY,2143
|
|
612
|
+
eval_studio_client/gen/openapiv2/eval_studio.swagger.json,sha256=g1MKbSA9gdGtH06DSmYCaKF0AIyRMXyzqg1KjwPC2ps,276077
|
|
613
|
+
eval_studio_client-1.0.1.dist-info/METADATA,sha256=xSYYltM43ZLCddx8HaDUmbo7VjO6QEQvNZngS5KyPCs,694
|
|
614
|
+
eval_studio_client-1.0.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
615
|
+
eval_studio_client-1.0.1.dist-info/RECORD,,
|