eval-studio-client 1.1.0a7__py3-none-any.whl → 1.2.0a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. eval_studio_client/api/__init__.py +1 -0
  2. eval_studio_client/api/docs/RequiredTheUpdatedWorkflowNode.md +2 -0
  3. eval_studio_client/api/docs/V1WorkflowNode.md +2 -0
  4. eval_studio_client/api/docs/V1WorkflowNodeResultStatus.md +12 -0
  5. eval_studio_client/api/models/__init__.py +1 -0
  6. eval_studio_client/api/models/required_the_updated_workflow_node.py +10 -3
  7. eval_studio_client/api/models/v1_workflow_node.py +10 -3
  8. eval_studio_client/api/models/v1_workflow_node_result_status.py +40 -0
  9. eval_studio_client/api/test/test_required_the_updated_workflow_node.py +3 -1
  10. eval_studio_client/api/test/test_v1_batch_get_workflow_nodes_response.py +3 -1
  11. eval_studio_client/api/test/test_v1_create_workflow_node_response.py +3 -1
  12. eval_studio_client/api/test/test_v1_delete_workflow_node_response.py +3 -1
  13. eval_studio_client/api/test/test_v1_get_workflow_node_response.py +3 -1
  14. eval_studio_client/api/test/test_v1_init_workflow_node_response.py +3 -1
  15. eval_studio_client/api/test/test_v1_list_workflow_dependencies_response.py +3 -1
  16. eval_studio_client/api/test/test_v1_reset_workflow_node_response.py +3 -1
  17. eval_studio_client/api/test/test_v1_update_workflow_node_response.py +3 -1
  18. eval_studio_client/api/test/test_v1_workflow_node.py +3 -1
  19. eval_studio_client/api/test/test_v1_workflow_node_result_status.py +33 -0
  20. eval_studio_client/gen/openapiv2/eval_studio.swagger.json +32 -0
  21. {eval_studio_client-1.1.0a7.dist-info → eval_studio_client-1.2.0a1.dist-info}/METADATA +1 -1
  22. {eval_studio_client-1.1.0a7.dist-info → eval_studio_client-1.2.0a1.dist-info}/RECORD +23 -20
  23. {eval_studio_client-1.1.0a7.dist-info → eval_studio_client-1.2.0a1.dist-info}/WHEEL +0 -0
@@ -260,6 +260,7 @@ from eval_studio_client.api.models.v1_workflow_node import V1WorkflowNode
260
260
  from eval_studio_client.api.models.v1_workflow_node_artifact import V1WorkflowNodeArtifact
261
261
  from eval_studio_client.api.models.v1_workflow_node_artifacts import V1WorkflowNodeArtifacts
262
262
  from eval_studio_client.api.models.v1_workflow_node_attributes import V1WorkflowNodeAttributes
263
+ from eval_studio_client.api.models.v1_workflow_node_result_status import V1WorkflowNodeResultStatus
263
264
  from eval_studio_client.api.models.v1_workflow_node_status import V1WorkflowNodeStatus
264
265
  from eval_studio_client.api.models.v1_workflow_node_type import V1WorkflowNodeType
265
266
  from eval_studio_client.api.models.v1_workflow_node_view import V1WorkflowNodeView
@@ -21,6 +21,8 @@ Name | Type | Description | Notes
21
21
  **status** | [**V1WorkflowNodeStatus**](V1WorkflowNodeStatus.md) | | [optional]
22
22
  **attributes** | [**V1WorkflowNodeAttributes**](V1WorkflowNodeAttributes.md) | | [optional]
23
23
  **processed_by_operation** | **str** | Output only. Optional. Resource name of the latest Operation that has processed or is currently processing this WorkflowNode. | [optional] [readonly]
24
+ **result_status** | [**V1WorkflowNodeResultStatus**](V1WorkflowNodeResultStatus.md) | | [optional]
25
+ **stale** | **bool** | Output only. The stale field marks whether the internal result is outdated and need to be checked for validity. | [optional] [readonly]
24
26
 
25
27
  ## Example
26
28
 
@@ -23,6 +23,8 @@ Name | Type | Description | Notes
23
23
  **status** | [**V1WorkflowNodeStatus**](V1WorkflowNodeStatus.md) | | [optional]
24
24
  **attributes** | [**V1WorkflowNodeAttributes**](V1WorkflowNodeAttributes.md) | | [optional]
25
25
  **processed_by_operation** | **str** | Output only. Optional. Resource name of the latest Operation that has processed or is currently processing this WorkflowNode. | [optional] [readonly]
26
+ **result_status** | [**V1WorkflowNodeResultStatus**](V1WorkflowNodeResultStatus.md) | | [optional]
27
+ **stale** | **bool** | Output only. The stale field marks whether the internal result is outdated and need to be checked for validity. | [optional] [readonly]
26
28
 
27
29
  ## Example
28
30
 
@@ -0,0 +1,12 @@
1
+ # V1WorkflowNodeResultStatus
2
+
3
+ WorkflowNodeResultStatus represents the result status of the finished computation of the node. - WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED: Unspecified status. - WORKFLOW_NODE_RESULT_STATUS_NONE: The process has a no result yet (no computation was done). - WORKFLOW_NODE_RESULT_STATUS_SUCCESS: The process succeeded with a valid computation. - WORKFLOW_NODE_RESULT_STATUS_WARNING: The process ends up with a result and warning. - WORKFLOW_NODE_RESULT_STATUS_ERROR: The process failed and no result was produced.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11
+
12
+
@@ -219,6 +219,7 @@ from eval_studio_client.api.models.v1_workflow_node import V1WorkflowNode
219
219
  from eval_studio_client.api.models.v1_workflow_node_artifact import V1WorkflowNodeArtifact
220
220
  from eval_studio_client.api.models.v1_workflow_node_artifacts import V1WorkflowNodeArtifacts
221
221
  from eval_studio_client.api.models.v1_workflow_node_attributes import V1WorkflowNodeAttributes
222
+ from eval_studio_client.api.models.v1_workflow_node_result_status import V1WorkflowNodeResultStatus
222
223
  from eval_studio_client.api.models.v1_workflow_node_status import V1WorkflowNodeStatus
223
224
  from eval_studio_client.api.models.v1_workflow_node_type import V1WorkflowNodeType
224
225
  from eval_studio_client.api.models.v1_workflow_node_view import V1WorkflowNodeView
@@ -18,10 +18,11 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from datetime import datetime
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
23
  from eval_studio_client.api.models.v1_workflow_node_artifact import V1WorkflowNodeArtifact
24
24
  from eval_studio_client.api.models.v1_workflow_node_attributes import V1WorkflowNodeAttributes
25
+ from eval_studio_client.api.models.v1_workflow_node_result_status import V1WorkflowNodeResultStatus
25
26
  from eval_studio_client.api.models.v1_workflow_node_status import V1WorkflowNodeStatus
