vellum-ai 0.3.11__py3-none-any.whl → 0.3.13__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.
- vellum/__init__.py +90 -0
- vellum/client.py +3 -0
- vellum/core/client_wrapper.py +1 -1
- vellum/resources/__init__.py +2 -0
- vellum/resources/document_indexes/client.py +282 -0
- vellum/resources/test_suite_runs/__init__.py +2 -0
- vellum/resources/test_suite_runs/client.py +223 -0
- vellum/types/__init__.py +102 -0
- vellum/types/array_variable_value_item.py +11 -0
- vellum/types/fulfilled_workflow_node_result_event.py +2 -0
- vellum/types/generate_request.py +1 -1
- vellum/types/image_variable_value.py +33 -0
- vellum/types/initiated_workflow_node_result_event.py +1 -0
- vellum/types/paginated_test_suite_run_execution_list.py +32 -0
- vellum/types/rejected_workflow_node_result_event.py +1 -0
- vellum/types/streaming_workflow_node_result_event.py +1 -0
- vellum/types/test_suite_run_deployment_release_tag_exec_config.py +36 -0
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py +31 -0
- vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py +31 -0
- vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py +38 -0
- vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py +5 -0
- vellum/types/test_suite_run_exec_config.py +33 -0
- vellum/types/test_suite_run_exec_config_request.py +33 -0
- vellum/types/test_suite_run_execution.py +33 -0
- vellum/types/test_suite_run_execution_chat_history_output.py +30 -0
- vellum/types/test_suite_run_execution_error_output.py +30 -0
- vellum/types/test_suite_run_execution_json_output.py +29 -0
- vellum/types/test_suite_run_execution_metric_result.py +30 -0
- vellum/types/test_suite_run_execution_number_output.py +29 -0
- vellum/types/test_suite_run_execution_output.py +78 -0
- vellum/types/test_suite_run_execution_search_results_output.py +30 -0
- vellum/types/test_suite_run_execution_string_output.py +29 -0
- vellum/types/test_suite_run_metric_error_output.py +34 -0
- vellum/types/test_suite_run_metric_error_output_type_enum.py +5 -0
- vellum/types/test_suite_run_metric_number_output.py +33 -0
- vellum/types/test_suite_run_metric_number_output_type_enum.py +5 -0
- vellum/types/test_suite_run_metric_output.py +31 -0
- vellum/types/test_suite_run_read.py +47 -0
- vellum/types/test_suite_run_state.py +41 -0
- vellum/types/test_suite_run_test_suite.py +30 -0
- vellum/types/test_suite_run_workflow_release_tag_exec_config.py +36 -0
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py +33 -0
- vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py +33 -0
- vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py +38 -0
- vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py +5 -0
- vellum/types/workflow_execution_event_error_code.py +5 -0
- vellum/types/workflow_output_array.py +1 -1
- vellum/types/workflow_output_chat_history.py +1 -1
- vellum/types/workflow_output_error.py +1 -1
- vellum/types/workflow_output_function_call.py +1 -1
- vellum/types/workflow_output_image.py +1 -1
- vellum/types/workflow_output_json.py +1 -1
- vellum/types/workflow_output_number.py +1 -1
- vellum/types/workflow_output_search_results.py +1 -1
- vellum/types/workflow_output_string.py +1 -1
- {vellum_ai-0.3.11.dist-info → vellum_ai-0.3.13.dist-info}/METADATA +1 -1
- {vellum_ai-0.3.11.dist-info → vellum_ai-0.3.13.dist-info}/RECORD +59 -26
- {vellum_ai-0.3.11.dist-info → vellum_ai-0.3.13.dist-info}/LICENSE +0 -0
- {vellum_ai-0.3.11.dist-info → vellum_ai-0.3.13.dist-info}/WHEEL +0 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import datetime as dt
|
4
|
+
import typing
|
5
|
+
|
6
|
+
from ..core.datetime_utils import serialize_datetime
|
7
|
+
|
8
|
+
try:
|
9
|
+
import pydantic.v1 as pydantic # type: ignore
|
10
|
+
except ImportError:
|
11
|
+
import pydantic # type: ignore
|
12
|
+
|
13
|
+
|
14
|
+
class TestSuiteRunWorkflowReleaseTagExecConfigData(pydantic.BaseModel):
|
15
|
+
workflow_deployment_id: str = pydantic.Field(
|
16
|
+
description="The ID of the Workflow Deployment to run the Test Suite against."
|
17
|
+
)
|
18
|
+
tag: typing.Optional[str] = pydantic.Field(
|
19
|
+
description="A tag identifying which release of the Workflow Deployment to run the Test Suite against. Useful for testing past versions of the Workflow Deployment"
|
20
|
+
)
|
21
|
+
|
22
|
+
def json(self, **kwargs: typing.Any) -> str:
|
23
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
24
|
+
return super().json(**kwargs_with_defaults)
|
25
|
+
|
26
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
27
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
28
|
+
return super().dict(**kwargs_with_defaults)
|
29
|
+
|
30
|
+
class Config:
|
31
|
+
frozen = True
|
32
|
+
smart_union = True
|
33
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import datetime as dt
|
4
|
+
import typing
|
5
|
+
|
6
|
+
from ..core.datetime_utils import serialize_datetime
|
7
|
+
|
8
|
+
try:
|
9
|
+
import pydantic.v1 as pydantic # type: ignore
|
10
|
+
except ImportError:
|
11
|
+
import pydantic # type: ignore
|
12
|
+
|
13
|
+
|
14
|
+
class TestSuiteRunWorkflowReleaseTagExecConfigDataRequest(pydantic.BaseModel):
|
15
|
+
workflow_deployment_id: str = pydantic.Field(
|
16
|
+
description="The ID of the Workflow Deployment to run the Test Suite against."
|
17
|
+
)
|
18
|
+
tag: typing.Optional[str] = pydantic.Field(
|
19
|
+
description="A tag identifying which release of the Workflow Deployment to run the Test Suite against. Useful for testing past versions of the Workflow Deployment"
|
20
|
+
)
|
21
|
+
|
22
|
+
def json(self, **kwargs: typing.Any) -> str:
|
23
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
24
|
+
return super().json(**kwargs_with_defaults)
|
25
|
+
|
26
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
27
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
28
|
+
return super().dict(**kwargs_with_defaults)
|
29
|
+
|
30
|
+
class Config:
|
31
|
+
frozen = True
|
32
|
+
smart_union = True
|
33
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import datetime as dt
|
4
|
+
import typing
|
5
|
+
|
6
|
+
from ..core.datetime_utils import serialize_datetime
|
7
|
+
from .test_suite_run_workflow_release_tag_exec_config_data_request import (
|
8
|
+
TestSuiteRunWorkflowReleaseTagExecConfigDataRequest,
|
9
|
+
)
|
10
|
+
|
11
|
+
try:
|
12
|
+
import pydantic.v1 as pydantic # type: ignore
|
13
|
+
except ImportError:
|
14
|
+
import pydantic # type: ignore
|
15
|
+
|
16
|
+
|
17
|
+
class TestSuiteRunWorkflowReleaseTagExecConfigRequest(pydantic.BaseModel):
|
18
|
+
"""
|
19
|
+
Execution configuration for running a Test Suite against a Workflow Deployment
|
20
|
+
"""
|
21
|
+
|
22
|
+
data: TestSuiteRunWorkflowReleaseTagExecConfigDataRequest
|
23
|
+
test_case_ids: typing.Optional[typing.List[str]] = pydantic.Field(
|
24
|
+
description="Optionally specify a subset of test case ids to run. If not provided, all test cases within the test suite will be run by default."
|
25
|
+
)
|
26
|
+
|
27
|
+
def json(self, **kwargs: typing.Any) -> str:
|
28
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
29
|
+
return super().json(**kwargs_with_defaults)
|
30
|
+
|
31
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
32
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
33
|
+
return super().dict(**kwargs_with_defaults)
|
34
|
+
|
35
|
+
class Config:
|
36
|
+
frozen = True
|
37
|
+
smart_union = True
|
38
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -9,6 +9,7 @@ T_Result = typing.TypeVar("T_Result")
|
|
9
9
|
class WorkflowExecutionEventErrorCode(str, enum.Enum):
|
10
10
|
"""
|
11
11
|
- `WORKFLOW_INITIALIZATION` - WORKFLOW_INITIALIZATION
|
12
|
+
- `WORKFLOW_CANCELLED` - WORKFLOW_CANCELLED
|
12
13
|
- `NODE_EXECUTION_COUNT_LIMIT_REACHED` - NODE_EXECUTION_COUNT_LIMIT_REACHED
|
13
14
|
- `INTERNAL_SERVER_ERROR` - INTERNAL_SERVER_ERROR
|
14
15
|
- `NODE_EXECUTION` - NODE_EXECUTION
|
@@ -18,6 +19,7 @@ class WorkflowExecutionEventErrorCode(str, enum.Enum):
|
|
18
19
|
"""
|
19
20
|
|
20
21
|
WORKFLOW_INITIALIZATION = "WORKFLOW_INITIALIZATION"
|
22
|
+
WORKFLOW_CANCELLED = "WORKFLOW_CANCELLED"
|
21
23
|
NODE_EXECUTION_COUNT_LIMIT_REACHED = "NODE_EXECUTION_COUNT_LIMIT_REACHED"
|
22
24
|
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR"
|
23
25
|
NODE_EXECUTION = "NODE_EXECUTION"
|
@@ -28,6 +30,7 @@ class WorkflowExecutionEventErrorCode(str, enum.Enum):
|
|
28
30
|
def visit(
|
29
31
|
self,
|
30
32
|
workflow_initialization: typing.Callable[[], T_Result],
|
33
|
+
workflow_cancelled: typing.Callable[[], T_Result],
|
31
34
|
node_execution_count_limit_reached: typing.Callable[[], T_Result],
|
32
35
|
internal_server_error: typing.Callable[[], T_Result],
|
33
36
|
node_execution: typing.Callable[[], T_Result],
|
@@ -37,6 +40,8 @@ class WorkflowExecutionEventErrorCode(str, enum.Enum):
|
|
37
40
|
) -> T_Result:
|
38
41
|
if self is WorkflowExecutionEventErrorCode.WORKFLOW_INITIALIZATION:
|
39
42
|
return workflow_initialization()
|
43
|
+
if self is WorkflowExecutionEventErrorCode.WORKFLOW_CANCELLED:
|
44
|
+
return workflow_cancelled()
|
40
45
|
if self is WorkflowExecutionEventErrorCode.NODE_EXECUTION_COUNT_LIMIT_REACHED:
|
41
46
|
return node_execution_count_limit_reached()
|
42
47
|
if self is WorkflowExecutionEventErrorCode.INTERNAL_SERVER_ERROR:
|
@@ -19,7 +19,7 @@ class WorkflowOutputArray(pydantic.BaseModel):
|
|
19
19
|
|
20
20
|
id: str
|
21
21
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
-
value: typing.List[ArrayVariableValueItem]
|
22
|
+
value: typing.Optional[typing.List[ArrayVariableValueItem]]
|
23
23
|
|
24
24
|
def json(self, **kwargs: typing.Any) -> str:
|
25
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -19,7 +19,7 @@ class WorkflowOutputChatHistory(pydantic.BaseModel):
|
|
19
19
|
|
20
20
|
id: str
|
21
21
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
-
value: typing.List[ChatMessage]
|
22
|
+
value: typing.Optional[typing.List[ChatMessage]]
|
23
23
|
|
24
24
|
def json(self, **kwargs: typing.Any) -> str:
|
25
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -19,7 +19,7 @@ class WorkflowOutputError(pydantic.BaseModel):
|
|
19
19
|
|
20
20
|
id: str
|
21
21
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
-
value: VellumError
|
22
|
+
value: typing.Optional[VellumError]
|
23
23
|
|
24
24
|
def json(self, **kwargs: typing.Any) -> str:
|
25
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -19,7 +19,7 @@ class WorkflowOutputFunctionCall(pydantic.BaseModel):
|
|
19
19
|
|
20
20
|
id: str
|
21
21
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
-
value: FunctionCall
|
22
|
+
value: typing.Optional[FunctionCall]
|
23
23
|
|
24
24
|
def json(self, **kwargs: typing.Any) -> str:
|
25
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -19,7 +19,7 @@ class WorkflowOutputImage(pydantic.BaseModel):
|
|
19
19
|
|
20
20
|
id: str
|
21
21
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
-
value: VellumImage
|
22
|
+
value: typing.Optional[VellumImage]
|
23
23
|
|
24
24
|
def json(self, **kwargs: typing.Any) -> str:
|
25
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -18,7 +18,7 @@ class WorkflowOutputJson(pydantic.BaseModel):
|
|
18
18
|
|
19
19
|
id: str
|
20
20
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
21
|
-
value: typing.Dict[str, typing.Any]
|
21
|
+
value: typing.Optional[typing.Dict[str, typing.Any]]
|
22
22
|
|
23
23
|
def json(self, **kwargs: typing.Any) -> str:
|
24
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -18,7 +18,7 @@ class WorkflowOutputNumber(pydantic.BaseModel):
|
|
18
18
|
|
19
19
|
id: str
|
20
20
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
21
|
-
value: float
|
21
|
+
value: typing.Optional[float]
|
22
22
|
|
23
23
|
def json(self, **kwargs: typing.Any) -> str:
|
24
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -19,7 +19,7 @@ class WorkflowOutputSearchResults(pydantic.BaseModel):
|
|
19
19
|
|
20
20
|
id: str
|
21
21
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
-
value: typing.List[SearchResult]
|
22
|
+
value: typing.Optional[typing.List[SearchResult]]
|
23
23
|
|
24
24
|
def json(self, **kwargs: typing.Any) -> str:
|
25
25
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -18,7 +18,7 @@ class WorkflowOutputString(pydantic.BaseModel):
|
|
18
18
|
|
19
19
|
id: str
|
20
20
|
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
21
|
-
value: str
|
21
|
+
value: typing.Optional[str]
|
22
22
|
|
23
23
|
def json(self, **kwargs: typing.Any) -> str:
|
24
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
2
|
-
vellum/client.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=JfSMCddB8GiH1MSAFVV8_ZX1X0a1uB-4wW72-wmbByw,32755
|
2
|
+
vellum/client.py,sha256=9Mup32ly8X6AGX0WN7z-owbUgiDsnvRtbe4510Tuzz8,62226
|
3
3
|
vellum/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
4
4
|
vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
-
vellum/core/client_wrapper.py,sha256
|
5
|
+
vellum/core/client_wrapper.py,sha256=hgNU2BCbLHQ4nK4m1ZtUV4yqkRIE6xv4vXqa7HXo--Q,1213
|
6
6
|
vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
vellum/core/jsonable_encoder.py,sha256=MTYkDov2EryHgee4QM46uZiBOuOXK9KTHlBdBwU-CpU,3799
|
8
8
|
vellum/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
|
@@ -14,13 +14,13 @@ vellum/errors/forbidden_error.py,sha256=dgnatOGair3CvxljCE45_qwN_yefzcw2G0vw88wr
|
|
14
14
|
vellum/errors/internal_server_error.py,sha256=E0rgqJC0-LcetLi1HmSi92KpvNkGSRCIdBeEqT_ln1s,252
|
15
15
|
vellum/errors/not_found_error.py,sha256=P65k-Lm2RuefAVSNLER5hH-4P99SGohKy2cOPSrIxNk,246
|
16
16
|
vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
vellum/resources/__init__.py,sha256=
|
17
|
+
vellum/resources/__init__.py,sha256=oZf2_nhta_EWSHcf3p2j6kX6i3XZrXEzsTMUEimGWRA,822
|
18
18
|
vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
|
19
19
|
vellum/resources/deployments/client.py,sha256=qBfKoPVgxvAgL5jFnfhA1QgAOILYR8Yuu53_eFvLvTs,12705
|
20
20
|
vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
|
21
21
|
vellum/resources/deployments/types/deployments_list_request_status.py,sha256=phuWe_3mJi4tJh2XR9BFw5QimgzBBWKzKRG2huILy8o,518
|
22
22
|
vellum/resources/document_indexes/__init__.py,sha256=YpOl_9IV7xOlH4OmusQxtAJB11kxQfCSMDyT1_UD0oM,165
|
23
|
-
vellum/resources/document_indexes/client.py,sha256=
|
23
|
+
vellum/resources/document_indexes/client.py,sha256=Xk1Yp3mzCpVz7xnIO3Nv0qVkItt2ZsS4Lc9QpgBwuxk,26348
|
24
24
|
vellum/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
|
25
25
|
vellum/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=oW_LSbBd7Rsz9Agw5SGZQgWdqoJkMAPAS2olMLvWr04,530
|
26
26
|
vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -33,13 +33,15 @@ vellum/resources/registered_prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRY
|
|
33
33
|
vellum/resources/registered_prompts/client.py,sha256=E4KonbEiHf4_9wRhTEo91xPKBR459JKEA8y_Kd31H_w,12451
|
34
34
|
vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
35
35
|
vellum/resources/sandboxes/client.py,sha256=qf7rJ72xWkfmA1ae2NY2yaGJ9It-Q-ha1oX6P0o-8dU,9182
|
36
|
+
vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
37
|
+
vellum/resources/test_suite_runs/client.py,sha256=Y31oCfMdde2NwYIL3f-O2_jBq1_3TnQuHwgWmC0JYQU,9095
|
36
38
|
vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
37
39
|
vellum/resources/test_suites/client.py,sha256=3aySNI0qa-aD-NGZ_zOZOvHmV94i7h8BjBsxH096Ee8,8693
|
38
40
|
vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
|
39
41
|
vellum/resources/workflow_deployments/client.py,sha256=9MTY1hrzOjy1n7uMD6PDHZ1rFvdKGI2YEQHGJeLbLiw,6711
|
40
42
|
vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
|
41
43
|
vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=8-G1SalBR6-AfRnb6POOR9M3tvZa3CGwFIs1ArZb6uw,542
|
42
|
-
vellum/types/__init__.py,sha256=
|
44
|
+
vellum/types/__init__.py,sha256=z4BRJoCbDLB3G-n2XxWBdQ-CUWOrNyJkwYAGcdi_FDU,43761
|
43
45
|
vellum/types/api_node_result.py,sha256=ESEn5ydtAWsyEI1H3vYbhh1eiByPWNlNzsgQcUWPIfw,1003
|
44
46
|
vellum/types/api_node_result_data.py,sha256=HvpZaAKYXsoBOnobACIYCmIdxbRc7Zp-ibIohiz_Nzc,1125
|
45
47
|
vellum/types/array_chat_message_content.py,sha256=9aHCzT66f7zTX0oWEL-yvIL8L81joe2Qe5L_DaRDqnU,1050
|
@@ -47,7 +49,7 @@ vellum/types/array_chat_message_content_item.py,sha256=a383gaeYCucVDvnY1Xk1z8INb
|
|
47
49
|
vellum/types/array_chat_message_content_item_request.py,sha256=Plg6Ny8pwn-na1r1vPeJSdg1IovFcJqcyT_0UiYqfWs,1345
|
48
50
|
vellum/types/array_chat_message_content_request.py,sha256=nXvKOArX2Bx_T2S4-ZK_09bfsSkCQb69OahL1Q_h3bU,1079
|
49
51
|
vellum/types/array_enum.py,sha256=ZpwcTHF6WuYeP8QlVfkuJ_YSyPH0iYjeydvHV5kF0HU,138
|
50
|
-
vellum/types/array_variable_value_item.py,sha256=
|
52
|
+
vellum/types/array_variable_value_item.py,sha256=BJpv0duFE0t5J-vnI-4DnwbYFn-M5RSDWonTQi5PENo,2755
|
51
53
|
vellum/types/block_type_enum.py,sha256=w6z5D3RTe75YQBG6HpX8NCbO_kSZxIL0Xy1xss2RKS8,1051
|
52
54
|
vellum/types/chat_history_enum.py,sha256=aiUhxKMC4D83EjGnKNPSzSwoBT5J6G0O-TvBTKr4Oek,151
|
53
55
|
vellum/types/chat_history_input_request.py,sha256=VyGS0Mv_He-fI2d22ygpC2k5ddXKnzWDRFc7-Xkryog,1130
|
@@ -102,7 +104,7 @@ vellum/types/fulfilled_execute_prompt_response.py,sha256=YAvwKdFuo_uT8G2LqOOjtkw
|
|
102
104
|
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=TK8fgst0AlvtZXM1SstNvmiWlrz5yJuwI0c4S3FAE4g,1109
|
103
105
|
vellum/types/fulfilled_function_call.py,sha256=fZrTh53XN3dO5bvdtVWGtQ91VgLPKzeMY-b-Z53-uKo,1012
|
104
106
|
vellum/types/fulfilled_prompt_execution_meta.py,sha256=FDCQoqisV2SzUVD_Yw0lMv9tM7gW_6wHTbobUBz9Jwk,1145
|
105
|
-
vellum/types/fulfilled_workflow_node_result_event.py,sha256=
|
107
|
+
vellum/types/fulfilled_workflow_node_result_event.py,sha256=grzFXlragKZp80ZJqYtdJKeICp2ScfmlXhl2NIKP-1c,1382
|
106
108
|
vellum/types/function_call.py,sha256=-eKu1NTK3WevQDZVVwaMzYkctl8KErZq9bh1qOxc4MA,770
|
107
109
|
vellum/types/function_call_chat_message_content.py,sha256=23LvUR_xUKOylDGjal0JIhdY5BEkvj_aZ64iZxRKZxM,1085
|
108
110
|
vellum/types/function_call_chat_message_content_request.py,sha256=XS0Hu4KsSixRG0TN5u7OUhMJXlOtCpwUv86MR3yQUwc,1114
|
@@ -112,7 +114,7 @@ vellum/types/function_call_enum.py,sha256=lZBEEFornevJE_dyUkeoeR4MNR-4SEY1Mdu2F5
|
|
112
114
|
vellum/types/function_call_variable_value.py,sha256=tS-nHSwuue4EWOLXEuLI4xSjSNGVoHBK15Dd0C4hu30,932
|
113
115
|
vellum/types/generate_error_response.py,sha256=auz4NPbyceabCe0eN89lavEwotWbqsTSbkJtI_lgXJs,950
|
114
116
|
vellum/types/generate_options_request.py,sha256=iqmaim-vkUgVsPMmDJ7sMmSl1WOGB4Psgfg-GvNe0ik,1117
|
115
|
-
vellum/types/generate_request.py,sha256=
|
117
|
+
vellum/types/generate_request.py,sha256=qCVZ4jR-aqU9P_7h80alVN2rRXxAoxDvP5ZG36jd2Ow,1578
|
116
118
|
vellum/types/generate_response.py,sha256=DQNreImNi2knMgzvt4q-VPitdhS6cxj_xCoUYtAaOIs,1342
|
117
119
|
vellum/types/generate_result.py,sha256=1MVaFTb1rh2_bN2smGBbFTanYGBvldM2sqULWoLonE4,1397
|
118
120
|
vellum/types/generate_result_data.py,sha256=T66DWYhJs48Td0OAjMm87FRFGD92hhSEYZJERc9Xa7Q,1111
|
@@ -123,11 +125,12 @@ vellum/types/generate_stream_result_data.py,sha256=lyAvxY714Zo5W1i4WkuIbKjyP3rLG
|
|
123
125
|
vellum/types/image_chat_message_content.py,sha256=1b9g-yESgYCT9JVeNEvkpSdP483zac83yvsqYUhYAy4,995
|
124
126
|
vellum/types/image_chat_message_content_request.py,sha256=DEHXr7I9Ei5wrVP2PC1iRwLAwbrO7xDnNdJMmaTvVQE,1024
|
125
127
|
vellum/types/image_enum.py,sha256=wbwM5geMGBoG_Lyb7-YOcd7LNZWtTGaA2HTPAmSX-j4,138
|
128
|
+
vellum/types/image_variable_value.py,sha256=uCnQqsZUQMwMT9U2yoZtXCFtGbSXEyEdms4lmnOT8JI,1013
|
126
129
|
vellum/types/indexing_state_enum.py,sha256=uzSb7J75Ge0vxH_WQ2WHKQbZIjvfluyZ2IjqyJjVCrs,1181
|
127
130
|
vellum/types/initiated_enum.py,sha256=WitSWqhr_zFsxu2mxpl3lTVKYJApUT0YrVLSAK6ZJGY,146
|
128
131
|
vellum/types/initiated_execute_prompt_event.py,sha256=MJFmfVzldEDwnnM_RW0gOsEuN1pUzBcyWPzCqfBUAic,1147
|
129
132
|
vellum/types/initiated_prompt_execution_meta.py,sha256=ZVno9in1xXbxsOg7WuJmnIWdB6yVHfGI-8hUqMhWLeo,1173
|
130
|
-
vellum/types/initiated_workflow_node_result_event.py,sha256=
|
133
|
+
vellum/types/initiated_workflow_node_result_event.py,sha256=bNih_dkUEl2fDV5oQpHvO5Xplyinyde6SGDXYr9yyGI,1369
|
131
134
|
vellum/types/json_enum.py,sha256=H2EVEuwMW8VUcLhN3fRxbH15yre0hIvZ0eI3A78E7lY,136
|
132
135
|
vellum/types/json_input_request.py,sha256=9eUhL2wKld-1T7DPoisa61IIBqQXFrydxaX_kGRtElQ,1057
|
133
136
|
vellum/types/json_variable_value.py,sha256=khIv0GUMx3sTl2Y8LtRe3PAFWRYXejThDBYMolVbA6Y,917
|
@@ -174,6 +177,7 @@ vellum/types/paginated_document_index_read_list.py,sha256=3EfSx8BbAm2F1nzpTN78rN
|
|
174
177
|
vellum/types/paginated_slim_deployment_read_list.py,sha256=MeOByJstYNcBpqfnsmZ7NIOMilo5DerIALc01FNrU0Q,1087
|
175
178
|
vellum/types/paginated_slim_document_list.py,sha256=rfm_k539tWn6jVBjtgUG1M0AqtPvxtwPXwBJLPBiE6Q,1062
|
176
179
|
vellum/types/paginated_slim_workflow_deployment_list.py,sha256=HSnI0CeB7-gJuCkjCvFZVE2Om00OYCTOs4I5Rzaudm8,1103
|
180
|
+
vellum/types/paginated_test_suite_run_execution_list.py,sha256=w23SRxnRaMjXN0-XZ9vgm2n3lgBrQV2YKb4VfyU0T_U,1100
|
177
181
|
vellum/types/processing_failure_reason_enum.py,sha256=MDj2vNyO1Y-2WHuolkrGez8F1cZqS6ultfsqvGI4Fg8,752
|
178
182
|
vellum/types/processing_state_enum.py,sha256=rMhw5oLZNfhR4QkIgFfLMWRSLXgHt9qhiguEqWQNz5k,962
|
179
183
|
vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=6pPGEk_dKi1FzHEFESvl7yOpM4fH3imOJ_U_03TTytI,1819
|
@@ -206,7 +210,7 @@ vellum/types/rejected_execute_prompt_response.py,sha256=JOf1cYJ3TVR8aWLuL1R-sj7D
|
|
206
210
|
vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=b7nicyHuhAOc5R_KrWAkRZ30BHAEddgSTMTihjXobx8,1123
|
207
211
|
vellum/types/rejected_function_call.py,sha256=c14z0BPFs48ifoccraOShFaQDz6D6g2kpktJs1TE39E,1051
|
208
212
|
vellum/types/rejected_prompt_execution_meta.py,sha256=rJsnrz0E0W6Mkq9gBLN4c3sXrr1Mg14feUtj4bKZgvY,1144
|
209
|
-
vellum/types/rejected_workflow_node_result_event.py,sha256=
|
213
|
+
vellum/types/rejected_workflow_node_result_event.py,sha256=W0xjG4jueOKMxoNOc0UYTSpOA6mCVKt_3_-RjrKh6OI,1292
|
210
214
|
vellum/types/sandbox_scenario.py,sha256=VSw8QtLk3ryMBVM_L4Pdd4f4eqgGU7SG5bR7bSqTx5E,1098
|
211
215
|
vellum/types/scenario_input.py,sha256=a1OMFt1RxJMNYoJ9PclhJof_IBuJE6B4fb6kPdIuLTg,1108
|
212
216
|
vellum/types/scenario_input_request.py,sha256=kXki5ENoCHDSajT5pcL_NRi4urAtZvg5d2-B7zHDIsY,1137
|
@@ -231,7 +235,7 @@ vellum/types/slim_workflow_deployment.py,sha256=dkluwIhwpxDcC54QLIIQgBOSK-hCFsbY
|
|
231
235
|
vellum/types/streaming_enum.py,sha256=-cknmHCDQ3FJXHthl5jH-UpZxhIqjGjNxhQR9w1RdTY,146
|
232
236
|
vellum/types/streaming_execute_prompt_event.py,sha256=WaXFjOukP3MOgSWkZgmjKw9hNOvVjJtHi1xqM1pUgys,1393
|
233
237
|
vellum/types/streaming_prompt_execution_meta.py,sha256=2cCvMZZqVL2s2X7VrfiyDuLEwemBylDQVlyOfsVFF7A,1043
|
234
|
-
vellum/types/streaming_workflow_node_result_event.py,sha256=
|
238
|
+
vellum/types/streaming_workflow_node_result_event.py,sha256=djA6RLSaJoxPBIvEGxJqGMi2sVb2Pr1awhfizBJ_wCw,1368
|
235
239
|
vellum/types/string_chat_message_content.py,sha256=c9jLLefmb-ABurTEbOOslDPtKt6Pl5xgUSfvBUb__bI,950
|
236
240
|
vellum/types/string_chat_message_content_request.py,sha256=1dsWZfgFrcgp6VdndL_cIj-grkX0QORlETb9ZraEesA,957
|
237
241
|
vellum/types/string_enum.py,sha256=66RXPEf5TwDtolzhy2Nvoa1VV4dfg-ATn35Rakofg7I,140
|
@@ -269,6 +273,35 @@ vellum/types/test_case_number_variable_value.py,sha256=l0Lfkdfqb1R5-pQE18p9GZHlc
|
|
269
273
|
vellum/types/test_case_search_results_variable_value.py,sha256=TfPtS1XlfD6VW9vAALolBcu-fjwXxvS8OC5F7E1yJtQ,992
|
270
274
|
vellum/types/test_case_string_variable_value.py,sha256=aryF3l_cDmVdm62Feq_XnDqOP7JFBzeSyKZs35ulhls,923
|
271
275
|
vellum/types/test_case_variable_value.py,sha256=Bxd_4a5qFilAaF5ZV04ytX9-bDFlLsYBQN995S8O4ro,2246
|
276
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=hvaFUk5nIYsr_2yoWAMQG0vYxPjt2xZbF6qBVUVeeSo,1385
|
277
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=wTc7--pIYBjUOl-pio3FUTrPoPLcY_1mJxqc_kP1XbM,1229
|
278
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=UDkzcM5hUApjc851sHRBOey1WYYcOUSNB64onz47VC8,1236
|
279
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=dWcMQNoDX7OSPdvMgREuI5TgZkxFW6G5hOOB1LFClYM,1423
|
280
|
+
vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py,sha256=u-lS6DIPPJ7ksZeZgNWiljyFPVy8NA0R5n2Ck1H63Z0,196
|
281
|
+
vellum/types/test_suite_run_exec_config.py,sha256=mY7nrnLbxOe-K7pV3VNxFSX-HgR0XhKBFGyBhKrO0xo,1024
|
282
|
+
vellum/types/test_suite_run_exec_config_request.py,sha256=tfWqi310-fOKSFmQtzBZ9b00Avr_X4ILO05BGx73C4Q,1103
|
283
|
+
vellum/types/test_suite_run_execution.py,sha256=ZgorBKALxDold-AbgQy1lJf47NU3p_KXY2cCyOuB4jM,1178
|
284
|
+
vellum/types/test_suite_run_execution_chat_history_output.py,sha256=djY6y-4aCq0DhD9sQGcB_gAZUVfvnU2FNTW3Kdf3pV4,1000
|
285
|
+
vellum/types/test_suite_run_execution_error_output.py,sha256=_DBLwNKtao4DDOPJ9F6rEXH44Zh7ZUY2j0ueNwEYt_o,981
|
286
|
+
vellum/types/test_suite_run_execution_json_output.py,sha256=0qyIe5Jt2UMD2M-5uLRpO9dxcQkBQ8siFykkzWXGAQo,959
|
287
|
+
vellum/types/test_suite_run_execution_metric_result.py,sha256=ZwC4bN0p7Xr9Obr9e_fcKt0ZgiMbZqawBSxGTCECaCo,1013
|
288
|
+
vellum/types/test_suite_run_execution_number_output.py,sha256=bho9wlLsRWNZgGmXmzds3uWmX90tRDLUI8p3YcJhM5w,938
|
289
|
+
vellum/types/test_suite_run_execution_output.py,sha256=lT1Tp3iwEQSl6ILcnLJiFEq4HhTjPB9EhmU2i8oH29Q,2438
|
290
|
+
vellum/types/test_suite_run_execution_search_results_output.py,sha256=IEvB9HYaC0zvzMZeRcjQWQ8KgXrPL-q5euTzQdn7-Wo,1005
|
291
|
+
vellum/types/test_suite_run_execution_string_output.py,sha256=5fj60Hdk_JhDnWp8KXp2J2PzHfK413D54ylxTaAd8Mg,936
|
292
|
+
vellum/types/test_suite_run_metric_error_output.py,sha256=IBVbObTPYyjK3BsqmWshrNQUE-lRQPPSc3JuYyoYTAE,1025
|
293
|
+
vellum/types/test_suite_run_metric_error_output_type_enum.py,sha256=-DlDLos2k-5Q1OmS0vhTTRp6M_NsmBX0Pbg_0WgwDbc,166
|
294
|
+
vellum/types/test_suite_run_metric_number_output.py,sha256=hJlfm-1mu76DExtqckECzp9lDFQp2HeG-6072TZOKLc,983
|
295
|
+
vellum/types/test_suite_run_metric_number_output_type_enum.py,sha256=zB9VivHw413RoTVasLqnpaJCUSVWnWebPZFaO0SV6c4,168
|
296
|
+
vellum/types/test_suite_run_metric_output.py,sha256=VmGZCMouisM35_ax6mYs_V8HfP3B6LC_buixZGJLVEc,870
|
297
|
+
vellum/types/test_suite_run_read.py,sha256=gK_Tgcjk2axbgji7yHOOtp4sXp_m6mbpQ0aoq_HFuaU,1630
|
298
|
+
vellum/types/test_suite_run_state.py,sha256=myD2yLYpEiTUK4AyRZwl3MrXOKYkDA8k4fpqnDnALAY,1111
|
299
|
+
vellum/types/test_suite_run_test_suite.py,sha256=j-sEqBzgyjStplO5Ea9l7U8wLdOtfrz4ET3jsd0WU6k,916
|
300
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=-F2rAgV82atxQVYhbtu2JCnjDk5T9auqUA3FXyNuwmo,1379
|
301
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=HMXaPH3NlIls1BeuCl7nFFLEp0tMQqdb6ImnWSLkHds,1256
|
302
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=MmY0IcNruzqG3AtBbPJjJ2tJ9QIR4ovOvHpToVS5TBs,1263
|
303
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=MMgVm1qdvBWwKALjus_bbeTOA_Z2p4035ZhzBgRxmUc,1417
|
304
|
+
vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py,sha256=rH868m4qLYFzUf6U2FKedS4Zht2B_DNFyZNk9tsskTY,192
|
272
305
|
vellum/types/test_suite_test_case.py,sha256=X0ofIlD4wL7zgybJFptuUqpCGjIyS916fch5PAmaF3U,1092
|
273
306
|
vellum/types/upload_document_error_response.py,sha256=j2NahdS7jnklF9sGIaw7SbDEa3QhnzsDG3mG6prbGSQ,886
|
274
307
|
vellum/types/upload_document_response.py,sha256=6SY4OqEHIg_EUgOwU2rSdWeNDQULUt2LZv6zN-QCJ7Y,956
|
@@ -284,7 +317,7 @@ vellum/types/workflow_event_error.py,sha256=X1jEuhnsZoh75FN6XpTvtbO67UD_1SiACsBk
|
|
284
317
|
vellum/types/workflow_execution_actual_chat_history_request.py,sha256=skI-SuvBfJc8wxH2EDMqyKCGUgjfFFBUPkCLyncHgmM,2014
|
285
318
|
vellum/types/workflow_execution_actual_json_request.py,sha256=hVKpBukLehwDUopO7iiKv-wTvxDDg4SXMYmmexZDMo0,1951
|
286
319
|
vellum/types/workflow_execution_actual_string_request.py,sha256=uKnv8Ds88GF-Jjc1BoaFhhqmw89MnWeD4JyrpUjjttA,1928
|
287
|
-
vellum/types/workflow_execution_event_error_code.py,sha256=
|
320
|
+
vellum/types/workflow_execution_event_error_code.py,sha256=1_DYokaHexD0qZFdcAlSwdWFHvWPSfohpg2H3ruWkIQ,2449
|
288
321
|
vellum/types/workflow_execution_event_type.py,sha256=3wBRqajwUjytX6akx2zXkWxUB-iqB7xLIK4kAKNISPk,567
|
289
322
|
vellum/types/workflow_execution_node_result_event.py,sha256=Bt1G9Oh0vX5eQQiWR1EW0meerlZbfWexYwdlOxNXuFQ,1145
|
290
323
|
vellum/types/workflow_execution_workflow_result_event.py,sha256=OjXgi0Z7dmX3aY1CDF2PLzFQhtsfb80dgtMlecvKOXo,1140
|
@@ -292,15 +325,15 @@ vellum/types/workflow_node_result_data.py,sha256=XQ3gc1M5DM-NUWtoXtoR2mNJ_KuiHfW
|
|
292
325
|
vellum/types/workflow_node_result_event.py,sha256=4HaS7LzSi0ThPc2xe0k7pjhvvfMB40wajk3zdSEuKJw,1632
|
293
326
|
vellum/types/workflow_node_result_event_state.py,sha256=PwWxuO6cqCPQOoH1woYEahxr3za7yEr2YiS0zuICj4I,1035
|
294
327
|
vellum/types/workflow_output.py,sha256=gmepOAlz9kE4p6wXoJSSpQLb9iURRGQ0JPXxZCiWZtQ,2934
|
295
|
-
vellum/types/workflow_output_array.py,sha256=
|
296
|
-
vellum/types/workflow_output_chat_history.py,sha256
|
297
|
-
vellum/types/workflow_output_error.py,sha256=
|
298
|
-
vellum/types/workflow_output_function_call.py,sha256=
|
299
|
-
vellum/types/workflow_output_image.py,sha256=
|
300
|
-
vellum/types/workflow_output_json.py,sha256=
|
301
|
-
vellum/types/workflow_output_number.py,sha256=
|
302
|
-
vellum/types/workflow_output_search_results.py,sha256=
|
303
|
-
vellum/types/workflow_output_string.py,sha256=
|
328
|
+
vellum/types/workflow_output_array.py,sha256=IprVj2vDJIQ15lazoOltBuruTiNHouFv9YK4ajQ6FDk,1156
|
329
|
+
vellum/types/workflow_output_chat_history.py,sha256=dDu93M5GbV9zQzL48OIVu9wibvE9hI_x35LBfZwJlfI,1133
|
330
|
+
vellum/types/workflow_output_error.py,sha256=zfHGIEINLqHrrpu4WvGGELM1zI_DyBYnNeBbujwWfvY,1108
|
331
|
+
vellum/types/workflow_output_function_call.py,sha256=zE5FvS6QP8_QNsoJvRe7NiOI0lDfsf2VLa9xNA313Ds,1125
|
332
|
+
vellum/types/workflow_output_image.py,sha256=y9BijjNRGmM98qwX6RABWhxfSINj5NXn2RdAvW2bY-8,1108
|
333
|
+
vellum/types/workflow_output_json.py,sha256=aPIbS1LkMIjwfavVOrTehlMMkcCbgnFv53zA17HNYHo,1084
|
334
|
+
vellum/types/workflow_output_number.py,sha256=RHEB--g0bYB7Mz_jR6DiQWaLQ9ky9AruXcDxafMxukE,1065
|
335
|
+
vellum/types/workflow_output_search_results.py,sha256=b9AUNO__088js9HBdrd7Sn02lQ-4XGQzvQYgGHKfa6g,1140
|
336
|
+
vellum/types/workflow_output_string.py,sha256=xa0DvWIyIh_5JBg1wzc54NjGxx0Bx7eEv8zOTcYP84g,1063
|
304
337
|
vellum/types/workflow_request_chat_history_input_request.py,sha256=uN7LFgwBjoJSvUd2rID9fJriToK8JXFRk93D5wpQPnI,1146
|
305
338
|
vellum/types/workflow_request_input_request.py,sha256=ZYmEH0-gRMGcMSSKDD2aBtfDjwMU_m4hmt17NPZ7uQA,1666
|
306
339
|
vellum/types/workflow_request_json_input_request.py,sha256=cP-FDnuNjabM2gDm7XR8uWE_9ubIHwwN_a_FHDO1fZc,1075
|
@@ -317,7 +350,7 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=5IG_4XZhUZjwCfX1
|
|
317
350
|
vellum/types/workflow_result_event_output_data_search_results.py,sha256=FZeTLuHIBJp0AZUqBOzzMN4ntf_Q3hKP4m3vIzVq2cQ,1404
|
318
351
|
vellum/types/workflow_result_event_output_data_string.py,sha256=XJ7ZFTS2eqIMwa-zXFPDowu3o3JnRUfxC1MJIk8nPDI,1478
|
319
352
|
vellum/types/workflow_stream_event.py,sha256=OQUSzwoM-OCfWxNzeOVVLsjCue_WWqin3tGMtwvp_rc,873
|
320
|
-
vellum_ai-0.3.
|
321
|
-
vellum_ai-0.3.
|
322
|
-
vellum_ai-0.3.
|
323
|
-
vellum_ai-0.3.
|
353
|
+
vellum_ai-0.3.13.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
354
|
+
vellum_ai-0.3.13.dist-info/METADATA,sha256=fdTxaE7OlYS7n0dY3-1DHt-Db9t7iDB52YZ5U-Q1yIY,3487
|
355
|
+
vellum_ai-0.3.13.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
356
|
+
vellum_ai-0.3.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|