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.
Files changed (180) hide show
  1. eval_studio_client/api/__init__.py +43 -0
  2. eval_studio_client/api/api/__init__.py +5 -0
  3. eval_studio_client/api/api/human_calibration_service_api.py +304 -0
  4. eval_studio_client/api/api/perturbator_service_api.py +268 -1
  5. eval_studio_client/api/api/prompt_library_service_api.py +669 -0
  6. eval_studio_client/api/api/test_service_api.py +568 -0
  7. eval_studio_client/api/api/workflow_edge_service_api.py +296 -0
  8. eval_studio_client/api/api/workflow_node_service_api.py +1634 -0
  9. eval_studio_client/api/api/workflow_service_api.py +1609 -0
  10. eval_studio_client/api/docs/HumanCalibrationServiceApi.md +77 -0
  11. eval_studio_client/api/docs/PerturbationServiceCreatePerturbationRequest.md +1 -0
  12. eval_studio_client/api/docs/PerturbatorServiceApi.md +33 -3
  13. eval_studio_client/api/docs/PromptGenerationServiceAutoGeneratePromptsRequest.md +2 -1
  14. eval_studio_client/api/docs/PromptLibraryServiceApi.md +155 -0
  15. eval_studio_client/api/docs/ProtobufNullValue.md +12 -0
  16. eval_studio_client/api/docs/RequiredTheTestCaseToUpdate.md +1 -0
  17. eval_studio_client/api/docs/RequiredTheUpdatedWorkflow.md +44 -0
  18. eval_studio_client/api/docs/RequiredTheUpdatedWorkflowNode.md +44 -0
  19. eval_studio_client/api/docs/TestServiceApi.md +140 -0
  20. eval_studio_client/api/docs/TestServiceGenerateTestCasesRequest.md +1 -0
  21. eval_studio_client/api/docs/TestServiceImportTestCasesFromLibraryRequest.md +32 -0
  22. eval_studio_client/api/docs/TestServiceListTestCaseLibraryItemsRequest.md +35 -0
  23. eval_studio_client/api/docs/TestServicePerturbTestRequest.md +1 -0
  24. eval_studio_client/api/docs/V1BatchDeleteWorkflowsRequest.md +29 -0
  25. eval_studio_client/api/docs/V1BatchDeleteWorkflowsResponse.md +29 -0
  26. eval_studio_client/api/docs/V1BatchGetWorkflowEdgesResponse.md +29 -0
  27. eval_studio_client/api/docs/V1BatchGetWorkflowNodesResponse.md +29 -0
  28. eval_studio_client/api/docs/V1CreateEvaluationRequest.md +1 -0
  29. eval_studio_client/api/docs/V1CreateWorkflowResponse.md +29 -0
  30. eval_studio_client/api/docs/V1DeleteWorkflowNodeResponse.md +29 -0
  31. eval_studio_client/api/docs/V1DeleteWorkflowResponse.md +29 -0
  32. eval_studio_client/api/docs/V1EstimateThresholdRequest.md +33 -0
  33. eval_studio_client/api/docs/V1GetWorkflowNodePrerequisitesResponse.md +30 -0
  34. eval_studio_client/api/docs/V1GetWorkflowNodeResponse.md +29 -0
  35. eval_studio_client/api/docs/V1GetWorkflowResponse.md +29 -0
  36. eval_studio_client/api/docs/V1ImportEvaluationRequest.md +1 -0
  37. eval_studio_client/api/docs/V1ImportTestCasesFromLibraryResponse.md +29 -0
  38. eval_studio_client/api/docs/V1ImportTestCasesRequest.md +33 -0
  39. eval_studio_client/api/docs/V1LabeledTestCase.md +31 -0
  40. eval_studio_client/api/docs/V1ListPromptLibraryItemsResponse.md +29 -0
  41. eval_studio_client/api/docs/V1ListTestCaseLibraryItemsResponse.md +29 -0
  42. eval_studio_client/api/docs/V1ListWorkflowsResponse.md +29 -0
  43. eval_studio_client/api/docs/V1ProcessWorkflowNodeResponse.md +29 -0
  44. eval_studio_client/api/docs/V1PromptLibraryItem.md +42 -0
  45. eval_studio_client/api/docs/V1TestCase.md +1 -0
  46. eval_studio_client/api/docs/V1TestSuiteEvaluates.md +11 -0
  47. eval_studio_client/api/docs/V1UpdateWorkflowNodeResponse.md +29 -0
  48. eval_studio_client/api/docs/V1UpdateWorkflowResponse.md +29 -0
  49. eval_studio_client/api/docs/V1Workflow.md +46 -0
  50. eval_studio_client/api/docs/V1WorkflowEdge.md +40 -0
  51. eval_studio_client/api/docs/V1WorkflowEdgeType.md +12 -0
  52. eval_studio_client/api/docs/V1WorkflowNode.md +46 -0
  53. eval_studio_client/api/docs/V1WorkflowNodeArtifact.md +40 -0
  54. eval_studio_client/api/docs/V1WorkflowNodeArtifacts.md +29 -0
  55. eval_studio_client/api/docs/V1WorkflowNodeAttributes.md +30 -0
  56. eval_studio_client/api/docs/V1WorkflowNodeStatus.md +12 -0
  57. eval_studio_client/api/docs/V1WorkflowNodeType.md +12 -0
  58. eval_studio_client/api/docs/V1WorkflowNodeView.md +12 -0
  59. eval_studio_client/api/docs/V1WorkflowType.md +12 -0
  60. eval_studio_client/api/docs/WorkflowEdgeServiceApi.md +76 -0
  61. eval_studio_client/api/docs/WorkflowNodeServiceApi.md +423 -0
  62. eval_studio_client/api/docs/WorkflowServiceApi.md +417 -0
  63. eval_studio_client/api/models/__init__.py +38 -0
  64. eval_studio_client/api/models/perturbation_service_create_perturbation_request.py +8 -2
  65. eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py +5 -3
  66. eval_studio_client/api/models/protobuf_null_value.py +36 -0
  67. eval_studio_client/api/models/required_the_test_case_to_update.py +6 -2
  68. eval_studio_client/api/models/required_the_updated_workflow.py +152 -0
  69. eval_studio_client/api/models/required_the_updated_workflow_node.py +152 -0
  70. eval_studio_client/api/models/test_service_generate_test_cases_request.py +4 -2
  71. eval_studio_client/api/models/test_service_import_test_cases_from_library_request.py +93 -0
  72. eval_studio_client/api/models/test_service_list_test_case_library_items_request.py +99 -0
  73. eval_studio_client/api/models/test_service_perturb_test_request.py +4 -2
  74. eval_studio_client/api/models/v1_batch_delete_workflows_request.py +87 -0
  75. eval_studio_client/api/models/v1_batch_delete_workflows_response.py +95 -0
  76. eval_studio_client/api/models/v1_batch_get_workflow_edges_response.py +95 -0
  77. eval_studio_client/api/models/v1_batch_get_workflow_nodes_response.py +95 -0
  78. eval_studio_client/api/models/v1_create_evaluation_request.py +7 -2
  79. eval_studio_client/api/models/v1_create_workflow_response.py +91 -0
  80. eval_studio_client/api/models/v1_delete_workflow_node_response.py +91 -0
  81. eval_studio_client/api/models/v1_delete_workflow_response.py +91 -0
  82. eval_studio_client/api/models/v1_estimate_threshold_request.py +103 -0
  83. eval_studio_client/api/models/v1_get_workflow_node_prerequisites_response.py +89 -0
  84. eval_studio_client/api/models/v1_get_workflow_node_response.py +91 -0
  85. eval_studio_client/api/models/v1_get_workflow_response.py +91 -0
  86. eval_studio_client/api/models/v1_import_evaluation_request.py +7 -2
  87. eval_studio_client/api/models/v1_import_test_cases_from_library_response.py +91 -0
  88. eval_studio_client/api/models/v1_import_test_cases_request.py +95 -0
  89. eval_studio_client/api/models/v1_labeled_test_case.py +91 -0
  90. eval_studio_client/api/models/v1_list_prompt_library_items_response.py +95 -0
  91. eval_studio_client/api/models/v1_list_test_case_library_items_response.py +95 -0
  92. eval_studio_client/api/models/v1_list_workflows_response.py +95 -0
  93. eval_studio_client/api/models/v1_process_workflow_node_response.py +91 -0
  94. eval_studio_client/api/models/v1_prompt_library_item.py +129 -0
  95. eval_studio_client/api/models/v1_test_case.py +6 -2
  96. eval_studio_client/api/models/v1_test_suite_evaluates.py +39 -0
  97. eval_studio_client/api/models/v1_update_workflow_node_response.py +91 -0
  98. eval_studio_client/api/models/v1_update_workflow_response.py +91 -0
  99. eval_studio_client/api/models/v1_workflow.py +156 -0
  100. eval_studio_client/api/models/v1_workflow_edge.py +123 -0
  101. eval_studio_client/api/models/v1_workflow_edge_type.py +37 -0
  102. eval_studio_client/api/models/v1_workflow_node.py +156 -0
  103. eval_studio_client/api/models/v1_workflow_node_artifact.py +122 -0
  104. eval_studio_client/api/models/v1_workflow_node_artifacts.py +97 -0
  105. eval_studio_client/api/models/v1_workflow_node_attributes.py +87 -0
  106. eval_studio_client/api/models/v1_workflow_node_status.py +40 -0
  107. eval_studio_client/api/models/v1_workflow_node_type.py +41 -0
  108. eval_studio_client/api/models/v1_workflow_node_view.py +38 -0
  109. eval_studio_client/api/models/v1_workflow_type.py +37 -0
  110. eval_studio_client/api/test/test_human_calibration_service_api.py +38 -0
  111. eval_studio_client/api/test/test_perturbation_service_create_perturbation_request.py +20 -2
  112. eval_studio_client/api/test/test_prompt_generation_service_auto_generate_prompts_request.py +4 -1
  113. eval_studio_client/api/test/test_prompt_library_service_api.py +43 -0
  114. eval_studio_client/api/test/test_protobuf_null_value.py +33 -0
  115. eval_studio_client/api/test/test_required_the_test_case_to_update.py +4 -1
  116. eval_studio_client/api/test/test_required_the_updated_workflow.py +88 -0
  117. eval_studio_client/api/test/test_required_the_updated_workflow_node.py +80 -0
  118. eval_studio_client/api/test/test_test_service_api.py +12 -0
  119. eval_studio_client/api/test/test_test_service_generate_test_cases_request.py +4 -1
  120. eval_studio_client/api/test/test_test_service_import_test_cases_from_library_request.py +56 -0
  121. eval_studio_client/api/test/test_test_service_list_test_case_library_items_request.py +63 -0
  122. eval_studio_client/api/test/test_test_service_perturb_test_request.py +4 -1
  123. eval_studio_client/api/test/test_v1_batch_delete_test_cases_response.py +4 -1
  124. eval_studio_client/api/test/test_v1_batch_delete_workflows_request.py +53 -0
  125. eval_studio_client/api/test/test_v1_batch_delete_workflows_response.py +92 -0
  126. eval_studio_client/api/test/test_v1_batch_get_workflow_edges_response.py +64 -0
  127. eval_studio_client/api/test/test_v1_batch_get_workflow_nodes_response.py +84 -0
  128. eval_studio_client/api/test/test_v1_create_evaluation_request.py +20 -2
  129. eval_studio_client/api/test/test_v1_create_test_case_response.py +4 -1
  130. eval_studio_client/api/test/test_v1_create_workflow_response.py +90 -0
  131. eval_studio_client/api/test/test_v1_delete_test_case_response.py +4 -1
  132. eval_studio_client/api/test/test_v1_delete_workflow_node_response.py +82 -0
  133. eval_studio_client/api/test/test_v1_delete_workflow_response.py +90 -0
  134. eval_studio_client/api/test/test_v1_estimate_threshold_request.py +60 -0
  135. eval_studio_client/api/test/test_v1_evaluation_test.py +4 -1
  136. eval_studio_client/api/test/test_v1_find_all_test_cases_by_id_response.py +4 -1
  137. eval_studio_client/api/test/test_v1_get_test_case_response.py +4 -1
  138. eval_studio_client/api/test/test_v1_get_workflow_node_prerequisites_response.py +56 -0
  139. eval_studio_client/api/test/test_v1_get_workflow_node_response.py +82 -0
  140. eval_studio_client/api/test/test_v1_get_workflow_response.py +90 -0
  141. eval_studio_client/api/test/test_v1_import_evaluation_request.py +16 -1
  142. eval_studio_client/api/test/test_v1_import_test_cases_from_library_response.py +71 -0
  143. eval_studio_client/api/test/test_v1_import_test_cases_request.py +57 -0
  144. eval_studio_client/api/test/test_v1_labeled_test_case.py +53 -0
  145. eval_studio_client/api/test/test_v1_list_prompt_library_items_response.py +71 -0
  146. eval_studio_client/api/test/test_v1_list_test_case_library_items_response.py +71 -0
  147. eval_studio_client/api/test/test_v1_list_test_cases_response.py +4 -1
  148. eval_studio_client/api/test/test_v1_list_workflows_response.py +92 -0
  149. eval_studio_client/api/test/test_v1_process_workflow_node_response.py +71 -0
  150. eval_studio_client/api/test/test_v1_prompt_library_item.py +68 -0
  151. eval_studio_client/api/test/test_v1_test_case.py +4 -1
  152. eval_studio_client/api/test/test_v1_test_suite_evaluates.py +33 -0
  153. eval_studio_client/api/test/test_v1_update_test_case_response.py +4 -1
  154. eval_studio_client/api/test/test_v1_update_workflow_node_response.py +82 -0
  155. eval_studio_client/api/test/test_v1_update_workflow_response.py +90 -0
  156. eval_studio_client/api/test/test_v1_workflow.py +89 -0
  157. eval_studio_client/api/test/test_v1_workflow_edge.py +61 -0
  158. eval_studio_client/api/test/test_v1_workflow_edge_type.py +33 -0
  159. eval_studio_client/api/test/test_v1_workflow_node.py +81 -0
  160. eval_studio_client/api/test/test_v1_workflow_node_artifact.py +61 -0
  161. eval_studio_client/api/test/test_v1_workflow_node_artifacts.py +64 -0
  162. eval_studio_client/api/test/test_v1_workflow_node_attributes.py +51 -0
  163. eval_studio_client/api/test/test_v1_workflow_node_status.py +33 -0
  164. eval_studio_client/api/test/test_v1_workflow_node_type.py +33 -0
  165. eval_studio_client/api/test/test_v1_workflow_node_view.py +33 -0
  166. eval_studio_client/api/test/test_v1_workflow_type.py +33 -0
  167. eval_studio_client/api/test/test_workflow_edge_service_api.py +38 -0
  168. eval_studio_client/api/test/test_workflow_node_service_api.py +73 -0
  169. eval_studio_client/api/test/test_workflow_service_api.py +73 -0
  170. eval_studio_client/client.py +7 -0
  171. eval_studio_client/dashboards.py +66 -18
  172. eval_studio_client/gen/openapiv2/eval_studio.swagger.json +2665 -794
  173. eval_studio_client/leaderboards.py +125 -0
  174. eval_studio_client/models.py +3 -42
  175. eval_studio_client/test_labs.py +49 -21
  176. eval_studio_client/tests.py +221 -51
  177. eval_studio_client/utils.py +26 -0
  178. {eval_studio_client-1.0.0a1.dist-info → eval_studio_client-1.0.1.dist-info}/METADATA +1 -2
  179. {eval_studio_client-1.0.0a1.dist-info → eval_studio_client-1.0.1.dist-info}/RECORD +180 -50
  180. {eval_studio_client-1.0.0a1.dist-info → eval_studio_client-1.0.1.dist-info}/WHEEL +1 -1