26
27
  from eval_studio_client.api.models.v1_workflow_node_type import V1WorkflowNodeType
27
28
  from typing import Optional, Set
@@ -47,7 +48,9 @@ class RequiredTheUpdatedWorkflowNode(BaseModel):
47
48
  status: Optional[V1WorkflowNodeStatus] = None
48
49
  attributes: Optional[V1WorkflowNodeAttributes] = None
49
50
  processed_by_operation: Optional[StrictStr] = Field(default=None, description="Output only. Optional. Resource name of the latest Operation that has processed or is currently processing this WorkflowNode.", alias="processedByOperation")
50
- __properties: ClassVar[List[str]] = ["parent", "displayName", "description", "createTime", "creator", "updateTime", "updater", "deleteTime", "deleter", "type", "parameters", "outputs", "outputArtifacts", "status", "attributes", "processedByOperation"]
51
+ result_status: Optional[V1WorkflowNodeResultStatus] = Field(default=None, alias="resultStatus")
52
+ stale: Optional[StrictBool] = Field(default=None, description="Output only. The stale field marks whether the internal result is outdated and need to be checked for validity.")
53
+ __properties: ClassVar[List[str]] = ["parent", "displayName", "description", "createTime", "creator", "updateTime", "updater", "deleteTime", "deleter", "type", "parameters", "outputs", "outputArtifacts", "status", "attributes", "processedByOperation", "resultStatus", "stale"]
51
54
 
52
55
  model_config = ConfigDict(
53
56
  populate_by_name=True,
@@ -89,6 +92,7 @@ class RequiredTheUpdatedWorkflowNode(BaseModel):
89
92
  * OpenAPI `readOnly` fields are excluded.
90
93
  * OpenAPI `readOnly` fields are excluded.
91
94
  * OpenAPI `readOnly` fields are excluded.
95
+ * OpenAPI `readOnly` fields are excluded.
92
96
  """
93
97
  excluded_fields: Set[str] = set([
94
98
  "parent",
@@ -101,6 +105,7 @@ class RequiredTheUpdatedWorkflowNode(BaseModel):
101
105
  "outputs",
102
106
  "output_artifacts",
103
107
  "processed_by_operation",
108
+ "stale",
104
109
  ])
105
110
 
106
111
  _dict = self.model_dump(
@@ -145,7 +150,9 @@ class RequiredTheUpdatedWorkflowNode(BaseModel):
145
150
  "outputArtifacts": [V1WorkflowNodeArtifact.from_dict(_item) for _item in obj["outputArtifacts"]] if obj.get("outputArtifacts") is not None else None,
146
151
  "status": obj.get("status"),
147
152
  "attributes": V1WorkflowNodeAttributes.from_dict(obj["attributes"]) if obj.get("attributes") is not None else None,
148
- "processedByOperation": obj.get("processedByOperation")
153
+ "processedByOperation": obj.get("processedByOperation"),
154
+ "resultStatus": obj.get("resultStatus"),
155
+ "stale": obj.get("stale")
149
156
  })
150
157
  return _obj
151
158
 
@@ -18,10 +18,11 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from datetime import datetime
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
23
  from eval_studio_client.api.models.v1_workflow_node_artifact import V1WorkflowNodeArtifact
24
24
  from eval_studio_client.api.models.v1_workflow_node_attributes import V1WorkflowNodeAttributes
25
+ from eval_studio_client.api.models.v1_workflow_node_result_status import V1WorkflowNodeResultStatus
25
26
  from eval_studio_client.api.models.v1_workflow_node_status import V1WorkflowNodeStatus
26
27
  from eval_studio_client.api.models.v1_workflow_node_type import V1WorkflowNodeType
27
28
  from typing import Optional, Set
@@ -48,7 +49,9 @@ class V1WorkflowNode(BaseModel):
48
49
  status: Optional[V1WorkflowNodeStatus] = None
49
50
  attributes: Optional[V1WorkflowNodeAttributes] = None
50
51
  processed_by_operation: Optional[StrictStr] = Field(default=None, description="Output only. Optional. Resource name of the latest Operation that has processed or is currently processing this WorkflowNode.", alias="processedByOperation")
51
- __properties: ClassVar[List[str]] = ["name", "parent", "displayName", "description", "createTime", "creator", "updateTime", "updater", "deleteTime", "deleter", "type", "parameters", "outputs", "outputArtifacts", "status", "attributes", "processedByOperation"]
52
+ result_status: Optional[V1WorkflowNodeResultStatus] = Field(default=None, alias="resultStatus")
53
+ stale: Optional[StrictBool] = Field(default=None, description="Output only. The stale field marks whether the internal result is outdated and need to be checked for validity.")
54
+ __properties: ClassVar[List[str]] = ["name", "parent", "displayName", "description", "createTime", "creator", "updateTime", "updater", "deleteTime", "deleter", "type", "parameters", "outputs", "outputArtifacts", "status", "attributes", "processedByOperation", "resultStatus", "stale"]
52
55
 
53
56
  model_config = ConfigDict(
54
57
  populate_by_name=True,
@@ -91,6 +94,7 @@ class V1WorkflowNode(BaseModel):
91
94
  * OpenAPI `readOnly` fields are excluded.
92
95
  * OpenAPI `readOnly` fields are excluded.
93
96
  * OpenAPI `readOnly` fields are excluded.
97
+ * OpenAPI `readOnly` fields are excluded.
94
98
  """
95
99
  excluded_fields: Set[str] = set([
96
100
  "name",
@@ -104,6 +108,7 @@ class V1WorkflowNode(BaseModel):
104
108
  "outputs",
105
109
  "output_artifacts",
106
110
  "processed_by_operation",
111
+ "stale",
107
112
  ])
108
113
 
109
114
  _dict = self.model_dump(
@@ -149,7 +154,9 @@ class V1WorkflowNode(BaseModel):
149
154
  "outputArtifacts": [V1WorkflowNodeArtifact.from_dict(_item) for _item in obj["outputArtifacts"]] if obj.get("outputArtifacts") is not None else None,
150
155
  "status": obj.get("status"),
151
156
  "attributes": V1WorkflowNodeAttributes.from_dict(obj["attributes"]) if obj.get("attributes") is not None else None,
152
- "processedByOperation": obj.get("processedByOperation")
157
+ "processedByOperation": obj.get("processedByOperation"),
158
+ "resultStatus": obj.get("resultStatus"),
159
+ "stale": obj.get("stale")
153
160
  })
154
161
  return _obj
