vellum-ai 0.8.26__py3-none-any.whl → 0.8.28__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 +8 -2
- vellum/client.py +4 -0
- vellum/core/client_wrapper.py +1 -1
- vellum/resources/__init__.py +2 -0
- vellum/resources/workflows/__init__.py +2 -0
- vellum/resources/workflows/client.py +154 -0
- vellum/types/__init__.py +6 -2
- vellum/types/code_execution_node_array_result.py +4 -4
- vellum/types/code_execution_node_result.py +2 -2
- vellum/types/code_execution_node_result_data.py +2 -2
- vellum/types/fulfilled_workflow_node_result_event.py +0 -2
- vellum/types/initiated_workflow_node_result_event.py +2 -2
- vellum/types/node_input_compiled_array_value.py +4 -4
- vellum/types/{node_input_compiled_function_call.py → node_input_compiled_function_call_value.py} +1 -1
- vellum/types/node_input_variable_compiled_value.py +2 -2
- vellum/types/rejected_workflow_node_result_event.py +2 -2
- vellum/types/streaming_workflow_node_result_event.py +0 -2
- vellum/types/templating_node_array_result.py +4 -4
- vellum/types/templating_node_result.py +2 -2
- vellum/types/templating_node_result_data.py +2 -2
- vellum/types/terminal_node_array_result.py +4 -4
- vellum/types/terminal_node_result.py +2 -2
- vellum/types/terminal_node_result_data.py +2 -2
- vellum/types/terminal_node_result_output.py +2 -2
- vellum/types/workflow_execution_node_result_event.py +0 -2
- vellum/types/workflow_push_exec_config.py +5 -0
- vellum/types/workflow_push_response.py +19 -0
- {vellum_ai-0.8.26.dist-info → vellum_ai-0.8.28.dist-info}/METADATA +1 -1
- {vellum_ai-0.8.26.dist-info → vellum_ai-0.8.28.dist-info}/RECORD +31 -27
- {vellum_ai-0.8.26.dist-info → vellum_ai-0.8.28.dist-info}/LICENSE +0 -0
- {vellum_ai-0.8.26.dist-info → vellum_ai-0.8.28.dist-info}/WHEEL +0 -0
vellum/__init__.py
CHANGED
@@ -206,7 +206,7 @@ from .types import (
|
|
206
206
|
NodeInputCompiledArrayValue,
|
207
207
|
NodeInputCompiledChatHistoryValue,
|
208
208
|
NodeInputCompiledErrorValue,
|
209
|
-
|
209
|
+
NodeInputCompiledFunctionCallValue,
|
210
210
|
NodeInputCompiledJsonValue,
|
211
211
|
NodeInputCompiledNumberValue,
|
212
212
|
NodeInputCompiledSearchResultsValue,
|
@@ -448,6 +448,8 @@ from .types import (
|
|
448
448
|
WorkflowOutputNumber,
|
449
449
|
WorkflowOutputSearchResults,
|
450
450
|
WorkflowOutputString,
|
451
|
+
WorkflowPushExecConfig,
|
452
|
+
WorkflowPushResponse,
|
451
453
|
WorkflowReleaseTagRead,
|
452
454
|
WorkflowReleaseTagWorkflowDeploymentHistoryItem,
|
453
455
|
WorkflowRequestChatHistoryInputRequest,
|
@@ -485,6 +487,7 @@ from .resources import (
|
|
485
487
|
test_suites,
|
486
488
|
workflow_deployments,
|
487
489
|
workflow_sandboxes,
|
490
|
+
workflows,
|
488
491
|
workspace_secrets,
|
489
492
|
)
|
490
493
|
from .client import AsyncVellum, Vellum
|
@@ -704,7 +707,7 @@ __all__ = [
|
|
704
707
|
"NodeInputCompiledArrayValue",
|
705
708
|
"NodeInputCompiledChatHistoryValue",
|
706
709
|
"NodeInputCompiledErrorValue",
|
707
|
-
"
|
710
|
+
"NodeInputCompiledFunctionCallValue",
|
708
711
|
"NodeInputCompiledJsonValue",
|
709
712
|
"NodeInputCompiledNumberValue",
|
710
713
|
"NodeInputCompiledSearchResultsValue",
|
@@ -950,6 +953,8 @@ __all__ = [
|
|
950
953
|
"WorkflowOutputNumber",
|
951
954
|
"WorkflowOutputSearchResults",
|
952
955
|
"WorkflowOutputString",
|
956
|
+
"WorkflowPushExecConfig",
|
957
|
+
"WorkflowPushResponse",
|
953
958
|
"WorkflowReleaseTagRead",
|
954
959
|
"WorkflowReleaseTagWorkflowDeploymentHistoryItem",
|
955
960
|
"WorkflowRequestChatHistoryInputRequest",
|
@@ -981,5 +986,6 @@ __all__ = [
|
|
981
986
|
"test_suites",
|
982
987
|
"workflow_deployments",
|
983
988
|
"workflow_sandboxes",
|
989
|
+
"workflows",
|
984
990
|
"workspace_secrets",
|
985
991
|
]
|
vellum/client.py
CHANGED
@@ -15,6 +15,7 @@ from .resources.test_suite_runs.client import TestSuiteRunsClient
|
|
15
15
|
from .resources.test_suites.client import TestSuitesClient
|
16
16
|
from .resources.workflow_deployments.client import WorkflowDeploymentsClient
|
17
17
|
from .resources.workflow_sandboxes.client import WorkflowSandboxesClient
|
18
|
+
from .resources.workflows.client import WorkflowsClient
|
18
19
|
from .resources.workspace_secrets.client import WorkspaceSecretsClient
|
19
20
|
from .types.code_execution_runtime import CodeExecutionRuntime
|
20
21
|
from .types.code_executor_input_request import CodeExecutorInputRequest
|
@@ -61,6 +62,7 @@ from .resources.test_suite_runs.client import AsyncTestSuiteRunsClient
|
|
61
62
|
from .resources.test_suites.client import AsyncTestSuitesClient
|
62
63
|
from .resources.workflow_deployments.client import AsyncWorkflowDeploymentsClient
|
63
64
|
from .resources.workflow_sandboxes.client import AsyncWorkflowSandboxesClient
|
65
|
+
from .resources.workflows.client import AsyncWorkflowsClient
|
64
66
|
from .resources.workspace_secrets.client import AsyncWorkspaceSecretsClient
|
65
67
|
|
66
68
|
# this is used as the default value for optional parameters
|
@@ -132,6 +134,7 @@ class Vellum:
|
|
132
134
|
self.test_suites = TestSuitesClient(client_wrapper=self._client_wrapper)
|
133
135
|
self.workflow_deployments = WorkflowDeploymentsClient(client_wrapper=self._client_wrapper)
|
134
136
|
self.workflow_sandboxes = WorkflowSandboxesClient(client_wrapper=self._client_wrapper)
|
137
|
+
self.workflows = WorkflowsClient(client_wrapper=self._client_wrapper)
|
135
138
|
self.workspace_secrets = WorkspaceSecretsClient(client_wrapper=self._client_wrapper)
|
136
139
|
|
137
140
|
def execute_code(
|
@@ -1449,6 +1452,7 @@ class AsyncVellum:
|
|
1449
1452
|
self.test_suites = AsyncTestSuitesClient(client_wrapper=self._client_wrapper)
|
1450
1453
|
self.workflow_deployments = AsyncWorkflowDeploymentsClient(client_wrapper=self._client_wrapper)
|
1451
1454
|
self.workflow_sandboxes = AsyncWorkflowSandboxesClient(client_wrapper=self._client_wrapper)
|
1455
|
+
self.workflows = AsyncWorkflowsClient(client_wrapper=self._client_wrapper)
|
1452
1456
|
self.workspace_secrets = AsyncWorkspaceSecretsClient(client_wrapper=self._client_wrapper)
|
1453
1457
|
|
1454
1458
|
async def execute_code(
|
vellum/core/client_wrapper.py
CHANGED
@@ -17,7 +17,7 @@ class BaseClientWrapper:
|
|
17
17
|
headers: typing.Dict[str, str] = {
|
18
18
|
"X-Fern-Language": "Python",
|
19
19
|
"X-Fern-SDK-Name": "vellum-ai",
|
20
|
-
"X-Fern-SDK-Version": "
|
20
|
+
"X-Fern-SDK-Version": "v0.8.28",
|
21
21
|
}
|
22
22
|
headers["X_API_KEY"] = self.api_key
|
23
23
|
return headers
|
vellum/resources/__init__.py
CHANGED
@@ -12,6 +12,7 @@ from . import (
|
|
12
12
|
test_suites,
|
13
13
|
workflow_deployments,
|
14
14
|
workflow_sandboxes,
|
15
|
+
workflows,
|
15
16
|
workspace_secrets,
|
16
17
|
)
|
17
18
|
from .deployments import DeploymentsListRequestStatus
|
@@ -35,5 +36,6 @@ __all__ = [
|
|
35
36
|
"test_suites",
|
36
37
|
"workflow_deployments",
|
37
38
|
"workflow_sandboxes",
|
39
|
+
"workflows",
|
38
40
|
"workspace_secrets",
|
39
41
|
]
|
@@ -0,0 +1,154 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import typing
|
4
|
+
from ...core.client_wrapper import SyncClientWrapper
|
5
|
+
from ...types.workflow_push_exec_config import WorkflowPushExecConfig
|
6
|
+
from ...core.request_options import RequestOptions
|
7
|
+
from ...types.workflow_push_response import WorkflowPushResponse
|
8
|
+
from ...core.pydantic_utilities import parse_obj_as
|
9
|
+
from json.decoder import JSONDecodeError
|
10
|
+
from ...core.api_error import ApiError
|
11
|
+
from ...core.client_wrapper import AsyncClientWrapper
|
12
|
+
|
13
|
+
# this is used as the default value for optional parameters
|
14
|
+
OMIT = typing.cast(typing.Any, ...)
|
15
|
+
|
16
|
+
|
17
|
+
class WorkflowsClient:
|
18
|
+
def __init__(self, *, client_wrapper: SyncClientWrapper):
|
19
|
+
self._client_wrapper = client_wrapper
|
20
|
+
|
21
|
+
def push(
|
22
|
+
self,
|
23
|
+
*,
|
24
|
+
exec_config: WorkflowPushExecConfig,
|
25
|
+
label: str,
|
26
|
+
request_options: typing.Optional[RequestOptions] = None,
|
27
|
+
) -> WorkflowPushResponse:
|
28
|
+
"""
|
29
|
+
An internal-only endpoint that's subject to breaking changes without notice. Not intended for public use.
|
30
|
+
|
31
|
+
Parameters
|
32
|
+
----------
|
33
|
+
exec_config : WorkflowPushExecConfig
|
34
|
+
|
35
|
+
label : str
|
36
|
+
|
37
|
+
request_options : typing.Optional[RequestOptions]
|
38
|
+
Request-specific configuration.
|
39
|
+
|
40
|
+
Returns
|
41
|
+
-------
|
42
|
+
WorkflowPushResponse
|
43
|
+
|
44
|
+
|
45
|
+
Examples
|
46
|
+
--------
|
47
|
+
from vellum import Vellum
|
48
|
+
|
49
|
+
client = Vellum(
|
50
|
+
api_key="YOUR_API_KEY",
|
51
|
+
)
|
52
|
+
client.workflows.push(
|
53
|
+
exec_config={"key": "value"},
|
54
|
+
label="label",
|
55
|
+
)
|
56
|
+
"""
|
57
|
+
_response = self._client_wrapper.httpx_client.request(
|
58
|
+
"v1/workflows/push",
|
59
|
+
base_url=self._client_wrapper.get_environment().default,
|
60
|
+
method="POST",
|
61
|
+
json={
|
62
|
+
"exec_config": exec_config,
|
63
|
+
"label": label,
|
64
|
+
},
|
65
|
+
request_options=request_options,
|
66
|
+
omit=OMIT,
|
67
|
+
)
|
68
|
+
try:
|
69
|
+
if 200 <= _response.status_code < 300:
|
70
|
+
return typing.cast(
|
71
|
+
WorkflowPushResponse,
|
72
|
+
parse_obj_as(
|
73
|
+
type_=WorkflowPushResponse, # type: ignore
|
74
|
+
object_=_response.json(),
|
75
|
+
),
|
76
|
+
)
|
77
|
+
_response_json = _response.json()
|
78
|
+
except JSONDecodeError:
|
79
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
80
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
81
|
+
|
82
|
+
|
83
|
+
class AsyncWorkflowsClient:
|
84
|
+
def __init__(self, *, client_wrapper: AsyncClientWrapper):
|
85
|
+
self._client_wrapper = client_wrapper
|
86
|
+
|
87
|
+
async def push(
|
88
|
+
self,
|
89
|
+
*,
|
90
|
+
exec_config: WorkflowPushExecConfig,
|
91
|
+
label: str,
|
92
|
+
request_options: typing.Optional[RequestOptions] = None,
|
93
|
+
) -> WorkflowPushResponse:
|
94
|
+
"""
|
95
|
+
An internal-only endpoint that's subject to breaking changes without notice. Not intended for public use.
|
96
|
+
|
97
|
+
Parameters
|
98
|
+
----------
|
99
|
+
exec_config : WorkflowPushExecConfig
|
100
|
+
|
101
|
+
label : str
|
102
|
+
|
103
|
+
request_options : typing.Optional[RequestOptions]
|
104
|
+
Request-specific configuration.
|
105
|
+
|
106
|
+
Returns
|
107
|
+
-------
|
108
|
+
WorkflowPushResponse
|
109
|
+
|
110
|
+
|
111
|
+
Examples
|
112
|
+
--------
|
113
|
+
import asyncio
|
114
|
+
|
115
|
+
from vellum import AsyncVellum
|
116
|
+
|
117
|
+
client = AsyncVellum(
|
118
|
+
api_key="YOUR_API_KEY",
|
119
|
+
)
|
120
|
+
|
121
|
+
|
122
|
+
async def main() -> None:
|
123
|
+
await client.workflows.push(
|
124
|
+
exec_config={"key": "value"},
|
125
|
+
label="label",
|
126
|
+
)
|
127
|
+
|
128
|
+
|
129
|
+
asyncio.run(main())
|
130
|
+
"""
|
131
|
+
_response = await self._client_wrapper.httpx_client.request(
|
132
|
+
"v1/workflows/push",
|
133
|
+
base_url=self._client_wrapper.get_environment().default,
|
134
|
+
method="POST",
|
135
|
+
json={
|
136
|
+
"exec_config": exec_config,
|
137
|
+
"label": label,
|
138
|
+
},
|
139
|
+
request_options=request_options,
|
140
|
+
omit=OMIT,
|
141
|
+
)
|
142
|
+
try:
|
143
|
+
if 200 <= _response.status_code < 300:
|
144
|
+
return typing.cast(
|
145
|
+
WorkflowPushResponse,
|
146
|
+
parse_obj_as(
|
147
|
+
type_=WorkflowPushResponse, # type: ignore
|
148
|
+
object_=_response.json(),
|
149
|
+
),
|
150
|
+
)
|
151
|
+
_response_json = _response.json()
|
152
|
+
except JSONDecodeError:
|
153
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
154
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
vellum/types/__init__.py
CHANGED
@@ -217,7 +217,7 @@ from .named_test_case_variable_value_request import NamedTestCaseVariableValueRe
|
|
217
217
|
from .node_input_compiled_array_value import NodeInputCompiledArrayValue
|
218
218
|
from .node_input_compiled_chat_history_value import NodeInputCompiledChatHistoryValue
|
219
219
|
from .node_input_compiled_error_value import NodeInputCompiledErrorValue
|
220
|
-
from .
|
220
|
+
from .node_input_compiled_function_call_value import NodeInputCompiledFunctionCallValue
|
221
221
|
from .node_input_compiled_json_value import NodeInputCompiledJsonValue
|
222
222
|
from .node_input_compiled_number_value import NodeInputCompiledNumberValue
|
223
223
|
from .node_input_compiled_search_results_value import NodeInputCompiledSearchResultsValue
|
@@ -463,6 +463,8 @@ from .workflow_output_json import WorkflowOutputJson
|
|
463
463
|
from .workflow_output_number import WorkflowOutputNumber
|
464
464
|
from .workflow_output_search_results import WorkflowOutputSearchResults
|
465
465
|
from .workflow_output_string import WorkflowOutputString
|
466
|
+
from .workflow_push_exec_config import WorkflowPushExecConfig
|
467
|
+
from .workflow_push_response import WorkflowPushResponse
|
466
468
|
from .workflow_release_tag_read import WorkflowReleaseTagRead
|
467
469
|
from .workflow_release_tag_workflow_deployment_history_item import WorkflowReleaseTagWorkflowDeploymentHistoryItem
|
468
470
|
from .workflow_request_chat_history_input_request import WorkflowRequestChatHistoryInputRequest
|
@@ -689,7 +691,7 @@ __all__ = [
|
|
689
691
|
"NodeInputCompiledArrayValue",
|
690
692
|
"NodeInputCompiledChatHistoryValue",
|
691
693
|
"NodeInputCompiledErrorValue",
|
692
|
-
"
|
694
|
+
"NodeInputCompiledFunctionCallValue",
|
693
695
|
"NodeInputCompiledJsonValue",
|
694
696
|
"NodeInputCompiledNumberValue",
|
695
697
|
"NodeInputCompiledSearchResultsValue",
|
@@ -931,6 +933,8 @@ __all__ = [
|
|
931
933
|
"WorkflowOutputNumber",
|
932
934
|
"WorkflowOutputSearchResults",
|
933
935
|
"WorkflowOutputString",
|
936
|
+
"WorkflowPushExecConfig",
|
937
|
+
"WorkflowPushResponse",
|
934
938
|
"WorkflowReleaseTagRead",
|
935
939
|
"WorkflowReleaseTagWorkflowDeploymentHistoryItem",
|
936
940
|
"WorkflowRequestChatHistoryInputRequest",
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
|
-
from .
|
7
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
9
9
|
import pydantic
|
10
10
|
from ..core.pydantic_utilities import update_forward_refs
|
@@ -13,7 +13,7 @@ from ..core.pydantic_utilities import update_forward_refs
|
|
13
13
|
class CodeExecutionNodeArrayResult(UniversalBaseModel):
|
14
14
|
id: str
|
15
15
|
type: typing.Literal["ARRAY"] = "ARRAY"
|
16
|
-
value: typing.Optional[typing.List[
|
16
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
|
17
17
|
|
18
18
|
if IS_PYDANTIC_V2:
|
19
19
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
@@ -25,4 +25,4 @@ class CodeExecutionNodeArrayResult(UniversalBaseModel):
|
|
25
25
|
extra = pydantic.Extra.allow
|
26
26
|
|
27
27
|
|
28
|
-
update_forward_refs(
|
28
|
+
update_forward_refs(ArrayVellumValue, CodeExecutionNodeArrayResult=CodeExecutionNodeArrayResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
from .code_execution_node_result_data import CodeExecutionNodeResultData
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -28,4 +28,4 @@ class CodeExecutionNodeResult(UniversalBaseModel):
|
|
28
28
|
extra = pydantic.Extra.allow
|
29
29
|
|
30
30
|
|
31
|
-
update_forward_refs(
|
31
|
+
update_forward_refs(ArrayVellumValue, CodeExecutionNodeResult=CodeExecutionNodeResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
from .code_execution_node_result_output import CodeExecutionNodeResultOutput
|
7
7
|
import typing
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -24,4 +24,4 @@ class CodeExecutionNodeResultData(UniversalBaseModel):
|
|
24
24
|
extra = pydantic.Extra.allow
|
25
25
|
|
26
26
|
|
27
|
-
update_forward_refs(
|
27
|
+
update_forward_refs(ArrayVellumValue, CodeExecutionNodeResultData=CodeExecutionNodeResultData)
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .array_variable_value import ArrayVariableValue
|
6
5
|
from .array_vellum_value import ArrayVellumValue
|
7
6
|
import typing
|
8
7
|
import datetime as dt
|
@@ -38,5 +37,4 @@ class FulfilledWorkflowNodeResultEvent(UniversalBaseModel):
|
|
38
37
|
extra = pydantic.Extra.allow
|
39
38
|
|
40
39
|
|
41
|
-
update_forward_refs(ArrayVariableValue, FulfilledWorkflowNodeResultEvent=FulfilledWorkflowNodeResultEvent)
|
42
40
|
update_forward_refs(ArrayVellumValue, FulfilledWorkflowNodeResultEvent=FulfilledWorkflowNodeResultEvent)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
import datetime as dt
|
8
8
|
from .workflow_node_result_data import WorkflowNodeResultData
|
@@ -36,4 +36,4 @@ class InitiatedWorkflowNodeResultEvent(UniversalBaseModel):
|
|
36
36
|
extra = pydantic.Extra.allow
|
37
37
|
|
38
38
|
|
39
|
-
update_forward_refs(
|
39
|
+
update_forward_refs(ArrayVellumValue, InitiatedWorkflowNodeResultEvent=InitiatedWorkflowNodeResultEvent)
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
|
-
from .
|
7
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
9
9
|
import pydantic
|
10
10
|
from ..core.pydantic_utilities import update_forward_refs
|
@@ -14,7 +14,7 @@ class NodeInputCompiledArrayValue(UniversalBaseModel):
|
|
14
14
|
node_input_id: str
|
15
15
|
key: str
|
16
16
|
type: typing.Literal["ARRAY"] = "ARRAY"
|
17
|
-
value: typing.Optional[typing.List[
|
17
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
|
18
18
|
|
19
19
|
if IS_PYDANTIC_V2:
|
20
20
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
@@ -26,4 +26,4 @@ class NodeInputCompiledArrayValue(UniversalBaseModel):
|
|
26
26
|
extra = pydantic.Extra.allow
|
27
27
|
|
28
28
|
|
29
|
-
update_forward_refs(
|
29
|
+
update_forward_refs(ArrayVellumValue, NodeInputCompiledArrayValue=NodeInputCompiledArrayValue)
|
vellum/types/{node_input_compiled_function_call.py → node_input_compiled_function_call_value.py}
RENAMED
@@ -7,7 +7,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
import pydantic
|
8
8
|
|
9
9
|
|
10
|
-
class
|
10
|
+
class NodeInputCompiledFunctionCallValue(UniversalBaseModel):
|
11
11
|
node_input_id: str
|
12
12
|
key: str
|
13
13
|
type: typing.Literal["FUNCTION_CALL"] = "FUNCTION_CALL"
|
@@ -8,7 +8,7 @@ from .node_input_compiled_chat_history_value import NodeInputCompiledChatHistory
|
|
8
8
|
from .node_input_compiled_search_results_value import NodeInputCompiledSearchResultsValue
|
9
9
|
from .node_input_compiled_error_value import NodeInputCompiledErrorValue
|
10
10
|
from .node_input_compiled_array_value import NodeInputCompiledArrayValue
|
11
|
-
from .
|
11
|
+
from .node_input_compiled_function_call_value import NodeInputCompiledFunctionCallValue
|
12
12
|
|
13
13
|
NodeInputVariableCompiledValue = typing.Union[
|
14
14
|
NodeInputCompiledStringValue,
|
@@ -18,5 +18,5 @@ NodeInputVariableCompiledValue = typing.Union[
|
|
18
18
|
NodeInputCompiledSearchResultsValue,
|
19
19
|
NodeInputCompiledErrorValue,
|
20
20
|
NodeInputCompiledArrayValue,
|
21
|
-
|
21
|
+
NodeInputCompiledFunctionCallValue,
|
22
22
|
]
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
import datetime as dt
|
8
8
|
from .workflow_node_result_data import WorkflowNodeResultData
|
@@ -36,4 +36,4 @@ class RejectedWorkflowNodeResultEvent(UniversalBaseModel):
|
|
36
36
|
extra = pydantic.Extra.allow
|
37
37
|
|
38
38
|
|
39
|
-
update_forward_refs(
|
39
|
+
update_forward_refs(ArrayVellumValue, RejectedWorkflowNodeResultEvent=RejectedWorkflowNodeResultEvent)
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .array_variable_value import ArrayVariableValue
|
6
5
|
from .array_vellum_value import ArrayVellumValue
|
7
6
|
import typing
|
8
7
|
import datetime as dt
|
@@ -38,5 +37,4 @@ class StreamingWorkflowNodeResultEvent(UniversalBaseModel):
|
|
38
37
|
extra = pydantic.Extra.allow
|
39
38
|
|
40
39
|
|
41
|
-
update_forward_refs(ArrayVariableValue, StreamingWorkflowNodeResultEvent=StreamingWorkflowNodeResultEvent)
|
42
40
|
update_forward_refs(ArrayVellumValue, StreamingWorkflowNodeResultEvent=StreamingWorkflowNodeResultEvent)
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
|
-
from .
|
7
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
9
9
|
import pydantic
|
10
10
|
from ..core.pydantic_utilities import update_forward_refs
|
@@ -13,7 +13,7 @@ from ..core.pydantic_utilities import update_forward_refs
|
|
13
13
|
class TemplatingNodeArrayResult(UniversalBaseModel):
|
14
14
|
id: str
|
15
15
|
type: typing.Literal["ARRAY"] = "ARRAY"
|
16
|
-
value: typing.Optional[typing.List[
|
16
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
|
17
17
|
|
18
18
|
if IS_PYDANTIC_V2:
|
19
19
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
@@ -25,4 +25,4 @@ class TemplatingNodeArrayResult(UniversalBaseModel):
|
|
25
25
|
extra = pydantic.Extra.allow
|
26
26
|
|
27
27
|
|
28
|
-
update_forward_refs(
|
28
|
+
update_forward_refs(ArrayVellumValue, TemplatingNodeArrayResult=TemplatingNodeArrayResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
from .templating_node_result_data import TemplatingNodeResultData
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -28,4 +28,4 @@ class TemplatingNodeResult(UniversalBaseModel):
|
|
28
28
|
extra = pydantic.Extra.allow
|
29
29
|
|
30
30
|
|
31
|
-
update_forward_refs(
|
31
|
+
update_forward_refs(ArrayVellumValue, TemplatingNodeResult=TemplatingNodeResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
from .templating_node_result_output import TemplatingNodeResultOutput
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
8
8
|
import typing
|
@@ -23,4 +23,4 @@ class TemplatingNodeResultData(UniversalBaseModel):
|
|
23
23
|
extra = pydantic.Extra.allow
|
24
24
|
|
25
25
|
|
26
|
-
update_forward_refs(
|
26
|
+
update_forward_refs(ArrayVellumValue, TemplatingNodeResultData=TemplatingNodeResultData)
|
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
import pydantic
|
8
|
-
from .
|
8
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
9
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
10
10
|
from ..core.pydantic_utilities import update_forward_refs
|
11
11
|
|
@@ -18,7 +18,7 @@ class TerminalNodeArrayResult(UniversalBaseModel):
|
|
18
18
|
"""
|
19
19
|
|
20
20
|
type: typing.Literal["ARRAY"] = "ARRAY"
|
21
|
-
value: typing.Optional[typing.List[
|
21
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
|
22
22
|
|
23
23
|
if IS_PYDANTIC_V2:
|
24
24
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
@@ -30,4 +30,4 @@ class TerminalNodeArrayResult(UniversalBaseModel):
|
|
30
30
|
extra = pydantic.Extra.allow
|
31
31
|
|
32
32
|
|
33
|
-
update_forward_refs(
|
33
|
+
update_forward_refs(ArrayVellumValue, TerminalNodeArrayResult=TerminalNodeArrayResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
from .terminal_node_result_data import TerminalNodeResultData
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -28,4 +28,4 @@ class TerminalNodeResult(UniversalBaseModel):
|
|
28
28
|
extra = pydantic.Extra.allow
|
29
29
|
|
30
30
|
|
31
|
-
update_forward_refs(
|
31
|
+
update_forward_refs(ArrayVellumValue, TerminalNodeResult=TerminalNodeResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
from .terminal_node_result_output import TerminalNodeResultOutput
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
8
8
|
import typing
|
@@ -23,4 +23,4 @@ class TerminalNodeResultData(UniversalBaseModel):
|
|
23
23
|
extra = pydantic.Extra.allow
|
24
24
|
|
25
25
|
|
26
|
-
update_forward_refs(
|
26
|
+
update_forward_refs(ArrayVellumValue, TerminalNodeResultData=TerminalNodeResultData)
|
@@ -6,9 +6,9 @@ from .terminal_node_number_result import TerminalNodeNumberResult
|
|
6
6
|
from .terminal_node_json_result import TerminalNodeJsonResult
|
7
7
|
from .terminal_node_chat_history_result import TerminalNodeChatHistoryResult
|
8
8
|
from .terminal_node_search_results_result import TerminalNodeSearchResultsResult
|
9
|
+
from .terminal_node_error_result import TerminalNodeErrorResult
|
9
10
|
from .terminal_node_array_result import TerminalNodeArrayResult
|
10
11
|
from .terminal_node_function_call_result import TerminalNodeFunctionCallResult
|
11
|
-
from .terminal_node_error_result import TerminalNodeErrorResult
|
12
12
|
|
13
13
|
TerminalNodeResultOutput = typing.Union[
|
14
14
|
TerminalNodeStringResult,
|
@@ -16,7 +16,7 @@ TerminalNodeResultOutput = typing.Union[
|
|
16
16
|
TerminalNodeJsonResult,
|
17
17
|
TerminalNodeChatHistoryResult,
|
18
18
|
TerminalNodeSearchResultsResult,
|
19
|
+
TerminalNodeErrorResult,
|
19
20
|
TerminalNodeArrayResult,
|
20
21
|
TerminalNodeFunctionCallResult,
|
21
|
-
TerminalNodeErrorResult,
|
22
22
|
]
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .array_variable_value import ArrayVariableValue
|
6
5
|
from .array_vellum_value import ArrayVellumValue
|
7
6
|
import typing
|
8
7
|
from .workflow_node_result_event import WorkflowNodeResultEvent
|
@@ -32,5 +31,4 @@ class WorkflowExecutionNodeResultEvent(UniversalBaseModel):
|
|
32
31
|
extra = pydantic.Extra.allow
|
33
32
|
|
34
33
|
|
35
|
-
update_forward_refs(ArrayVariableValue, WorkflowExecutionNodeResultEvent=WorkflowExecutionNodeResultEvent)
|
36
34
|
update_forward_refs(ArrayVellumValue, WorkflowExecutionNodeResultEvent=WorkflowExecutionNodeResultEvent)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
4
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
5
|
+
import typing
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class WorkflowPushResponse(UniversalBaseModel):
|
10
|
+
workflow_sandbox_id: str
|
11
|
+
|
12
|
+
if IS_PYDANTIC_V2:
|
13
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
14
|
+
else:
|
15
|
+
|
16
|
+
class Config:
|
17
|
+
frozen = True
|
18
|
+
smart_union = True
|
19
|
+
extra = pydantic.Extra.allow
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
2
|
-
vellum/client.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=zYlpwH3oy4YWEGkHMD8aGno4hdlSKgghpEvt3bvjM-0,33786
|
2
|
+
vellum/client.py,sha256=oyKQasaHZqssc_CiZdvIcrGePxzg9k7GfB7_ik1jsH0,114871
|
3
3
|
vellum/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
4
4
|
vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
-
vellum/core/client_wrapper.py,sha256=
|
5
|
+
vellum/core/client_wrapper.py,sha256=inyxfaovl6is19wUahN6_9s1KGa0kCwDU7CVka1R5mw,1891
|
6
6
|
vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
vellum/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
|
8
8
|
vellum/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
|
@@ -30,7 +30,7 @@ vellum/lib/utils/paginator.py,sha256=yDvgehocYBDclLt5SewZH4hCIyq0yLHdBzkyPCoYPjs
|
|
30
30
|
vellum/lib/utils/typing.py,sha256=qngWnFwrWLUeu1nmixXGj173mwg7BXKTAyQkxK8AtfQ,327
|
31
31
|
vellum/lib/utils/uuid.py,sha256=nedyhTNQDS2YvrU5gL3PtvG9cgGH87yKOcpGDJAe44E,214
|
32
32
|
vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
vellum/resources/__init__.py,sha256=
|
33
|
+
vellum/resources/__init__.py,sha256=WgEjN7hU-7e0BpBfHGxN6S4lBhRv3kYF3jcf6Bsil2U,1048
|
34
34
|
vellum/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
35
35
|
vellum/resources/ad_hoc/client.py,sha256=maNoWMHH8LSFlr5rDfoJybiPaoWuUiWFkt-IFq8dNMA,17271
|
36
36
|
vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
|
@@ -61,6 +61,8 @@ vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_p
|
|
61
61
|
vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
|
62
62
|
vellum/resources/workflow_sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
63
63
|
vellum/resources/workflow_sandboxes/client.py,sha256=3wVQxkjrJ5bIS8fB5FpKXCP2dX38299ghWrJ8YmXxwQ,7435
|
64
|
+
vellum/resources/workflows/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
65
|
+
vellum/resources/workflows/client.py,sha256=ZOUOWKdQRv7tFks5c8gwU6JMSLeskYu7Om9gk8t1oCM,4639
|
64
66
|
vellum/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
65
67
|
vellum/resources/workspace_secrets/client.py,sha256=XPrvVh-Pvgt_may5ktpOQm_b1GgqP6lHit2g_5CsbTI,4022
|
66
68
|
vellum/terraform/__init__.py,sha256=CxzT0rkV9cXwAtxZ3gv46DCRt9vBl_Sx1SOj5MJtl0Y,498
|
@@ -74,7 +76,7 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
|
|
74
76
|
vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
|
75
77
|
vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
76
78
|
vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
|
77
|
-
vellum/types/__init__.py,sha256=
|
79
|
+
vellum/types/__init__.py,sha256=o2F5GYnijRy2aPArf1cu5jz5u7Cql76axxx7JGtZ9E8,51464
|
78
80
|
vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
|
79
81
|
vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
|
80
82
|
vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
|
@@ -112,14 +114,14 @@ vellum/types/chat_message_prompt_block_properties_request.py,sha256=lMBVwR5hnByk
|
|
112
114
|
vellum/types/chat_message_prompt_block_request.py,sha256=osPqtdZOG9NW_Iqcv0CyvkU2cHZzPeVVIWQUGvnB-Dw,1423
|
113
115
|
vellum/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
|
114
116
|
vellum/types/chat_message_role.py,sha256=-i0Jrcbwf72MkMoaFTGyxRduvlN7f5Y9ULhCXR5KNdA,182
|
115
|
-
vellum/types/code_execution_node_array_result.py,sha256=
|
117
|
+
vellum/types/code_execution_node_array_result.py,sha256=6BTyZQTtRfkZTz9dJ8j4IKQq-OfsjRvFFBpltzqNV3g,981
|
116
118
|
vellum/types/code_execution_node_chat_history_result.py,sha256=Kwb_jn_xmVz214bIGPmmpplKDczMAJCMAr6RxOJA-1Q,731
|
117
119
|
vellum/types/code_execution_node_error_result.py,sha256=QlJEhZS-BKpCJc8bwG4MrsvUsTjDbY8iohYZh7--yBI,698
|
118
120
|
vellum/types/code_execution_node_function_call_result.py,sha256=_3FYGMQhSvucFHC4gu9dHBXDKz8WpkTeDQ03aoASsn4,724
|
119
121
|
vellum/types/code_execution_node_json_result.py,sha256=7FFqCR8B1fIjaRZ7Ix5fUhtAJfct_GDg7YWYAw7RUd4,656
|
120
122
|
vellum/types/code_execution_node_number_result.py,sha256=PEhYlKvzPuJAoFwsZ2MTgFIswxhyjxc3AskDg9NBVWk,657
|
121
|
-
vellum/types/code_execution_node_result.py,sha256=
|
122
|
-
vellum/types/code_execution_node_result_data.py,sha256=
|
123
|
+
vellum/types/code_execution_node_result.py,sha256=JBE6RyfWSKxXJSj9keeRsrvErtCLy3xAkM6YO6YrDyw,1033
|
124
|
+
vellum/types/code_execution_node_result_data.py,sha256=CJ73aynNfct57S0AVD1cr8Kj4Pz6oWLV-AvUAzTvKRk,961
|
123
125
|
vellum/types/code_execution_node_result_output.py,sha256=ZddnayoP01i5alC12OaoNdSgLoXr_Y4Nl343xGJvJeU,1069
|
124
126
|
vellum/types/code_execution_node_search_results_result.py,sha256=yPh94v7pgFL-4x1JPSnXXGihUi42i-OfOaNVHLN4jE8,740
|
125
127
|
vellum/types/code_execution_node_string_result.py,sha256=uH6KO57muMko4u_xISchhvP0E-VzJfhKD_rijXgisZ8,655
|
@@ -190,7 +192,7 @@ vellum/types/fulfilled_execute_prompt_event.py,sha256=E-iBwlMWvwQyRfzqPlgtX8KurE
|
|
190
192
|
vellum/types/fulfilled_execute_prompt_response.py,sha256=nKhDk2ZloCuE0uijX5XOE63_cq8PBo4UWs4hK4e3jUE,1227
|
191
193
|
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=kYlTOfJd9SydVSmJ8dr8pdLh7RHOwcFv5UzBYgKlyTw,1147
|
192
194
|
vellum/types/fulfilled_prompt_execution_meta.py,sha256=sMWAMqJCh8n_NBtRSM4muiAqKne_W-NCxJVzKy9Q1Ec,934
|
193
|
-
vellum/types/fulfilled_workflow_node_result_event.py,sha256=
|
195
|
+
vellum/types/fulfilled_workflow_node_result_event.py,sha256=dYZUcyl_nFRFpBA_imaHkp9F7dLi59z2ESq4R7do9mo,1403
|
194
196
|
vellum/types/function_call.py,sha256=nXPEC3nJh8QzjCvyomfm80fyO-Aar60KBOaGfQtZ5D0,804
|
195
197
|
vellum/types/function_call_chat_message_content.py,sha256=qXbrMQeXn_CLjfDzQvv9llmae2wvpoTlUSQWdfMvf-k,831
|
196
198
|
vellum/types/function_call_chat_message_content_request.py,sha256=HVGxHs6jc4EBgW7rdJXlF8KRlugY5YHa0ujDrEQqPCo,860
|
@@ -231,7 +233,7 @@ vellum/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwF
|
|
231
233
|
vellum/types/initiated_ad_hoc_execute_prompt_event.py,sha256=B34Q2aU2vj9qpjpWXIieN839iB7t4EWCD9mmCfbkwpo,915
|
232
234
|
vellum/types/initiated_execute_prompt_event.py,sha256=tHt80ZIuKk6B85IQqSF3MQqiSSiBsSP2Aw3XuD5xk6E,893
|
233
235
|
vellum/types/initiated_prompt_execution_meta.py,sha256=pnRjcPnVRp650k0W7kfwg9f24S4vAJfQoGGdBs_aKlc,887
|
234
|
-
vellum/types/initiated_workflow_node_result_event.py,sha256=
|
236
|
+
vellum/types/initiated_workflow_node_result_event.py,sha256=Nu1J4iQYsW2HHjQFzQq-ZQAQtEmS95pPnHOZZDdPrcU,1407
|
235
237
|
vellum/types/instructor_vectorizer_config.py,sha256=7udlosXv4CUWTW_Q9m0mz3VRi1FKSbBhDIOhtxRd0-U,731
|
236
238
|
vellum/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqEMVdr3KJHEps0oDp2bNmqWbM,738
|
237
239
|
vellum/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
|
@@ -277,15 +279,15 @@ vellum/types/named_test_case_string_variable_value.py,sha256=2xuTh35MarcDMMCy6px
|
|
277
279
|
vellum/types/named_test_case_string_variable_value_request.py,sha256=Bv7LEBEyDHtBPPWdzgvCA8DHG6n1jF4NVlEe6zYPJUs,733
|
278
280
|
vellum/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
|
279
281
|
vellum/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
|
280
|
-
vellum/types/node_input_compiled_array_value.py,sha256=
|
282
|
+
vellum/types/node_input_compiled_array_value.py,sha256=qbJyqtTaq7JuPgId2DMGQGGAzUKDr7L21rKWYKi0yQ4,1002
|
281
283
|
vellum/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
|
282
284
|
vellum/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
|
283
|
-
vellum/types/
|
285
|
+
vellum/types/node_input_compiled_function_call_value.py,sha256=Q9vrORvrPDvHrBBYNA2YALHQd7WlGMytEBtoQdJelvk,747
|
284
286
|
vellum/types/node_input_compiled_json_value.py,sha256=ketb8FNY9DQjAxgJd4SPDE6ErHJYY0NEkW0-STapBkw,679
|
285
287
|
vellum/types/node_input_compiled_number_value.py,sha256=Olc4UpYsm-v7ZhlTVXsp7JVQE0ytLsBSd9HolCYWmZ4,680
|
286
288
|
vellum/types/node_input_compiled_search_results_value.py,sha256=A2SnHYZAt2_VsQDXL4B2CF3KYgDJeUAQ5L0RbI8flH0,763
|
287
289
|
vellum/types/node_input_compiled_string_value.py,sha256=V4HKhHW6B2iUvYqYbuwcOHTxiui3nfOe0DKOiTXshJQ,678
|
288
|
-
vellum/types/node_input_variable_compiled_value.py,sha256=
|
290
|
+
vellum/types/node_input_variable_compiled_value.py,sha256=ahG5KdRDQ97w3Ljhfz9EssY0FD1DKeE4C5y393QOS78,1046
|
289
291
|
vellum/types/node_output_compiled_array_value.py,sha256=j2JB6jLk6aRyJTfH8Eagz24VNk6jkPX7PZ4QB7FsrsM,1205
|
290
292
|
vellum/types/node_output_compiled_chat_history_value.py,sha256=rAAnJ2PcXGxKusMpq2NEhJdBSRrPB9da5uN19x92Wu4,962
|
291
293
|
vellum/types/node_output_compiled_error_value.py,sha256=dkgT_h463S8AF3QHVZdvy9HGF3A2LhxuNnAQouAYQlE,922
|
@@ -347,7 +349,7 @@ vellum/types/rejected_execute_prompt_event.py,sha256=Jt8lXmZrZ7FiSWAqZMguUDeZC_X
|
|
347
349
|
vellum/types/rejected_execute_prompt_response.py,sha256=YyY9KGTbJ53DmwiXHqYkuxxDIx3w560bB3R0fzqzwQk,1185
|
348
350
|
vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=6k6GRr2TnVSM0DxS3H3hczwV7962UDG92yLh6j8OjcM,882
|
349
351
|
vellum/types/rejected_prompt_execution_meta.py,sha256=4Oidh3XBBHzgjOys2kuETxqWc_MOqS50UpB0o8YNZd8,844
|
350
|
-
vellum/types/rejected_workflow_node_result_event.py,sha256=
|
352
|
+
vellum/types/rejected_workflow_node_result_event.py,sha256=o9AUc9hT60F8ckMkCx8HtKxtj4y82LBoJduB9u8w0TM,1319
|
351
353
|
vellum/types/release_tag_source.py,sha256=YavosOXZ976yfXTNWRTZwh2HhRiYmSDk0bQCkl-jCoQ,158
|
352
354
|
vellum/types/replace_test_suite_test_case_request.py,sha256=c1GT1RUCei1yWxyZy4Gv40PkXYisvK5OkzlqQ6WeBYA,1906
|
353
355
|
vellum/types/rich_text_child_block_request.py,sha256=Uggxf_xIIIu8x1LlR8uJdmr6_drFL0izWhVr6b5TxqQ,321
|
@@ -385,7 +387,7 @@ vellum/types/slim_workflow_deployment.py,sha256=FW7qXPtSIP9QAzECbl8gKL1iFqKWTAfI
|
|
385
387
|
vellum/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
|
386
388
|
vellum/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
|
387
389
|
vellum/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQDe2n7YVLqxbhOaf6Ytc,736
|
388
|
-
vellum/types/streaming_workflow_node_result_event.py,sha256=
|
390
|
+
vellum/types/streaming_workflow_node_result_event.py,sha256=AEPuKp9rtq1EodBxXVADdwTfe7EAioM2Vuxk2Ipt1ZQ,1413
|
389
391
|
vellum/types/string_chat_message_content.py,sha256=6ZVl5cofQXFV2RlEJvVdWWYa9WVe172DPOZ-Uk82lDM,682
|
390
392
|
vellum/types/string_chat_message_content_request.py,sha256=qFB_JJvI4FgbW7bB60tyGChWDNINnHqa7hW13rlOvak,689
|
391
393
|
vellum/types/string_input_request.py,sha256=6GjNnhuK2krO_8U-id0TOqNyND2GfNpDm7OWd60DyqE,744
|
@@ -396,26 +398,26 @@ vellum/types/submit_completion_actual_request.py,sha256=hMWNAGUc54I44kDFKFSXdXTx
|
|
396
398
|
vellum/types/submit_workflow_execution_actual_request.py,sha256=xRCiA1QvQBD0lbZfBZUSZnm_XNOj17jyXXmppztQEB8,535
|
397
399
|
vellum/types/subworkflow_node_result.py,sha256=a2N7E6OSVxH1fQB24j96a6qucw1DgCz7w_hChENNV9A,808
|
398
400
|
vellum/types/subworkflow_node_result_data.py,sha256=np3Wnc5pmnehtMLfJZVz3bozYJN752vf9VERs9rIuqA,600
|
399
|
-
vellum/types/templating_node_array_result.py,sha256=
|
401
|
+
vellum/types/templating_node_array_result.py,sha256=ZqEno03BYJFgUZZ2r2ThM4uSaZlw1Ew0aB5uuBgtNqs,972
|
400
402
|
vellum/types/templating_node_chat_history_result.py,sha256=RhEeDRtvWOPlLPsSuz3lAA3m8EqmdhB8sI_pwXuPgGg,728
|
401
403
|
vellum/types/templating_node_error_result.py,sha256=A9CkVXU0YUYko0epKmZlIHPwvFNfmLuM3iwduH0OhNU,695
|
402
404
|
vellum/types/templating_node_function_call_result.py,sha256=bJDLDS_N_dzf7w7wfUUaePg0N6_6amaJ8GrtDey8Kvw,721
|
403
405
|
vellum/types/templating_node_json_result.py,sha256=ShHCYLxdf4mO_XYH4GEmdNY2S1RaruGLJGYkP2Td398,653
|
404
406
|
vellum/types/templating_node_number_result.py,sha256=LLlRuHVbhNb4FHbsbClfYHJb083l20UTE-TVrmbhR1U,654
|
405
|
-
vellum/types/templating_node_result.py,sha256=
|
406
|
-
vellum/types/templating_node_result_data.py,sha256=
|
407
|
+
vellum/types/templating_node_result.py,sha256=b1f-ITDJvf8793JrK3POwjVth-GEljjlEtCsnMGDz2E,1002
|
408
|
+
vellum/types/templating_node_result_data.py,sha256=ySZesaAaCU6Zr2J2eSVK4Bu6nHnnFP9ptxoirlKwRck,895
|
407
409
|
vellum/types/templating_node_result_output.py,sha256=f94nwW79EAAjHKpL70Vc_N2DRq-FC4993g1X79V5Q7M,986
|
408
410
|
vellum/types/templating_node_search_results_result.py,sha256=LRChfWy1btVEuz8AX6x6x_s0o4uKKokc-R3O7kHGr5Q,737
|
409
411
|
vellum/types/templating_node_string_result.py,sha256=b3BOuBwqhYMJHvsfVwtYaFSeau7R4XkyJ6gG37J0x7M,652
|
410
|
-
vellum/types/terminal_node_array_result.py,sha256=
|
412
|
+
vellum/types/terminal_node_array_result.py,sha256=XaetOZXyK1bebh1FH8QYMTGMnDvd6MfP14WC908gRlk,1114
|
411
413
|
vellum/types/terminal_node_chat_history_result.py,sha256=YGywmDryELuzeLYi6p59pQoCNoPekA6bhSF0sYFAsw0,874
|
412
414
|
vellum/types/terminal_node_error_result.py,sha256=qwhunjngnumpeNoqxnVEbvFoXAyX-CXQ_MusOwOeNv0,841
|
413
415
|
vellum/types/terminal_node_function_call_result.py,sha256=-9tPhggVBQ9wvCHehZl1-L9G7oxrfDdR9aU8TFxowTo,867
|
414
416
|
vellum/types/terminal_node_json_result.py,sha256=vCTnr-xZvBxRmByAiwA8Y0MviNSZ6xQrCM3qSRRisuQ,799
|
415
417
|
vellum/types/terminal_node_number_result.py,sha256=ob2sOXeIjMl0pVdHW9niDzDclhpuAMBYCKY-ow7jXdU,800
|
416
|
-
vellum/types/terminal_node_result.py,sha256=
|
417
|
-
vellum/types/terminal_node_result_data.py,sha256=
|
418
|
-
vellum/types/terminal_node_result_output.py,sha256=
|
418
|
+
vellum/types/terminal_node_result.py,sha256=uZsVnfuVtRO08v7I-Yv6tKgXHv_5V6j8WVDlWFiSOTA,984
|
419
|
+
vellum/types/terminal_node_result_data.py,sha256=JwpRyewiBPpOmHvCIof1fqBfDX_B6O9q1aka6n7ESR4,883
|
420
|
+
vellum/types/terminal_node_result_output.py,sha256=f3sAqpRpw9_TfPfW4312I0nwfrRLfaDny-ETFuIieao,936
|
419
421
|
vellum/types/terminal_node_search_results_result.py,sha256=rX_ftp_C7hez_xjPRZm8yJuwMFoM6jsTDfPAseYmzFc,883
|
420
422
|
vellum/types/terminal_node_string_result.py,sha256=CW_nl-fI4YwhCm3YEO_cQW9mjG6rNZo5L-Ic4v1iAMo,798
|
421
423
|
vellum/types/test_case_array_variable_value.py,sha256=MvfEGItX9iJ4xmfsOyDb_wdPxBKK_AC3vu20I_xhLPc,1065
|
@@ -506,7 +508,7 @@ vellum/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB
|
|
506
508
|
vellum/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
|
507
509
|
vellum/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDHSdtwGgg0LWvM5yVQfnXYc4,425
|
508
510
|
vellum/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
|
509
|
-
vellum/types/workflow_execution_node_result_event.py,sha256=
|
511
|
+
vellum/types/workflow_execution_node_result_event.py,sha256=wJNwOPwqOl1fBim9Y1rtHiNMoWBZ2xausdSddQI5Mg8,1136
|
510
512
|
vellum/types/workflow_execution_workflow_result_event.py,sha256=9Y8ycC8DfarOHiA8CWKt117QJsWStCuHaSgS5qW9ZIY,1315
|
511
513
|
vellum/types/workflow_expand_meta_request.py,sha256=XOqufKO7gHAumATiJGgxzOYWvGx_iZsf3A49JKs4LJ8,771
|
512
514
|
vellum/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx-RZYcx5W32Hs,951
|
@@ -522,6 +524,8 @@ vellum/types/workflow_output_json.py,sha256=MiCF-mq121YKZmYeaVpb3Tgh4XYqWjNgo3uM
|
|
522
524
|
vellum/types/workflow_output_number.py,sha256=p8APNBpl6c3e3dxCFvZtL0jyKOmu9s6LkY3vgXwhTMw,812
|
523
525
|
vellum/types/workflow_output_search_results.py,sha256=r3RRGVVrH2H9NAuxA7qmG8lponyeLHHhCx6AUiMYWzc,903
|
524
526
|
vellum/types/workflow_output_string.py,sha256=_jclzbQ-Wlf-7FEVTWXhs9h5FWfj4xGpiODZBOzT43w,810
|
527
|
+
vellum/types/workflow_push_exec_config.py,sha256=2JSGRwPx97IO3rDQmpyen_Zs7R4e1nDUk7jRAZG5U8s,151
|
528
|
+
vellum/types/workflow_push_response.py,sha256=M9aVBUj4J9LGj5hMNBNMCVZKPnPvDWo9F90HSEhRW0o,578
|
525
529
|
vellum/types/workflow_release_tag_read.py,sha256=S7ekl01oVDetL8R7MdBTb4cDhHN0W0iHGNJ1-ZpY3Tc,1155
|
526
530
|
vellum/types/workflow_release_tag_workflow_deployment_history_item.py,sha256=pjWobdk9mZD3Px86rwFHfs_PYJBGXDKQUkxsgNEe6EA,825
|
527
531
|
vellum/types/workflow_request_chat_history_input_request.py,sha256=WCZvwDuNS8ylWOOoKD3t7fHLSYB0h-fVCqeDRzqPoPA,898
|
@@ -542,7 +546,7 @@ vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb
|
|
542
546
|
vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
|
543
547
|
vellum/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
|
544
548
|
vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
|
545
|
-
vellum_ai-0.8.
|
546
|
-
vellum_ai-0.8.
|
547
|
-
vellum_ai-0.8.
|
548
|
-
vellum_ai-0.8.
|
549
|
+
vellum_ai-0.8.28.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
550
|
+
vellum_ai-0.8.28.dist-info/METADATA,sha256=bIELfoZgsA4VpAorddt-_J3pS2_wZFZMe_3HjSWWCJg,4395
|
551
|
+
vellum_ai-0.8.28.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
552
|
+
vellum_ai-0.8.28.dist-info/RECORD,,
|
File without changes
|
File without changes
|