@@ -0,0 +1,35 @@
1
+ # TestServiceListTestCaseLibraryItemsRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **filter_by_categories** | **List[str]** | Optional. Filter by categories. | [optional]
9
+ **filter_by_purposes** | **List[str]** | Optional. Filter by purposes. | [optional]
10
+ **filter_by_evaluates** | **List[str]** | Optional. Filter by evaluates. | [optional]
11
+ **filter_by_origin** | **str** | Optional. Filter by origin. | [optional]
12
+ **filter_by_test_case_count** | **int** | Optional. Filter by test case count. | [optional]
13
+ **filter_by_test_count** | **int** | Optional. Filter by test count. | [optional]
14
+ **filter_by_fts** | **str** | Optional. Filter by FTS. | [optional]
15
+
16
+ ## Example
17
+
18
+ ```python
19
+ from eval_studio_client.api.models.test_service_list_test_case_library_items_request import TestServiceListTestCaseLibraryItemsRequest
20
+
21
+ # TODO update the JSON string below
22
+ json = "{}"
23
+ # create an instance of TestServiceListTestCaseLibraryItemsRequest from a JSON string
24
+ test_service_list_test_case_library_items_request_instance = TestServiceListTestCaseLibraryItemsRequest.from_json(json)
25
+ # print the JSON string representation of the object
26
+ print(TestServiceListTestCaseLibraryItemsRequest.to_json())
27
+
28
+ # convert the object into a dict
29
+ test_service_list_test_case_library_items_request_dict = test_service_list_test_case_library_items_request_instance.to_dict()
30
+ # create an instance of TestServiceListTestCaseLibraryItemsRequest from a dict
31
+ test_service_list_test_case_library_items_request_from_dict = TestServiceListTestCaseLibraryItemsRequest.from_dict(test_service_list_test_case_library_items_request_dict)
32
+ ```
33
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
34
+
35
+
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **perturbator_configurations** | [**List[V1PerturbatorConfiguration]**](V1PerturbatorConfiguration.md) | Required. PerturbatorConfigurations to apply to the Test. | [optional]
9
9
  **new_test_display_name** | **str** | Required. Name of the newly created test. | [optional]