155
162
 
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ ai/h2o/eval_studio/v1/insight.proto
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: version not set
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import json
17
+ from enum import Enum
18
+ from typing_extensions import Self
19
+
20
+
21
+ class V1WorkflowNodeResultStatus(str, Enum):
22
+ """
23
+ WorkflowNodeResultStatus represents the result status of the finished computation of the node. - WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED: Unspecified status. - WORKFLOW_NODE_RESULT_STATUS_NONE: The process has a no result yet (no computation was done). - WORKFLOW_NODE_RESULT_STATUS_SUCCESS: The process succeeded with a valid computation. - WORKFLOW_NODE_RESULT_STATUS_WARNING: The process ends up with a result and warning. - WORKFLOW_NODE_RESULT_STATUS_ERROR: The process failed and no result was produced.
24
+ """
25
+
26
+ """
27
+ allowed enum values
28
+ """
29
+ WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED'
30
+ WORKFLOW_NODE_RESULT_STATUS_NONE = 'WORKFLOW_NODE_RESULT_STATUS_NONE'
31
+ WORKFLOW_NODE_RESULT_STATUS_SUCCESS = 'WORKFLOW_NODE_RESULT_STATUS_SUCCESS'
32
+ WORKFLOW_NODE_RESULT_STATUS_WARNING = 'WORKFLOW_NODE_RESULT_STATUS_WARNING'
33
+ WORKFLOW_NODE_RESULT_STATUS_ERROR = 'WORKFLOW_NODE_RESULT_STATUS_ERROR'
34
+
35
+ @classmethod
36
+ def from_json(cls, json_str: str) -> Self:
37
+ """Create an instance of V1WorkflowNodeResultStatus from a JSON string"""
38
+ return cls(json.loads(json_str))
39
+
40
+
@@ -65,7 +65,9 @@ class TestRequiredTheUpdatedWorkflowNode(unittest.TestCase):
65
65
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
66
66
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
67
67
  can_delete = True, ),
68
- processed_by_operation = ''
68
+ processed_by_operation = '',
69
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
70
+ stale = True
69
71
  )
70
72
  else:
71
73
  return RequiredTheUpdatedWorkflowNode(
@@ -67,7 +67,9 @@ class TestV1BatchGetWorkflowNodesResponse(unittest.TestCase):
67
67
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
68
68
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
69
69
  can_delete = True, ),
70
- processed_by_operation = '', )
70
+ processed_by_operation = '',
71
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
72
+ stale = True, )
71
73
  ]
72
74
  )
73
75
  else:
@@ -66,7 +66,9 @@ class TestV1CreateWorkflowNodeResponse(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = '', )
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True, )
70
72
  )
71
73
  else:
72
74
  return V1CreateWorkflowNodeResponse(
@@ -66,7 +66,9 @@ class TestV1DeleteWorkflowNodeResponse(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = '', )
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True, )
70
72
  )
71
73
  else:
72
74
  return V1DeleteWorkflowNodeResponse(
@@ -66,7 +66,9 @@ class TestV1GetWorkflowNodeResponse(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = '', )
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True, )
70
72
  )
71
73
  else:
72
74
  return V1GetWorkflowNodeResponse(
@@ -66,7 +66,9 @@ class TestV1InitWorkflowNodeResponse(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = '', )
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True, )
70
72
  )
71
73
  else:
72
74
  return V1InitWorkflowNodeResponse(
@@ -67,7 +67,9 @@ class TestV1ListWorkflowDependenciesResponse(unittest.TestCase):
67
67
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
68
68
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
69
69
  can_delete = True, ),
70
- processed_by_operation = '', )
70
+ processed_by_operation = '',
71
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
72
+ stale = True, )
71
73
  ],
72
74
  dependencies = [
73
75
  eval_studio_client.api.models.v1_dependency_list.v1DependencyList(
@@ -66,7 +66,9 @@ class TestV1ResetWorkflowNodeResponse(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = '', )
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True, )
70
72
  )
71
73
  else:
72
74
  return V1ResetWorkflowNodeResponse(
@@ -66,7 +66,9 @@ class TestV1UpdateWorkflowNodeResponse(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = '', )
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True, )
70
72
  )
71
73
  else:
72
74
  return V1UpdateWorkflowNodeResponse(
@@ -66,7 +66,9 @@ class TestV1WorkflowNode(unittest.TestCase):
66
66
  status = 'WORKFLOW_NODE_STATUS_UNSPECIFIED',
67
67
  attributes = eval_studio_client.api.models.v1_workflow_node_attributes.v1WorkflowNodeAttributes(
68
68
  can_delete = True, ),
69
- processed_by_operation = ''
69
+ processed_by_operation = '',
70
+ result_status = 'WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED',
71
+ stale = True
70
72
  )
71
73
  else:
72
74
  return V1WorkflowNode(
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ ai/h2o/eval_studio/v1/insight.proto
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: version not set
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ import unittest
16
+
17
+ from eval_studio_client.api.models.v1_workflow_node_result_status import V1WorkflowNodeResultStatus
18
+
19
+ class TestV1WorkflowNodeResultStatus(unittest.TestCase):
20
+ """V1WorkflowNodeResultStatus unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def testV1WorkflowNodeResultStatus(self):
29
+ """Test V1WorkflowNodeResultStatus"""
30
+ # inst = V1WorkflowNodeResultStatus()
31
+
32
+ if __name__ == '__main__':
33
+ unittest.main()
@@ -4452,6 +4452,16 @@
4452
4452
  "type": "string",
4453
4453
  "description": "Output only. Optional. Resource name of the latest Operation that has processed or is currently\nprocessing this WorkflowNode.",
4454
4454
  "readOnly": true
4455
+ },
4456
+ "resultStatus": {
4457
+ "$ref": "#/definitions/v1WorkflowNodeResultStatus",
4458
+ "description": "Output only. Result status carries the internal status of the finished computation.",
4459
+ "readOnly": true
4460
+ },
4461
+ "stale": {
4462
+ "type": "boolean",
4463
+ "description": "Output only. The stale field marks whether the internal result is outdated and\nneed to be checked for validity.",
4464
+ "readOnly": true
4455
4465
  }
4456
4466
  },
4457
4467
  "title": "Required. The updated WorkflowNode."
@@ -9514,6 +9524,16 @@
9514
9524
  "type": "string",
9515
9525
  "description": "Output only. Optional. Resource name of the latest Operation that has processed or is currently\nprocessing this WorkflowNode.",
9516
9526
  "readOnly": true
9527
+ },
9528
+ "resultStatus": {
9529
+ "$ref": "#/definitions/v1WorkflowNodeResultStatus",
9530
+ "description": "Output only. Result status carries the internal status of the finished computation.",
9531
+ "readOnly": true
9532
+ },
9533
+ "stale": {
9534
+ "type": "boolean",
9535
+ "description": "Output only. The stale field marks whether the internal result is outdated and\nneed to be checked for validity.",
9536
+ "readOnly": true
9517
9537
  }
9518
9538
  },
9519
9539
  "description": "WorkflowNode represents a node in an Eval Studio Workflow."
@@ -9607,6 +9627,18 @@
9607
9627
  },
9608
9628
  "description": "WorkflowNodeAttributes represents additional attributes of a WorkflowNode."
9609
9629
  },
9630
+ "v1WorkflowNodeResultStatus": {
9631
+ "type": "string",
9632
+ "enum": [
9633
+ "WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED",
9634
+ "WORKFLOW_NODE_RESULT_STATUS_NONE",
9635
+ "WORKFLOW_NODE_RESULT_STATUS_SUCCESS",
9636
+ "WORKFLOW_NODE_RESULT_STATUS_WARNING",
9637
+ "WORKFLOW_NODE_RESULT_STATUS_ERROR"
9638
+ ],
9639
+ "default": "WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED",
9640
+ "description": "WorkflowNodeResultStatus represents the result status of the finished\ncomputation of the node.\n\n - WORKFLOW_NODE_RESULT_STATUS_UNSPECIFIED: Unspecified status.\n - WORKFLOW_NODE_RESULT_STATUS_NONE: The process has a no result yet (no computation was done).\n - WORKFLOW_NODE_RESULT_STATUS_SUCCESS: The process succeeded with a valid computation.\n - WORKFLOW_NODE_RESULT_STATUS_WARNING: The process ends up with a result and warning.\n - WORKFLOW_NODE_RESULT_STATUS_ERROR: The process failed and no result was produced."
9641
+ },
9610
9642
  "v1WorkflowNodeStatus": {
9611
9643
  "type": "string",
9612
9644
  "enum": [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eval-studio-client
3
- Version: 1.1.0a7
3
+ Version: 1.2.0a1
4
4
  Project-URL: Source, https://github.com/h2oai/eval-studio/tree/main/client-py/src/
5
5
  Project-URL: Issues, https://github.com/h2oai/eval-studio/issues
6
6
  Author-email: "H2O.ai" <support@h2o.ai>
@@ -12,7 +12,7 @@ eval_studio_client/problems.py,sha256=rdGIfo7AqyxGhWMpbIDX1WXFoQvzKktKAWDKRde5Vb
12
12
  eval_studio_client/test_labs.py,sha256=tePU8z4Cw6wMBrW-pSP3FAaT76Y2RK3xiWaRVndcmv4,12331
13
13
  eval_studio_client/tests.py,sha256=mH4xexkwUbFywE0O48FkEmit07gsCghznaPZjL2puKM,32980
14
14
  eval_studio_client/utils.py,sha256=e5bsQVgNHYNSqSOthxlmncerPdgbvWwQaY_C-libuXk,764
15
- eval_studio_client/api/__init__.py,sha256=Hd-GCbKSIf4LdJ937gZZDJKpv6Y2Bo8a-Syt0oZqbkI,23344
15
+ eval_studio_client/api/__init__.py,sha256=xAjKVHKMli0gS6nkwAF2O3kiDE5h7fwfCP0Ql89Y7Cg,23444
16
16
  eval_studio_client/api/api_client.py,sha256=2Qwvxm4lRzMDRaA2FqunosFSEbIEO7Oz5YH5WAGTDnU,26428
17
17
  eval_studio_client/api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
18
18
  eval_studio_client/api/configuration.py,sha256=3A8i8o_A71YfdwAzpmNYI-aBT7pWj2Eg7uBCLhamPPs,14520
@@ -74,7 +74,7 @@ eval_studio_client/api/docs/RequiredTheOperationToUpdate.md,sha256=C3NgHs1s9QuGn
74
74
  eval_studio_client/api/docs/RequiredTheTestCaseToUpdate.md,sha256=zZRMLBvMJAnTY5RHgTkzJI8IEEDWlBNBPvLucj1-MH4,2644
75
75
  eval_studio_client/api/docs/RequiredTheTestToUpdate.md,sha256=rI4ZkTc-2clk3Iek1XWspAUc-K5KdhW9iHdz0mtOt4U,2317
76
76
  eval_studio_client/api/docs/RequiredTheUpdatedWorkflow.md,sha256=VDLN8nhxnqRbUI_Bv_xPsb-NIhQnZYdEm_5Lj_4Ynu0,3157
77
- eval_studio_client/api/docs/RequiredTheUpdatedWorkflowNode.md,sha256=2IKLwG9nMCCKLU-XOszO7iTCeT28SAR40C1rFAdl_-k,3013
77
+ eval_studio_client/api/docs/RequiredTheUpdatedWorkflowNode.md,sha256=ZVm27r9OLAAMb3pIlSE45km5Woj_zX0UIdGBrzeGcqI,3274
78
78
  eval_studio_client/api/docs/RpcStatus.md,sha256=yJVcDty4KVV1H8nvmc4dr_7blyCar_js0SXW5QA8Z8I,1776
79
79
  eval_studio_client/api/docs/TestCaseRelationshipServiceApi.md,sha256=vDlC-cOmYJRiwlWGSSsehHkYKFyP36IDbJSh4O0Y1Fs,2684
80
80
  eval_studio_client/api/docs/TestCaseServiceApi.md,sha256=ZnQmqnyf-nFrldDJq9xD-WlMPZxyOpr0ctpJsvx26V4,17251
@@ -266,10 +266,11 @@ eval_studio_client/api/docs/V1Workflow.md,sha256=26ZkA6pnrEtUgLGmrStkv4zi1CFA4XP
266
266
  eval_studio_client/api/docs/V1WorkflowDependency.md,sha256=_c_g8y5EcYpdbMOxmG4JEEkv3mSve-sqUu-FZZeFV3c,1118
267
267
  eval_studio_client/api/docs/V1WorkflowEdge.md,sha256=IfxLeF_Le1rAZlT0Qo28qpfGtvvcEdWkKqHJaDfaeZY,2376
268
268
  eval_studio_client/api/docs/V1WorkflowEdgeType.md,sha256=yCvB_tyJ989PC6ekdoI8kmLG4R6rqa1LFdR7r2aHb4A,765
269
- eval_studio_client/api/docs/V1WorkflowNode.md,sha256=R39Zh9oXLdXtn9feSKCRgmrV6BS0YNUw15lQ-vW4DUA,3018
269
+ eval_studio_client/api/docs/V1WorkflowNode.md,sha256=oEZBxgzvtUE_69K7K7RJTaJQFN3rRuja7zl7aORYaVA,3279
270
270
  eval_studio_client/api/docs/V1WorkflowNodeArtifact.md,sha256=Jm1r9HLuxamd2uUJhzflR5TIsf1UYfytg8N5NYOxCnI,2582
271
271
  eval_studio_client/api/docs/V1WorkflowNodeArtifacts.md,sha256=kPFZd7T39L_9CGD9qCTSaDItpjUd7c3OJ9b83BzG-t8,1172
272
272
  eval_studio_client/api/docs/V1WorkflowNodeAttributes.md,sha256=Rh0_sCboi7EAfF9LDegGbdaI5CKkeP4mhlgP4wgwdCs,1161
273
+ eval_studio_client/api/docs/V1WorkflowNodeResultStatus.md,sha256=fyUOt_WPGJJ-QYGbo7MLcTs3Hh3BoQi4JANmBhh3U_k,822
273
274
  eval_studio_client/api/docs/V1WorkflowNodeStatus.md,sha256=Q9RtcGjtfi1Qw0GjpScvGk61QXDJCJqcv4-qhLh8_ng,662
274
275
  eval_studio_client/api/docs/V1WorkflowNodeType.md,sha256=9tn9ElpFrVQYvi_VMOC8gsH4FW4hK2-06d6GQ6pudpk,354
275
276
  eval_studio_client/api/docs/V1WorkflowNodeView.md,sha256=qKRCP9Yacvpa6dHUEJUfgFAWxhB6aPbTTPjCHT3y8S0,593
@@ -279,7 +280,7 @@ eval_studio_client/api/docs/WorkflowEdgeServiceApi.md,sha256=BYOqI5AIaBOLMaSPEsv
279
280
  eval_studio_client/api/docs/WorkflowNodeServiceApi.md,sha256=xqbOn71eF3_nS6DNRc8n7rRBEmk294xT5_owjbd-88o,27530
280
281
  eval_studio_client/api/docs/WorkflowServiceApi.md,sha256=U_K48gGo0RdLjyAnH1yC3gk4PMI_58CG6MVTVPJgU60,22946
281
282
  eval_studio_client/api/docs/WorkflowServiceCloneWorkflowRequest.md,sha256=fN-qS7wkta3xTLcGfy4NTPlmyu3g1_NLZ0Q0ehJcDpI,2115
282
- eval_studio_client/api/models/__init__.py,sha256=xOnmZx29D6oPdFox8IHEnrTL4u43YooPqqMQfWtApyQ,20598
283
+ eval_studio_client/api/models/__init__.py,sha256=n4Jiz3x9kzjU4sI7NJhDjHjUrMsgcERYTAU8WtE53Hs,20698
283
284
  eval_studio_client/api/models/adversarial_inputs_service_test_adversarial_inputs_robustness_request.py,sha256=JhHXmeWmrfI1-PEGYi7Ky7lWCYuM-eDTKZPFDQv4n7Q,8832
284
285
  eval_studio_client/api/models/perturbation_service_create_perturbation_request.py,sha256=EpkmFf1kVq4dFThRoY8aNHkc7P-gNlGwpuc9KcTtTDs,5629
285
286
  eval_studio_client/api/models/prompt_generation_service_auto_generate_prompts_request.py,sha256=wcG3bsYiwM0-X2Pd30xae0c9br-pqjcz2_vzwR5Cybg,5357
@@ -294,7 +295,7 @@ eval_studio_client/api/models/required_the_operation_to_update.py,sha256=1OXm8Mr
294
295
  eval_studio_client/api/models/required_the_test_case_to_update.py,sha256=KGovR0hHJdLVNPFueRVD0T_-13mUirC8GTn0XNeBVzI,5971
295
296
  eval_studio_client/api/models/required_the_test_to_update.py,sha256=YL24bqUg6wqTpjeK9pC3GEsJbav4o8dAyR0Q22Il40g,5441
296
297
  eval_studio_client/api/models/required_the_updated_workflow.py,sha256=p-fpEOiAiQy-FEPX30uO0FwzwUyNg2SgYPlPa8oSs-w,8005
297
- eval_studio_client/api/models/required_the_updated_workflow_node.py,sha256=oGv_SjyDYzhQxH02t0nIO17hSN5oQsptMi9fGB4bRC4,7568
298
+ eval_studio_client/api/models/required_the_updated_workflow_node.py,sha256=m4rwrs5l1hQAHu6TaQwR6junBsUx4Ot7zxKf_MIqb4U,8149
298
299
  eval_studio_client/api/models/rpc_status.py,sha256=zLBL1HVynMtD8sUjylDnquuZS8kmkEpbY30ekx1vUNg,4104
299
300
  eval_studio_client/api/models/test_case_service_batch_delete_test_cases_request.py,sha256=hzpM3v3bwgP4DQ491vOf76ZAwD6jRY8JjwQwgT2gcFc,2732
300
301
  eval_studio_client/api/models/test_service_clone_test_request.py,sha256=-nHC0NSSI1dgwbtZBGeQFflWp0L1ZD11bqzfdEMkonA,3002
@@ -481,10 +482,11 @@ eval_studio_client/api/models/v1_workflow.py,sha256=PvU4NC71ZuNYPLgUFuq5505nyfxg
481
482
  eval_studio_client/api/models/v1_workflow_dependency.py,sha256=M_jjUwgtuvEbyyif7uEAMZDrw67HOdmeTOv04WZY1FI,2837
482
483
  eval_studio_client/api/models/v1_workflow_edge.py,sha256=kFmz7pd4HEx59TVEFfETV0NsBHQSWB8muzEmroBdn4A,5396
483
484
  eval_studio_client/api/models/v1_workflow_edge_type.py,sha256=XIh_zPgeLSzVMN5uZT13NweHGbryFSQ6uZjNIHCG8Pc,1433
484
- eval_studio_client/api/models/v1_workflow_node.py,sha256=fBceX0-XwXTfF1z14aMjcPD6B62RJTS3NF8SIwvpqwE,7840
485
+ eval_studio_client/api/models/v1_workflow_node.py,sha256=6NuJ08ytqaULkwhuMJVbZSMvqT6x_56do4XgsvuQdro,8421
485
486
  eval_studio_client/api/models/v1_workflow_node_artifact.py,sha256=LIdJ_CSvYRLS4kgp9KjtvClYrWvmL30A7W8Xmr3v_aA,5736
486
487
  eval_studio_client/api/models/v1_workflow_node_artifacts.py,sha256=NxSNjHMeqAsSxDsnvBba5NdKf_qAGiCscEPxA3an-u4,3291
487
488
  eval_studio_client/api/models/v1_workflow_node_attributes.py,sha256=TSAzOiOSMdm5xrShEw3SIadG558HVBFf72oyxDHpktg,2747
489
+ eval_studio_client/api/models/v1_workflow_node_result_status.py,sha256=PdWPUIsWms-RZYskislBKewF1ALwapRFJHc1TRm7XEs,1672
488
490
  eval_studio_client/api/models/v1_workflow_node_status.py,sha256=QPFUFYwDqnsI3CxPZYgN5Ej9cETn_72Emm7Qtf5fJn8,1448
489
491
  eval_studio_client/api/models/v1_workflow_node_type.py,sha256=JACsOTA2xtv2WEUy43PGgcuYPYpmed8_1eM5yrC9zeE,1498
490
492
  eval_studio_client/api/models/v1_workflow_node_view.py,sha256=-9jwl5vj81zHskOk2g1xheHAyNmsaZrlCiW-mpbLim0,1221
@@ -521,7 +523,7 @@ eval_studio_client/api/test/test_required_the_operation_to_update.py,sha256=iT71
521
523
  eval_studio_client/api/test/test_required_the_test_case_to_update.py,sha256=NGmOvMjREX4kl7M2flQVT6OVYtkxzKUFtRTeO4lR1Ys,2385
522
524
  eval_studio_client/api/test/test_required_the_test_to_update.py,sha256=ydt7a53w0rfGfRw6Irm7dT8ixeowDABl8dNJ2CWRXCw,2216
523
525
  eval_studio_client/api/test/test_required_the_updated_workflow.py,sha256=i0V_AnvlT3E-AZ2kSosGFaUjnTe7bhw5sU2aebTH174,3673
524
- eval_studio_client/api/test/test_required_the_updated_workflow_node.py,sha256=23274-U747jM5BWD1ykg6-DrndMISy1DZP_7zsgpgP0,3357
526
+ eval_studio_client/api/test/test_required_the_updated_workflow_node.py,sha256=f0z-I9P5iHpSlQiynLB-m1kcYXQZjnzCXegATKQR9Dw,3462
525
527
  eval_studio_client/api/test/test_rpc_status.py,sha256=XhKUGYOFz2biVxexMNQ8zrnI3FMd97Xj9CQKSPq4HU4,1531
526
528
  eval_studio_client/api/test/test_test_case_relationship_service_api.py,sha256=ZNRJimFKQx79OPLCoBuRV2NRMQvPO_aBwLoo7X6YlkI,975
527
529
  eval_studio_client/api/test/test_test_case_service_api.py,sha256=8ZIAERoQWImsU7blAKpua6Tv3DCwrFctIUKvd0KYiGI,1788
@@ -560,7 +562,7 @@ eval_studio_client/api/test/test_v1_batch_get_models_response.py,sha256=Y3XG1ij4
560
562
  eval_studio_client/api/test/test_v1_batch_get_operations_response.py,sha256=WHQI2c7EClfDZZFvilpQ7JN0V0LiWQ73935lnDU0oDM,2757
561
563
  eval_studio_client/api/test/test_v1_batch_get_tests_response.py,sha256=X6sauuVZNnoqD4Ke79HRMt-peN9fo2oPvlznwS9fAIA,2508
562
564
  eval_studio_client/api/test/test_v1_batch_get_workflow_edges_response.py,sha256=jjWgJPMWQVVVPTGerWRQLiEIfZLuXHv8G22ztKJUNuE,2417
563
- eval_studio_client/api/test/test_v1_batch_get_workflow_nodes_response.py,sha256=kUgx2r92-17X3fj-0jDkHdCTrLhpsY5dINGbK3MxiqQ,3851
565
+ eval_studio_client/api/test/test_v1_batch_get_workflow_nodes_response.py,sha256=qxNROKl29kjmj4MT2RNwRlqfuNZsYcaN12hjjxnZ9hk,3974
564
566
  eval_studio_client/api/test/test_v1_batch_import_leaderboard_request.py,sha256=rYyoTcF66x3_JHWxAgxMtP7c_2piyeFvM-X9QLhzva8,2007
565
567
  eval_studio_client/api/test/test_v1_batch_import_leaderboard_response.py,sha256=RyXTSkKOkrOdyOtTp1f1imfA-kS25DzyUx0Rie5XnvA,2680
566
568
  eval_studio_client/api/test/test_v1_batch_import_tests_request.py,sha256=Hd4w9jS71uVJmj1Ks7JCKl9H3gi4xQWktSuyCXRI4OU,1678
@@ -583,7 +585,7 @@ eval_studio_client/api/test/test_v1_create_test_case_response.py,sha256=B23YgCrh
583
585
  eval_studio_client/api/test/test_v1_create_test_lab_response.py,sha256=RLC7238n0ujKgMuiq1p7lQfmvkTuT-seF9ujxghwjCs,2409
584
586
  eval_studio_client/api/test/test_v1_create_test_response.py,sha256=JtFiYgrd6qCEm1Xw2i7LyXavfUSlm6TaZMWwaAifDrk,2358
585
587
  eval_studio_client/api/test/test_v1_create_workflow_edge_response.py,sha256=6JSJJb9JS11I90t-IKbgaHUhDiA03lMa7qbE5g__yq8,2291
586
- eval_studio_client/api/test/test_v1_create_workflow_node_response.py,sha256=kHkGIf9kWc6GBUwxEoJ9zPX0SmtxH-Vv0y_UD2LBqL8,3645
588
+ eval_studio_client/api/test/test_v1_create_workflow_node_response.py,sha256=fquLVkZUcNoTT9j1mNJcBlUhwOzLo56i8efDawdz0EU,3760
587
589
  eval_studio_client/api/test/test_v1_create_workflow_response.py,sha256=tfyzSLdkl4zWUdZZqt6Wcsig-tX9cCqOC9ZSLCGvSiQ,3903
588
590
  eval_studio_client/api/test/test_v1_dashboard.py,sha256=Ds555FFWR286vlJL-zrWD3kAEcfx_xD1Sl7k8HQ22fs,2129
589
591
  eval_studio_client/api/test/test_v1_dashboard_status.py,sha256=fH2VBSIphCqV4pcGgkc38TCEqEcfm8qy2T0Xcj4Dfdo,779
@@ -596,7 +598,7 @@ eval_studio_client/api/test/test_v1_delete_model_response.py,sha256=U_75qkRopSuK
596
598
  eval_studio_client/api/test/test_v1_delete_test_case_response.py,sha256=Tfsii5DyjH0jbkwghU_AvRtucerFer7MZz5NmyCs0Z4,2559
597
599
  eval_studio_client/api/test/test_v1_delete_test_response.py,sha256=S5-rqGOjSI58wj_mhap7V1rfgI0ca80ncGK70hYyCR0,2358
598
600
  eval_studio_client/api/test/test_v1_delete_workflow_edge_response.py,sha256=RaFHFdp8sYmsPxfAjMILxXztDNHtoUHXeZxdUBS45Pc,2291
599
- eval_studio_client/api/test/test_v1_delete_workflow_node_response.py,sha256=TQl8CLqFXBGgOvTqVG3sL3_qx5rX9zI35zBvccZzstA,3645
601
+ eval_studio_client/api/test/test_v1_delete_workflow_node_response.py,sha256=VGVJkcSWHqhsa4vUnkBWshLN2f3HOFlhJ8EUU9zYRWo,3760
600
602
  eval_studio_client/api/test/test_v1_delete_workflow_response.py,sha256=2bvgCZA8xFkyc_pR0eB1nAJedCY-EZlnXVPiFpR-Tb4,3903
601
603
  eval_studio_client/api/test/test_v1_dependency_list.py,sha256=jASw50kWhqzESZN58R620IArZfIxsoaYfkYWFhOufwI,1680
602
604
  eval_studio_client/api/test/test_v1_document.py,sha256=72WKznvugzFLsq3JA2VDLkjWf8WD_1qgULF6EW9FPtU,1886
@@ -625,7 +627,7 @@ eval_studio_client/api/test/test_v1_get_test_case_response.py,sha256=SCU1DXH4xOB
625
627
  eval_studio_client/api/test/test_v1_get_test_class_response.py,sha256=ReB7EwjJ4Yabd6jyms_0Zuf0eFuTgPQ9U8Jdp7FkkN4,2481
626
628
  eval_studio_client/api/test/test_v1_get_test_response.py,sha256=bDpz_uulhHcqIYM6M_4t1EHjPbFNCSNn3zJI6IZOmZg,2322
627
629
  eval_studio_client/api/test/test_v1_get_workflow_node_prerequisites_response.py,sha256=Dgsk06vTGuI0CjNJWeh6dWrztiIpYxA94Y3tEEltYc0,1834
628
- eval_studio_client/api/test/test_v1_get_workflow_node_response.py,sha256=0w1REe_P7e51OA5jLXa-aaggVVl_eiNATiR3fxmuNgQ,3609
630
+ eval_studio_client/api/test/test_v1_get_workflow_node_response.py,sha256=-097bQ6RZ2QLVvddH3lI60rA8HXEZQHtbAGNjshwnz8,3724
629
631
  eval_studio_client/api/test/test_v1_get_workflow_response.py,sha256=PhOz9C2acLz4e66e5odKMS_gzcQE2mkGhwXtMCDmOsg,3867
630
632
  eval_studio_client/api/test/test_v1_import_evaluation_request.py,sha256=EeqxQD0dXipiPSexjG58mGJ6s9MUf9EVWFp5w6LFCpw,3437
631
633
  eval_studio_client/api/test/test_v1_import_leaderboard_request.py,sha256=Kzc5srM_Kl9qY4KMSkl4r03Okk567tcGn_HWM95EsnE,1905
@@ -633,7 +635,7 @@ eval_studio_client/api/test/test_v1_import_leaderboard_response.py,sha256=JmvaWB
633
635
  eval_studio_client/api/test/test_v1_import_test_cases_from_library_response.py,sha256=AVl5w6g5ziytKd6k61nRXV04_5jh0Yp82dzkd3yvZFE,2730
634
636
  eval_studio_client/api/test/test_v1_import_test_cases_request.py,sha256=JTeRHhA_owtlXotzmmR9T6mqAdvpCQv5virgUcPCBkg,1730
635
637
  eval_studio_client/api/test/test_v1_info.py,sha256=8HkWy1lUgn-Wxn-doBV_Mgh0Th913vJkprDebNyRNs8,1790
636
- eval_studio_client/api/test/test_v1_init_workflow_node_response.py,sha256=DaTTdJ0QkvSBlpNOWqJTSn5b5C3LvMsqibg1Ih1S3dg,3621
638
+ eval_studio_client/api/test/test_v1_init_workflow_node_response.py,sha256=1qchZCXj1TO76TaL_f1cS1VbGzTV751_gpxi6cHgg70,3736
637
639
  eval_studio_client/api/test/test_v1_insight.py,sha256=YyrFRtujQL4XD9gDLWVgmHVFlTgLqF8XcjJJK-R5BeQ,1890
638
640
  eval_studio_client/api/test/test_v1_labeled_test_case.py,sha256=1AvRcpQotRD5U25O8WtazveqBkP8p8A6XWrpOe5u4Ow,1531
639
641
  eval_studio_client/api/test/test_v1_leaderboard.py,sha256=EnBxuuevnK-J4dIr8q9ldPT_A9EnGa1c0mBkSnGnWV8,4171
@@ -671,7 +673,7 @@ eval_studio_client/api/test/test_v1_list_test_case_relationships_response.py,sha
671
673
  eval_studio_client/api/test/test_v1_list_test_cases_response.py,sha256=UqPlLqJMOm-_jvqbZzyXjJnFJv3BdDxaLtcwKkfaOxs,2676
672
674
  eval_studio_client/api/test/test_v1_list_test_classes_response.py,sha256=RYqp6uy0wRenAomHJftmThlMGe9yQI7nwNRQZYp9JTk,2639
673
675
  eval_studio_client/api/test/test_v1_list_tests_response.py,sha256=PMJNWXv5pCptlVGgLFn87UScjJESUxpyRl6Un9RF5yA,2459
674
- eval_studio_client/api/test/test_v1_list_workflow_dependencies_response.py,sha256=ETCFoqUXUtl4CVikEjx3jdOFR3_jdwFORYPFZtG-j_U,4337
676
+ eval_studio_client/api/test/test_v1_list_workflow_dependencies_response.py,sha256=1tZicQ95i8ZqIXjoHpOGm8PxY22BjDdYUqxQp04_i3o,4460
675
677
  eval_studio_client/api/test/test_v1_list_workflows_response.py,sha256=xdm2ApJlaE1pCMZHnVC-wq_11rWzu5RlZv7le8QZLJs,4104
676
678
  eval_studio_client/api/test/test_v1_metric_score.py,sha256=zjWujzPRU6VOgb4oKLm_4DlV6iseK9ffRTkdEsE_ARo,1444
677
679
  eval_studio_client/api/test/test_v1_metric_scores.py,sha256=X2o5ryw-vwxcCtwr61kP_Ybi5zwfyR2TPS0MldFLPEg,1606
@@ -689,7 +691,7 @@ eval_studio_client/api/test/test_v1_process_workflow_node_response.py,sha256=KWE
689
691
  eval_studio_client/api/test/test_v1_prompt_library_item.py,sha256=NXqwBFUXXD1jbU6IXktbZhAbLYupumiZGI2yCJbk9JM,2263
690
692
  eval_studio_client/api/test/test_v1_repeated_context.py,sha256=eEbuxgfYeKssj7zyfgcf47bVXBaeNKQd_2E4m-3zdVc,1925
691
693
  eval_studio_client/api/test/test_v1_repeated_string.py,sha256=8ANeUFXkXr-lL49m-NQjON7xsQGgp_QSHMekLqiDGT4,1497
692
- eval_studio_client/api/test/test_v1_reset_workflow_node_response.py,sha256=0csoDW51jvHgIMM5amdZ0a9QQXnrenlO0GrSWNqAAi4,3633
694
+ eval_studio_client/api/test/test_v1_reset_workflow_node_response.py,sha256=tQNsH1tAHP6Hm89-sOxc6mM2D7DPQRLfZmcZiIAPB1g,3748
693
695
  eval_studio_client/api/test/test_v1_test.py,sha256=Y9QaNtcWNkmU9ioXRRzhOHoAHuZDX55JXJCm_65Wits,2036
694
696
  eval_studio_client/api/test/test_v1_test_case.py,sha256=70KfMgv3supWy1Edmk7PiGbTgqBXJxrn05VwH0PnXh0,2205
695
697
  eval_studio_client/api/test/test_v1_test_case_relationship.py,sha256=sqzcqZsv9fjM5DLgEgJvZmezZXnDd8nCsn3e8uyOMqQ,1581
@@ -706,17 +708,18 @@ eval_studio_client/api/test/test_v1_update_model_response.py,sha256=TRVkDJO3SH_u
706
708
  eval_studio_client/api/test/test_v1_update_operation_response.py,sha256=s3r3eXwpFhExjeAvroz1x-tKe5M_jgMy5O601eRZEv0,2595
707
709
  eval_studio_client/api/test/test_v1_update_test_case_response.py,sha256=nV0uKGfvdnQMJ0pCGAhOMpbUpNg0xWh6Jo-AkaI2IaI,2559
708
710
  eval_studio_client/api/test/test_v1_update_test_response.py,sha256=H4vGNZjy67mAi9xTw4w4BPepwr6PlN2VeL4jI92hkaM,2358
709
- eval_studio_client/api/test/test_v1_update_workflow_node_response.py,sha256=5WSV9-JbaY5PtkmAAcM_e0y9CuXGkBXDvvMecHEJ2BQ,3645
711
+ eval_studio_client/api/test/test_v1_update_workflow_node_response.py,sha256=SFR1E-Exhspjlx6HReuqtyRtQSyD-qfZMni9TT3r_2A,3760
710
712
  eval_studio_client/api/test/test_v1_update_workflow_response.py,sha256=kUDQMvfIViaYEq0u8i5vQDhkziCsiXO6xqUcQYZc2Kc,3903
711
713
  eval_studio_client/api/test/test_v1_who_am_i_response.py,sha256=smjG747XgRuUpMnRbXjZFORM9kBXBbhwHhA5rFD5-sM,1520
712
714
  eval_studio_client/api/test/test_v1_workflow.py,sha256=jhTcXqrWRIZqm9UTVwG_DwMGl3YbbScPzvTzt1aDxvM,3506
713
715
  eval_studio_client/api/test/test_v1_workflow_dependency.py,sha256=MmGCf6pXHQiq75zO9k20bXVZap7If4nWt3Zy4BGVnOw,1531
714
716
  eval_studio_client/api/test/test_v1_workflow_edge.py,sha256=YJG5uZJlUQd55td2SHj5yQScpL_pXNhL3ktpV613DFM,1982
715
717
  eval_studio_client/api/test/test_v1_workflow_edge_type.py,sha256=5j7sTuASpm3rwFqu2F01QCxzeHzTevkXNZn1NzlNocY,787
716
- eval_studio_client/api/test/test_v1_workflow_node.py,sha256=l74oJ1P-JJw6AKBZkAZJp5csUmWeNGVAXIIozzdaoZ4,3282
718
+ eval_studio_client/api/test/test_v1_workflow_node.py,sha256=p75BpznC743K_F8vi4X0XQDMGnVqRQ0GXNY68qXoXY0,3387
717
719
  eval_studio_client/api/test/test_v1_workflow_node_artifact.py,sha256=k4b5PtbOG_Z8xJdi9welB0DHP7ZDueYk_6bRtqtUDec,2094
718
720
  eval_studio_client/api/test/test_v1_workflow_node_artifacts.py,sha256=1mSOzkOXe6rjABH4OJxvYGxqcMGw3QjSFzvBk3LSC8E,2368
719
721
  eval_studio_client/api/test/test_v1_workflow_node_attributes.py,sha256=aLRu5LR_pnERprZAX219Wv42_icwKkjkjAIQIYJ1_Ws,1555
722
+ eval_studio_client/api/test/test_v1_workflow_node_result_status.py,sha256=soyj4bZtPLz6rArE390SH6icY-3xYvz526JLFkiWh60,844
720
723
  eval_studio_client/api/test/test_v1_workflow_node_status.py,sha256=Lx4bwV5O4A-Csg919lbrSeJHgOKgh6q2FXJuJ4Ph_k0,801
721
724
  eval_studio_client/api/test/test_v1_workflow_node_type.py,sha256=AdBUwpembP2F3e2N4d7cFqFsPitIJKArFvyTEWOTWzo,787
722
725
  eval_studio_client/api/test/test_v1_workflow_node_view.py,sha256=bq6xdOz7GNEPbTNJjVw9WbxnVTjbhYIhDVkHwXPiYIU,787
@@ -726,7 +729,7 @@ eval_studio_client/api/test/test_workflow_edge_service_api.py,sha256=M42JexfC9GM
726
729
  eval_studio_client/api/test/test_workflow_node_service_api.py,sha256=Yiwp7OKJhmDRGu0QWLu7ljZS6eUicNg2-ecIKZjSsXQ,3574
727
730
  eval_studio_client/api/test/test_workflow_service_api.py,sha256=IdXocT_m0fLJ-ah_ase2pZ0jxFqkrDG_oIX6D_tczXs,2763
728
731
  eval_studio_client/api/test/test_workflow_service_clone_workflow_request.py,sha256=loIe3yBEh454kxeTnT1Y7dwGbktRvm0XBZPWhkoXELQ,1866
729
- eval_studio_client/gen/openapiv2/eval_studio.swagger.json,sha256=3JNvXuMKpEhhpYA77VS2jeGO4IyS47JpknZ24rL3B1g,328714
730
- eval_studio_client-1.1.0a7.dist-info/METADATA,sha256=yhTrtcZ2IO0bfwCMJ2FD54QukEAIt4N7KLt5vvDxrL8,696
731
- eval_studio_client-1.1.0a7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
732
- eval_studio_client-1.1.0a7.dist-info/RECORD,,
732
+ eval_studio_client/gen/openapiv2/eval_studio.swagger.json,sha256=09IRb4y4aXelnSGFHEKXJmsMQB271GdpiSCk3d8WkI4,330655
733
+ eval_studio_client-1.2.0a1.dist-info/METADATA,sha256=jsJK3A1XhhuruTmt2bb0JQ3cmrS61jxCpnyCVYJuQoM,696
734
+ eval_studio_client-1.2.0a1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
735
+ eval_studio_client-1.2.0a1.dist-info/RECORD,,