10
10
  **new_test_description** | **str** | Optional. Description of the newly created Test. | [optional]
11
+ **test_case_names** | **List[str]** | Optional. Perturbation apply only to selected testCases. | [optional]
11
12
 
12
13
  ## Example
13
14
 
@@ -0,0 +1,29 @@
1
+ # V1BatchDeleteWorkflowsRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **names** | **List[str]** | Required. The names of the Workflows to delete. A maximum of 1000 can be specified. | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_batch_delete_workflows_request import V1BatchDeleteWorkflowsRequest
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1BatchDeleteWorkflowsRequest from a JSON string
18
+ v1_batch_delete_workflows_request_instance = V1BatchDeleteWorkflowsRequest.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1BatchDeleteWorkflowsRequest.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_batch_delete_workflows_request_dict = v1_batch_delete_workflows_request_instance.to_dict()
24
+ # create an instance of V1BatchDeleteWorkflowsRequest from a dict
25
+ v1_batch_delete_workflows_request_from_dict = V1BatchDeleteWorkflowsRequest.from_dict(v1_batch_delete_workflows_request_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1BatchDeleteWorkflowsResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **workflows** | [**List[V1Workflow]**](V1Workflow.md) | The deleted Workflows. | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_batch_delete_workflows_response import V1BatchDeleteWorkflowsResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1BatchDeleteWorkflowsResponse from a JSON string
18
+ v1_batch_delete_workflows_response_instance = V1BatchDeleteWorkflowsResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1BatchDeleteWorkflowsResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_batch_delete_workflows_response_dict = v1_batch_delete_workflows_response_instance.to_dict()
24
+ # create an instance of V1BatchDeleteWorkflowsResponse from a dict
25
+ v1_batch_delete_workflows_response_from_dict = V1BatchDeleteWorkflowsResponse.from_dict(v1_batch_delete_workflows_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1BatchGetWorkflowEdgesResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **edges** | [**List[V1WorkflowEdge]**](V1WorkflowEdge.md) | The WorkflowEdges requested. | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_batch_get_workflow_edges_response import V1BatchGetWorkflowEdgesResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1BatchGetWorkflowEdgesResponse from a JSON string
18
+ v1_batch_get_workflow_edges_response_instance = V1BatchGetWorkflowEdgesResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1BatchGetWorkflowEdgesResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_batch_get_workflow_edges_response_dict = v1_batch_get_workflow_edges_response_instance.to_dict()
24
+ # create an instance of V1BatchGetWorkflowEdgesResponse from a dict
25
+ v1_batch_get_workflow_edges_response_from_dict = V1BatchGetWorkflowEdgesResponse.from_dict(v1_batch_get_workflow_edges_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1BatchGetWorkflowNodesResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **nodes** | [**List[V1WorkflowNode]**](V1WorkflowNode.md) | The WorkflowNodes requested. | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_batch_get_workflow_nodes_response import V1BatchGetWorkflowNodesResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1BatchGetWorkflowNodesResponse from a JSON string
18
+ v1_batch_get_workflow_nodes_response_instance = V1BatchGetWorkflowNodesResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1BatchGetWorkflowNodesResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_batch_get_workflow_nodes_response_dict = v1_batch_get_workflow_nodes_response_instance.to_dict()
24
+ # create an instance of V1BatchGetWorkflowNodesResponse from a dict
25
+ v1_batch_get_workflow_nodes_response_from_dict = V1BatchGetWorkflowNodesResponse.from_dict(v1_batch_get_workflow_nodes_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **evaluators_parameters** | **Dict[str, str]** | Optional. Additional evaluators configuration, for all the evaluators used in the evaluation. Key is the evaluator identifier, and the value is a JSON string containing the configuration dictionary. | [optional]
15
15
  **model_parameters** | **str** | Optional. Parameters overrides in JSON format. | [optional]
16
16
  **h2ogpte_collection** | **str** | The existing collection name in H2OGPTe. | [optional]
17
+ **default_h2ogpte_model** | [**V1Model**](V1Model.md) | | [optional]
17
18
 
18
19
  ## Example
19
20
 
@@ -0,0 +1,29 @@
1
+ # V1CreateWorkflowResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **workflow** | [**V1Workflow**](V1Workflow.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_create_workflow_response import V1CreateWorkflowResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1CreateWorkflowResponse from a JSON string
18
+ v1_create_workflow_response_instance = V1CreateWorkflowResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1CreateWorkflowResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_create_workflow_response_dict = v1_create_workflow_response_instance.to_dict()
24
+ # create an instance of V1CreateWorkflowResponse from a dict
25
+ v1_create_workflow_response_from_dict = V1CreateWorkflowResponse.from_dict(v1_create_workflow_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1DeleteWorkflowNodeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **node** | [**V1WorkflowNode**](V1WorkflowNode.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_delete_workflow_node_response import V1DeleteWorkflowNodeResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1DeleteWorkflowNodeResponse from a JSON string
18
+ v1_delete_workflow_node_response_instance = V1DeleteWorkflowNodeResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1DeleteWorkflowNodeResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_delete_workflow_node_response_dict = v1_delete_workflow_node_response_instance.to_dict()
24
+ # create an instance of V1DeleteWorkflowNodeResponse from a dict
25
+ v1_delete_workflow_node_response_from_dict = V1DeleteWorkflowNodeResponse.from_dict(v1_delete_workflow_node_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1DeleteWorkflowResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **workflow** | [**V1Workflow**](V1Workflow.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_delete_workflow_response import V1DeleteWorkflowResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1DeleteWorkflowResponse from a JSON string
18
+ v1_delete_workflow_response_instance = V1DeleteWorkflowResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1DeleteWorkflowResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_delete_workflow_response_dict = v1_delete_workflow_response_instance.to_dict()
24
+ # create an instance of V1DeleteWorkflowResponse from a dict
25
+ v1_delete_workflow_response_from_dict = V1DeleteWorkflowResponse.from_dict(v1_delete_workflow_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,33 @@
1
+ # V1EstimateThresholdRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **operation** | **str** | Required. The Operation processing the estimation. | [optional]
9
+ **original_threshold** | **float** | Required. Original threshold. | [optional]
10
+ **evaluator** | **str** | Required. The evaluator resource name. | [optional]
11
+ **metric** | **str** | Optional. The metric name. If no metric is provided, the evaluator's primary metric is used. | [optional]
12
+ **train_set** | [**List[V1LabeledTestCase]**](V1LabeledTestCase.md) | Required. Test cases with metric value and labels used for estimating the threshold. | [optional]
13
+
14
+ ## Example
15
+
16
+ ```python
17
+ from eval_studio_client.api.models.v1_estimate_threshold_request import V1EstimateThresholdRequest
18
+
19
+ # TODO update the JSON string below
20
+ json = "{}"
21
+ # create an instance of V1EstimateThresholdRequest from a JSON string
22
+ v1_estimate_threshold_request_instance = V1EstimateThresholdRequest.from_json(json)
23
+ # print the JSON string representation of the object
24
+ print(V1EstimateThresholdRequest.to_json())
25
+
26
+ # convert the object into a dict
27
+ v1_estimate_threshold_request_dict = v1_estimate_threshold_request_instance.to_dict()
28
+ # create an instance of V1EstimateThresholdRequest from a dict
29
+ v1_estimate_threshold_request_from_dict = V1EstimateThresholdRequest.from_dict(v1_estimate_threshold_request_dict)
30
+ ```
31
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32
+
33
+
@@ -0,0 +1,30 @@
1
+ # V1GetWorkflowNodePrerequisitesResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **nodes** | **List[str]** | The WorkflowNodes that are the prerequisites of the specified WorkflowNode. | [optional]
9
+ **edges** | **List[str]** | The WorkflowEdges that are the prerequisites of the specified WorkflowNode. | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from eval_studio_client.api.models.v1_get_workflow_node_prerequisites_response import V1GetWorkflowNodePrerequisitesResponse
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of V1GetWorkflowNodePrerequisitesResponse from a JSON string
19
+ v1_get_workflow_node_prerequisites_response_instance = V1GetWorkflowNodePrerequisitesResponse.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(V1GetWorkflowNodePrerequisitesResponse.to_json())
22
+
23
+ # convert the object into a dict
24
+ v1_get_workflow_node_prerequisites_response_dict = v1_get_workflow_node_prerequisites_response_instance.to_dict()
25
+ # create an instance of V1GetWorkflowNodePrerequisitesResponse from a dict
26
+ v1_get_workflow_node_prerequisites_response_from_dict = V1GetWorkflowNodePrerequisitesResponse.from_dict(v1_get_workflow_node_prerequisites_response_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -0,0 +1,29 @@
1
+ # V1GetWorkflowNodeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **node** | [**V1WorkflowNode**](V1WorkflowNode.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_get_workflow_node_response import V1GetWorkflowNodeResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1GetWorkflowNodeResponse from a JSON string
18
+ v1_get_workflow_node_response_instance = V1GetWorkflowNodeResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1GetWorkflowNodeResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_get_workflow_node_response_dict = v1_get_workflow_node_response_instance.to_dict()
24
+ # create an instance of V1GetWorkflowNodeResponse from a dict
25
+ v1_get_workflow_node_response_from_dict = V1GetWorkflowNodeResponse.from_dict(v1_get_workflow_node_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1GetWorkflowResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **workflow** | [**V1Workflow**](V1Workflow.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_get_workflow_response import V1GetWorkflowResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1GetWorkflowResponse from a JSON string
18
+ v1_get_workflow_response_instance = V1GetWorkflowResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1GetWorkflowResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_get_workflow_response_dict = v1_get_workflow_response_instance.to_dict()
24
+ # create an instance of V1GetWorkflowResponse from a dict
25
+ v1_get_workflow_response_from_dict = V1GetWorkflowResponse.from_dict(v1_get_workflow_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **test_lab** | **str** | Required. The JSON representation of the pre-built test-lab. | [optional]
11
11
  **operation** | **str** | Required. Resource name of the long-running operation. | [optional]
12
12
  **evaluators_parameters** | **Dict[str, str]** | Optional. Additional evaluators configuration, for all the evaluators used in the evaluation. Key is the evaluator identifier, and the value is a JSON string containing the configuration dictionary. | [optional]
13
+ **default_h2ogpte_model** | [**V1Model**](V1Model.md) | | [optional]
13
14
 
14
15
  ## Example
15
16
 
@@ -0,0 +1,29 @@
1
+ # V1ImportTestCasesFromLibraryResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **operation** | [**V1Operation**](V1Operation.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_import_test_cases_from_library_response import V1ImportTestCasesFromLibraryResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1ImportTestCasesFromLibraryResponse from a JSON string
18
+ v1_import_test_cases_from_library_response_instance = V1ImportTestCasesFromLibraryResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1ImportTestCasesFromLibraryResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_import_test_cases_from_library_response_dict = v1_import_test_cases_from_library_response_instance.to_dict()
24
+ # create an instance of V1ImportTestCasesFromLibraryResponse from a dict
25
+ v1_import_test_cases_from_library_response_from_dict = V1ImportTestCasesFromLibraryResponse.from_dict(v1_import_test_cases_from_library_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,33 @@
1
+ # V1ImportTestCasesRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **test** | **str** | Required. The Test for which to get TestCases. | [optional]
9
+ **operation** | **str** | Required. The Operation processing this prompt library retrieval process. | [optional]
10
+ **test_suite_url** | **str** | Required. The URL of the library test suite to get TestCases from (sample). | [optional]
11
+ **count** | **int** | Required. The number of TestCases to get from the library. | [optional]
12
+ **test_document_urls** | **List[str]** | Optional. The list of target Test corpus document URLs which don't have to be included when returning library TestCases corpus as they are already in the Test. | [optional]
13
+
14
+ ## Example
15
+
16
+ ```python
17
+ from eval_studio_client.api.models.v1_import_test_cases_request import V1ImportTestCasesRequest
18
+
19
+ # TODO update the JSON string below
20
+ json = "{}"
21
+ # create an instance of V1ImportTestCasesRequest from a JSON string
22
+ v1_import_test_cases_request_instance = V1ImportTestCasesRequest.from_json(json)
23
+ # print the JSON string representation of the object
24
+ print(V1ImportTestCasesRequest.to_json())
25
+
26
+ # convert the object into a dict
27
+ v1_import_test_cases_request_dict = v1_import_test_cases_request_instance.to_dict()
28
+ # create an instance of V1ImportTestCasesRequest from a dict
29
+ v1_import_test_cases_request_from_dict = V1ImportTestCasesRequest.from_dict(v1_import_test_cases_request_dict)
30
+ ```
31
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32
+
33
+
@@ -0,0 +1,31 @@
1
+ # V1LabeledTestCase
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **str** | Required. The test case resource name. | [optional]
9
+ **metric_value** | **float** | Required. The metric value. | [optional]
10
+ **label** | **bool** | Required. Human label. True means the test case should be labeled as passed (positive), false means failed (negative). | [optional]
11
+
12
+ ## Example
13
+
14
+ ```python
15
+ from eval_studio_client.api.models.v1_labeled_test_case import V1LabeledTestCase
16
+
17
+ # TODO update the JSON string below
18
+ json = "{}"
19
+ # create an instance of V1LabeledTestCase from a JSON string
20
+ v1_labeled_test_case_instance = V1LabeledTestCase.from_json(json)
21
+ # print the JSON string representation of the object
22
+ print(V1LabeledTestCase.to_json())
23
+
24
+ # convert the object into a dict
25
+ v1_labeled_test_case_dict = v1_labeled_test_case_instance.to_dict()
26
+ # create an instance of V1LabeledTestCase from a dict
27
+ v1_labeled_test_case_from_dict = V1LabeledTestCase.from_dict(v1_labeled_test_case_dict)
28
+ ```
29
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30
+
31
+
@@ -0,0 +1,29 @@
1
+ # V1ListPromptLibraryItemsResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **prompt_library_items** | [**List[V1PromptLibraryItem]**](V1PromptLibraryItem.md) | Prompt library items (test suites). | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_list_prompt_library_items_response import V1ListPromptLibraryItemsResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1ListPromptLibraryItemsResponse from a JSON string
18
+ v1_list_prompt_library_items_response_instance = V1ListPromptLibraryItemsResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1ListPromptLibraryItemsResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_list_prompt_library_items_response_dict = v1_list_prompt_library_items_response_instance.to_dict()
24
+ # create an instance of V1ListPromptLibraryItemsResponse from a dict
25
+ v1_list_prompt_library_items_response_from_dict = V1ListPromptLibraryItemsResponse.from_dict(v1_list_prompt_library_items_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1ListTestCaseLibraryItemsResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **prompt_library_items** | [**List[V1PromptLibraryItem]**](V1PromptLibraryItem.md) | Test suites library items. | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_list_test_case_library_items_response import V1ListTestCaseLibraryItemsResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1ListTestCaseLibraryItemsResponse from a JSON string
18
+ v1_list_test_case_library_items_response_instance = V1ListTestCaseLibraryItemsResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1ListTestCaseLibraryItemsResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_list_test_case_library_items_response_dict = v1_list_test_case_library_items_response_instance.to_dict()
24
+ # create an instance of V1ListTestCaseLibraryItemsResponse from a dict
25
+ v1_list_test_case_library_items_response_from_dict = V1ListTestCaseLibraryItemsResponse.from_dict(v1_list_test_case_library_items_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1ListWorkflowsResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **workflows** | [**List[V1Workflow]**](V1Workflow.md) | The Workflows requested. | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_list_workflows_response import V1ListWorkflowsResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1ListWorkflowsResponse from a JSON string
18
+ v1_list_workflows_response_instance = V1ListWorkflowsResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1ListWorkflowsResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_list_workflows_response_dict = v1_list_workflows_response_instance.to_dict()
24
+ # create an instance of V1ListWorkflowsResponse from a dict
25
+ v1_list_workflows_response_from_dict = V1ListWorkflowsResponse.from_dict(v1_list_workflows_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # V1ProcessWorkflowNodeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **operation** | [**V1Operation**](V1Operation.md) | | [optional]
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from eval_studio_client.api.models.v1_process_workflow_node_response import V1ProcessWorkflowNodeResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of V1ProcessWorkflowNodeResponse from a JSON string
18
+ v1_process_workflow_node_response_instance = V1ProcessWorkflowNodeResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(V1ProcessWorkflowNodeResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ v1_process_workflow_node_response_dict = v1_process_workflow_node_response_instance.to_dict()
24
+ # create an instance of V1ProcessWorkflowNodeResponse from a dict
25
+ v1_process_workflow_node_response_from_dict = V1ProcessWorkflowNodeResponse.from_dict(v1_process_workflow_node_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,42 @@
1
+ # V1PromptLibraryItem
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **str** | | [optional] [readonly]
9
+ **create_time** | **datetime** | Output only. Timestamp when the item was created. | [optional] [readonly]
10
+ **creator** | **str** | Output only. Name of the user or service that requested creation of the item. | [optional] [readonly]
11
+ **update_time** | **datetime** | Output only. Optional. Timestamp when the item was last updated. | [optional] [readonly]
12
+ **updater** | **str** | Output only. Optional. Name of the user or service that requested update of the item. | [optional] [readonly]
13
+ **delete_time** | **datetime** | Output only. Optional. Set when the item is deleted. When set, item should be considered as deleted. | [optional] [readonly]
14
+ **deleter** | **str** | Output only. Optional. Name of the user or service that requested deletion of the item. | [optional] [readonly]
15
+ **display_name** | **str** | Human readable name of the item. | [optional]
16
+ **description** | **str** | Optional. Arbitrary description of the item. | [optional]
17
+ **test_suite_url** | **str** | URL of the test suite which is represented by this library item. | [optional]
18
+ **test_count** | **int** | Number of tests in the test suite. | [optional]
19
+ **test_case_count** | **int** | Number of test cases in the test suite. | [optional]
20
+ **evaluates** | [**List[V1TestSuiteEvaluates]**](V1TestSuiteEvaluates.md) | Types of systems evaluated by this item - like RAG (has corpus), LLM (no corpus) or agents. | [optional]
21
+ **categories** | **List[str]** | Categories of test cases in the item - like question_answering or summarization. | [optional]
22
+
23
+ ## Example
24
+
25
+ ```python
26
+ from eval_studio_client.api.models.v1_prompt_library_item import V1PromptLibraryItem
27
+
28
+ # TODO update the JSON string below
29
+ json = "{}"
30
+ # create an instance of V1PromptLibraryItem from a JSON string
31
+ v1_prompt_library_item_instance = V1PromptLibraryItem.from_json(json)
32
+ # print the JSON string representation of the object
33
+ print(V1PromptLibraryItem.to_json())
34
+
35
+ # convert the object into a dict
36
+ v1_prompt_library_item_dict = v1_prompt_library_item_instance.to_dict()
37
+ # create an instance of V1PromptLibraryItem from a dict
38
+ v1_prompt_library_item_from_dict = V1PromptLibraryItem.from_dict(v1_prompt_library_item_dict)
39
+ ```
40
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
41
+
42
+