vellum-ai 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vellum/__init__.py +90 -0
- vellum/client.py +107 -0
- vellum/core/client_wrapper.py +1 -1
- vellum/types/__init__.py +96 -0
- vellum/types/array_enum.py +5 -0
- vellum/types/array_variable_value.py +35 -0
- vellum/types/chat_history_enum.py +5 -0
- vellum/types/chat_history_variable_value.py +29 -0
- vellum/types/error_enum.py +5 -0
- vellum/types/execute_workflow_error_response.py +28 -0
- vellum/types/execute_workflow_response.py +32 -0
- vellum/types/execute_workflow_workflow_result_event.py +33 -0
- vellum/types/fulfilled_execute_workflow_workflow_result_event.py +35 -0
- vellum/types/json_enum.py +5 -0
- vellum/types/number_enum.py +5 -0
- vellum/types/number_variable_value.py +28 -0
- vellum/types/rejected_execute_workflow_workflow_result_event.py +35 -0
- vellum/types/scenario_input_type_enum.py +2 -2
- vellum/types/search_results_enum.py +5 -0
- vellum/types/search_results_variable_value.py +29 -0
- vellum/types/variable_value.py +102 -0
- vellum/types/workflow_output.py +111 -0
- vellum/types/workflow_output_array.py +35 -0
- vellum/types/workflow_output_chat_history.py +35 -0
- vellum/types/workflow_output_error.py +35 -0
- vellum/types/workflow_output_function_call.py +35 -0
- vellum/types/workflow_output_image.py +35 -0
- vellum/types/workflow_output_json.py +34 -0
- vellum/types/workflow_output_number.py +34 -0
- vellum/types/workflow_output_search_results.py +35 -0
- vellum/types/workflow_output_string.py +34 -0
- vellum/types/workflow_result_event.py +2 -0
- {vellum_ai-0.2.0.dist-info → vellum_ai-0.2.1.dist-info}/METADATA +1 -1
- {vellum_ai-0.2.0.dist-info → vellum_ai-0.2.1.dist-info}/RECORD +36 -10
- {vellum_ai-0.2.0.dist-info → vellum_ai-0.2.1.dist-info}/LICENSE +0 -0
- {vellum_ai-0.2.0.dist-info → vellum_ai-0.2.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,34 @@
|
|
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 WorkflowOutputNumber(pydantic.BaseModel):
|
15
|
+
"""
|
16
|
+
A number output from a Workflow execution.
|
17
|
+
"""
|
18
|
+
|
19
|
+
id: str
|
20
|
+
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
21
|
+
value: float
|
22
|
+
|
23
|
+
def json(self, **kwargs: typing.Any) -> str:
|
24
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
25
|
+
return super().json(**kwargs_with_defaults)
|
26
|
+
|
27
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
28
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
29
|
+
return super().dict(**kwargs_with_defaults)
|
30
|
+
|
31
|
+
class Config:
|
32
|
+
frozen = True
|
33
|
+
smart_union = True
|
34
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,35 @@
|
|
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 .search_result import SearchResult
|
8
|
+
|
9
|
+
try:
|
10
|
+
import pydantic.v1 as pydantic # type: ignore
|
11
|
+
except ImportError:
|
12
|
+
import pydantic # type: ignore
|
13
|
+
|
14
|
+
|
15
|
+
class WorkflowOutputSearchResults(pydantic.BaseModel):
|
16
|
+
"""
|
17
|
+
A search results output from a Workflow execution.
|
18
|
+
"""
|
19
|
+
|
20
|
+
id: str
|
21
|
+
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
22
|
+
value: typing.List[SearchResult]
|
23
|
+
|
24
|
+
def json(self, **kwargs: typing.Any) -> str:
|
25
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
26
|
+
return super().json(**kwargs_with_defaults)
|
27
|
+
|
28
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
29
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
30
|
+
return super().dict(**kwargs_with_defaults)
|
31
|
+
|
32
|
+
class Config:
|
33
|
+
frozen = True
|
34
|
+
smart_union = True
|
35
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,34 @@
|
|
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 WorkflowOutputString(pydantic.BaseModel):
|
15
|
+
"""
|
16
|
+
A string output from a Workflow execution.
|
17
|
+
"""
|
18
|
+
|
19
|
+
id: str
|
20
|
+
name: str = pydantic.Field(description="The output's name, as defined in the workflow")
|
21
|
+
value: str
|
22
|
+
|
23
|
+
def json(self, **kwargs: typing.Any) -> str:
|
24
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
25
|
+
return super().json(**kwargs_with_defaults)
|
26
|
+
|
27
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
28
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
29
|
+
return super().dict(**kwargs_with_defaults)
|
30
|
+
|
31
|
+
class Config:
|
32
|
+
frozen = True
|
33
|
+
smart_union = True
|
34
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -6,6 +6,7 @@ import typing
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
7
7
|
from .workflow_event_error import WorkflowEventError
|
8
8
|
from .workflow_node_result_event_state import WorkflowNodeResultEventState
|
9
|
+
from .workflow_output import WorkflowOutput
|
9
10
|
from .workflow_result_event_output_data import WorkflowResultEventOutputData
|
10
11
|
|
11
12
|
try:
|
@@ -20,6 +21,7 @@ class WorkflowResultEvent(pydantic.BaseModel):
|
|
20
21
|
ts: dt.datetime
|
21
22
|
output: typing.Optional[WorkflowResultEventOutputData]
|
22
23
|
error: typing.Optional[WorkflowEventError]
|
24
|
+
outputs: typing.Optional[typing.List[WorkflowOutput]]
|
23
25
|
|
24
26
|
def json(self, **kwargs: typing.Any) -> str:
|
25
27
|
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=r2xz-ftFT8S6r4O0P0VDwuoCWvJkGmq3-jpWGXuPGtg,24851
|
2
|
+
vellum/client.py,sha256=gLkXgzirHxRjv9M4TaHGiSijihtTi_FdkNQvNYWOLxY,65068
|
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=oI43_TPY-7y9gbSprNEp4sZQ1h2b3sk5jz89y6wgfrM,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
|
@@ -35,15 +35,19 @@ vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv
|
|
35
35
|
vellum/resources/workflow_deployments/client.py,sha256=3yvvXvB4axl592Djv3QKMcnhNcJw7tHZtR0COq5TjIg,5050
|
36
36
|
vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
|
37
37
|
vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=8-G1SalBR6-AfRnb6POOR9M3tvZa3CGwFIs1ArZb6uw,542
|
38
|
-
vellum/types/__init__.py,sha256=
|
38
|
+
vellum/types/__init__.py,sha256=K3MVziBlD-iHotByC5KnRAJH8AG6q_9EjkAW0qKiqnI,33290
|
39
39
|
vellum/types/api_node_result.py,sha256=1zAcNznjyVkTQM2V--UE1lYFzRWbYEogoChZBGcsliE,936
|
40
40
|
vellum/types/api_node_result_data.py,sha256=HvpZaAKYXsoBOnobACIYCmIdxbRc7Zp-ibIohiz_Nzc,1125
|
41
41
|
vellum/types/array_chat_message_content.py,sha256=9aHCzT66f7zTX0oWEL-yvIL8L81joe2Qe5L_DaRDqnU,1050
|
42
42
|
vellum/types/array_chat_message_content_item.py,sha256=a383gaeYCucVDvnY1Xk1z8INbPt-qch4VCT6i_JD3OA,1221
|
43
43
|
vellum/types/array_chat_message_content_item_request.py,sha256=Plg6Ny8pwn-na1r1vPeJSdg1IovFcJqcyT_0UiYqfWs,1345
|
44
44
|
vellum/types/array_chat_message_content_request.py,sha256=nXvKOArX2Bx_T2S4-ZK_09bfsSkCQb69OahL1Q_h3bU,1079
|
45
|
+
vellum/types/array_enum.py,sha256=ZpwcTHF6WuYeP8QlVfkuJ_YSyPH0iYjeydvHV5kF0HU,138
|
46
|
+
vellum/types/array_variable_value.py,sha256=jRrS3CTLXxO44b6Q7ReH4WEOJCdjKQj6dXgLcmiY_Cs,1035
|
45
47
|
vellum/types/block_type_enum.py,sha256=w6z5D3RTe75YQBG6HpX8NCbO_kSZxIL0Xy1xss2RKS8,1051
|
48
|
+
vellum/types/chat_history_enum.py,sha256=aiUhxKMC4D83EjGnKNPSzSwoBT5J6G0O-TvBTKr4Oek,151
|
46
49
|
vellum/types/chat_history_input_request.py,sha256=VyGS0Mv_He-fI2d22ygpC2k5ddXKnzWDRFc7-Xkryog,1130
|
50
|
+
vellum/types/chat_history_variable_value.py,sha256=koLGjfczUqLz56JWV0lWFXfE0NkjHFHfbIX1qdD7im0,958
|
47
51
|
vellum/types/chat_message.py,sha256=oQAvsjlhbLWANAiQgdNCOpU1OBRDa9RyiywRklG5M9I,1060
|
48
52
|
vellum/types/chat_message_content.py,sha256=2NQqu8qgDlsYs5-ka7OMYAyZXA0Ft2n2I2efvNDBFg8,1466
|
49
53
|
vellum/types/chat_message_content_request.py,sha256=V0Q4CI4TYeqD4b7flSI69L1XkLSxrgadK4GpMhWo8Yg,1630
|
@@ -69,17 +73,22 @@ vellum/types/document_status.py,sha256=dkotle2rykOxF1QxqcM8af2ORzmFjZR5a7pHXP6Sj
|
|
69
73
|
vellum/types/enriched_normalized_completion.py,sha256=uaWn20XfRO2Wvtkj_C_6EejC9YAz4s0UR9tJoOhzouI,2135
|
70
74
|
vellum/types/entity_status.py,sha256=mOmg4bcQlLH1OZ1dV5TIHGqgHrG89XhAC-dailkM1s0,539
|
71
75
|
vellum/types/environment_enum.py,sha256=4BOiy38qQQfcoSHJyfAGaC4QMOo8Zc-9TdNP7z9q2iw,799
|
76
|
+
vellum/types/error_enum.py,sha256=39AQMEUAKc9vBN6i7Xq7JeKyYEtGiN7YdW0DfYfiag8,138
|
72
77
|
vellum/types/error_variable_value.py,sha256=uI1rYCfZZsTs683lrirH1Jctn_W4AvgQfBA4hMWNfnw,939
|
73
78
|
vellum/types/evaluation_params.py,sha256=Ey-RgV4uKVv8G4Dj6lmX_qiBsLcPo1NmoY2xcFW_qDQ,1048
|
74
79
|
vellum/types/evaluation_params_request.py,sha256=izDbrQHT7QFYjxXX9bkeZnoCle3teShaodbnV_11sJo,1055
|
75
80
|
vellum/types/execute_prompt_api_error_response.py,sha256=f0peA0yIyF1dqh2PclsVEaiCCoLK73KEwYq32cj82Nw,958
|
76
81
|
vellum/types/execute_prompt_event.py,sha256=NzJU6TyaA5C7Ks-52mnjv7yNPRmlW8_1HIFI3_TlEiE,1523
|
77
82
|
vellum/types/execute_prompt_response.py,sha256=SqL28HqVlaAnxjK05k9oYHxrzI3F96WPdAO7mujXwGM,871
|
83
|
+
vellum/types/execute_workflow_error_response.py,sha256=kxMiLUezrkBaDsgBzQSkC5EqGAyXruI8IXxNXdly3oc,957
|
84
|
+
vellum/types/execute_workflow_response.py,sha256=guQjJrVYohQKKC3obN0K6VWFjwa1Q2lofx2z8r3WE4g,1091
|
78
85
|
vellum/types/execute_workflow_stream_error_response.py,sha256=WHSu333maVV2Nbxs43QCxlW6wjbkPdm-97DP1tzglAA,963
|
86
|
+
vellum/types/execute_workflow_workflow_result_event.py,sha256=z8zlB1HZv6Wvhdsc-XY51Tv6dSqIFKGVy_20pmKAfN4,1024
|
79
87
|
vellum/types/finish_reason_enum.py,sha256=zAvOLiq2ngmDILEftziwCGYb4z-wlih0XHRNOo35FzM,726
|
80
88
|
vellum/types/fulfilled_enum.py,sha256=mMP8i4YCkFeJXZ5SqOLGNercErechFzpEs8Gs_sIWto,146
|
81
89
|
vellum/types/fulfilled_execute_prompt_event.py,sha256=VFPXczMrjnwXi5oEG3r_jVnK2wM-pmlclddvn5GaRwk,1248
|
82
90
|
vellum/types/fulfilled_execute_prompt_response.py,sha256=YAvwKdFuo_uT8G2LqOOjtkwu9zVYtXBYm_RsxYgIN5M,1450
|
91
|
+
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=TK8fgst0AlvtZXM1SstNvmiWlrz5yJuwI0c4S3FAE4g,1109
|
83
92
|
vellum/types/fulfilled_function_call.py,sha256=fZrTh53XN3dO5bvdtVWGtQ91VgLPKzeMY-b-Z53-uKo,1012
|
84
93
|
vellum/types/fulfilled_prompt_execution_meta.py,sha256=FDCQoqisV2SzUVD_Yw0lMv9tM7gW_6wHTbobUBz9Jwk,1145
|
85
94
|
vellum/types/function_call.py,sha256=-eKu1NTK3WevQDZVVwaMzYkctl8KErZq9bh1qOxc4MA,770
|
@@ -106,6 +115,7 @@ vellum/types/indexing_state_enum.py,sha256=uzSb7J75Ge0vxH_WQ2WHKQbZIjvfluyZ2Ijqy
|
|
106
115
|
vellum/types/initiated_enum.py,sha256=WitSWqhr_zFsxu2mxpl3lTVKYJApUT0YrVLSAK6ZJGY,146
|
107
116
|
vellum/types/initiated_execute_prompt_event.py,sha256=MJFmfVzldEDwnnM_RW0gOsEuN1pUzBcyWPzCqfBUAic,1147
|
108
117
|
vellum/types/initiated_prompt_execution_meta.py,sha256=ZVno9in1xXbxsOg7WuJmnIWdB6yVHfGI-8hUqMhWLeo,1173
|
118
|
+
vellum/types/json_enum.py,sha256=H2EVEuwMW8VUcLhN3fRxbH15yre0hIvZ0eI3A78E7lY,136
|
109
119
|
vellum/types/json_input_request.py,sha256=9eUhL2wKld-1T7DPoisa61IIBqQXFrydxaX_kGRtElQ,1057
|
110
120
|
vellum/types/json_variable_value.py,sha256=khIv0GUMx3sTl2Y8LtRe3PAFWRYXejThDBYMolVbA6Y,917
|
111
121
|
vellum/types/logical_operator.py,sha256=kS7lccMbnTqBzcpJQz_vP100yoG4DE2npIjoQud_GAk,4282
|
@@ -135,6 +145,8 @@ vellum/types/node_input_compiled_string_value.py,sha256=lrOr8WhK5wZrsUb1-7bYQ7M2
|
|
135
145
|
vellum/types/node_input_variable_compiled_value.py,sha256=6PhquhSskdpslUfbS0roxl8H2iQC_WLOGy3IagsZLQs,2381
|
136
146
|
vellum/types/normalized_log_probs.py,sha256=XhiqVdoFYWbVhYWinsiDzkIRSs1t2DCMEX18EwK-c24,1013
|
137
147
|
vellum/types/normalized_token_log_probs.py,sha256=ZIEr6evXULAv5GFhkekr1Qc6QsJjr2vsTdumMooO4oc,1014
|
148
|
+
vellum/types/number_enum.py,sha256=NBfcHwHjWrS5-SSV82JsoX7EW-SU9yKcHHYAemRt_Gs,140
|
149
|
+
vellum/types/number_variable_value.py,sha256=fKWlCu-Roel4CYQ7go_cPok0bvTEbU6JOaReymrUjSU,896
|
138
150
|
vellum/types/paginated_slim_deployment_read_list.py,sha256=MeOByJstYNcBpqfnsmZ7NIOMilo5DerIALc01FNrU0Q,1087
|
139
151
|
vellum/types/paginated_slim_document_list.py,sha256=rfm_k539tWn6jVBjtgUG1M0AqtPvxtwPXwBJLPBiE6Q,1062
|
140
152
|
vellum/types/paginated_slim_workflow_deployment_list.py,sha256=HSnI0CeB7-gJuCkjCvFZVE2Om00OYCTOs4I5Rzaudm8,1103
|
@@ -167,6 +179,7 @@ vellum/types/registered_prompt_sandbox_snapshot.py,sha256=Dv4sY70rvdLtyKi8oN2mWw
|
|
167
179
|
vellum/types/rejected_enum.py,sha256=FKiuB_gp3EQ5caugx-eiFwRO6iv5lVDS_JBUjPTeRhQ,144
|
168
180
|
vellum/types/rejected_execute_prompt_event.py,sha256=56LDUfgEkDEkaqtloD4Yg6CUQci69KJYoYWj-zr5d1M,1172
|
169
181
|
vellum/types/rejected_execute_prompt_response.py,sha256=JOf1cYJ3TVR8aWLuL1R-sj7DFYi2igaOs0yaPmc2-Aw,1410
|
182
|
+
vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=b7nicyHuhAOc5R_KrWAkRZ30BHAEddgSTMTihjXobx8,1123
|
170
183
|
vellum/types/rejected_function_call.py,sha256=c14z0BPFs48ifoccraOShFaQDz6D6g2kpktJs1TE39E,1051
|
171
184
|
vellum/types/rejected_prompt_execution_meta.py,sha256=rJsnrz0E0W6Mkq9gBLN4c3sXrr1Mg14feUtj4bKZgvY,1144
|
172
185
|
vellum/types/sandbox_metric_input_params.py,sha256=WPrqAWggrSvu9syP2Fk4SGj08YvV55oF9dD6Cb40gjE,961
|
@@ -174,7 +187,7 @@ vellum/types/sandbox_metric_input_params_request.py,sha256=UbTt4QimyaoYjzhWNggpF
|
|
174
187
|
vellum/types/sandbox_scenario.py,sha256=mGidLY1jAdw7BSMbeXTc-PtiZLSQS4peOiJmxL8YxqQ,1214
|
175
188
|
vellum/types/scenario_input.py,sha256=a1OMFt1RxJMNYoJ9PclhJof_IBuJE6B4fb6kPdIuLTg,1108
|
176
189
|
vellum/types/scenario_input_request.py,sha256=kXki5ENoCHDSajT5pcL_NRi4urAtZvg5d2-B7zHDIsY,1137
|
177
|
-
vellum/types/scenario_input_type_enum.py,sha256=
|
190
|
+
vellum/types/scenario_input_type_enum.py,sha256=S16TuGQ_Ifge1QLKem_ZlHSsqr3_lfLGZpEAj2IYrQk,580
|
178
191
|
vellum/types/search_error_response.py,sha256=-hA3qCNDHfoYjV1bir68iZ7VBezvc7pOAymFeVcP4Gc,948
|
179
192
|
vellum/types/search_filters_request.py,sha256=1SgO5C3te2J2Pz5PC0jBCOTELjHT04i4FH29UFyaFqo,1221
|
180
193
|
vellum/types/search_node_result.py,sha256=402QVgWh7BLaz27m8uU94oEdydJRVCm_zQvmpJEBH1s,948
|
@@ -186,6 +199,8 @@ vellum/types/search_result_document.py,sha256=pg7iwRzRPtlv4E2S7HcPaYfnu5myot3Spx
|
|
186
199
|
vellum/types/search_result_document_request.py,sha256=MeleItFXTTvx45hPmI4mhKdQSVmHesUndTAKAtaME7c,1357
|
187
200
|
vellum/types/search_result_merging_request.py,sha256=lLgp8q1WwvdUJcR1YWpLRjmZ3SgYZj2-Bbg450xWxDg,970
|
188
201
|
vellum/types/search_result_request.py,sha256=SMjICHnxr3l8-KCe7ftWMZiKPdlvdMAPZd4zRXNxpQ8,1335
|
202
|
+
vellum/types/search_results_enum.py,sha256=Duyq99BLaCcFw_-VOpHff-tP8QSFP-FfzLRN81Avgjw,155
|
203
|
+
vellum/types/search_results_variable_value.py,sha256=vyVdzPmriQPVvQu52CM7z8LZup3tFh5dl5BFnarPMI8,963
|
189
204
|
vellum/types/search_weights_request.py,sha256=guPgN3N0b5Mg0sIpw8ts80iBOT_nUsRNZqjDMKJIphI,1117
|
190
205
|
vellum/types/slim_deployment_read.py,sha256=80-xQdAlZaIwqg_QB6FWRDNGRmXTeHkK8-SHGCJOLFs,1811
|
191
206
|
vellum/types/slim_document.py,sha256=AcFFqAHpE067rn3j4x0qQt6Y2yN5La-pPPLB3s6QfD8,3074
|
@@ -229,6 +244,7 @@ vellum/types/test_case_variable_value.py,sha256=Bxd_4a5qFilAaF5ZV04ytX9-bDFlLsYB
|
|
229
244
|
vellum/types/test_suite_test_case.py,sha256=X0ofIlD4wL7zgybJFptuUqpCGjIyS916fch5PAmaF3U,1092
|
230
245
|
vellum/types/upload_document_error_response.py,sha256=j2NahdS7jnklF9sGIaw7SbDEa3QhnzsDG3mG6prbGSQ,886
|
231
246
|
vellum/types/upload_document_response.py,sha256=6SY4OqEHIg_EUgOwU2rSdWeNDQULUt2LZv6zN-QCJ7Y,956
|
247
|
+
vellum/types/variable_value.py,sha256=xNwfsAb9IdmiRG6iJ-gC8yRUnkEGhbKwVP4UAFbmTvg,2645
|
232
248
|
vellum/types/vellum_error.py,sha256=rO2oP5qbRRpk17X5D-Gf8Ea2oSkqkZpp7n71Dz-Qivw,957
|
233
249
|
vellum/types/vellum_error_code_enum.py,sha256=X7aUaKZR1jiYnaa9OxPu-bze3Tua31Gh22HJAxw6fyI,969
|
234
250
|
vellum/types/vellum_error_request.py,sha256=kMDn9F-Cg4IWQeaX_nCdvadu7JlaIvtf6Rmm3tdVkD0,964
|
@@ -247,12 +263,22 @@ vellum/types/workflow_execution_workflow_result_event.py,sha256=vf4iqhXjSF8gNZol
|
|
247
263
|
vellum/types/workflow_node_result_data.py,sha256=PRa9r7LZzZULEVI56Pj2JFZ8eAxiYO7lMeNRB6T3Lbs,2384
|
248
264
|
vellum/types/workflow_node_result_event.py,sha256=rowQ3ZzdFVm2KWHS4U0NjYy-wNOTUXYpYx1Zr1IYbgM,1441
|
249
265
|
vellum/types/workflow_node_result_event_state.py,sha256=PwWxuO6cqCPQOoH1woYEahxr3za7yEr2YiS0zuICj4I,1035
|
266
|
+
vellum/types/workflow_output.py,sha256=yecXfJ9AlP6zKv4aSpoe1nIekpj2iYeFpuernwDu1lU,2934
|
267
|
+
vellum/types/workflow_output_array.py,sha256=8DdFH_j6TXPQ2abFeH8sdyrxY-UTkFZZKk3aEIH-YX4,1114
|
268
|
+
vellum/types/workflow_output_chat_history.py,sha256=--RXF39zD7Ywtk8GQ5zJWY5L6uLIaObZjswrrRTRX2A,1116
|
269
|
+
vellum/types/workflow_output_error.py,sha256=hZEh0Xi2_MuHhfDsl6jRTAvH7-ptqtpTB_rtv2FzWBY,1091
|
270
|
+
vellum/types/workflow_output_function_call.py,sha256=wFzWd38erYxy9f-bmVyQbSUNnxsOfAskLmtmYnf32FY,1108
|
271
|
+
vellum/types/workflow_output_image.py,sha256=xxJhMJLwL9ZeBIqBpwxQyWEkJ5i8ZqiHQmC-4SwbAsw,1091
|
272
|
+
vellum/types/workflow_output_json.py,sha256=3jqhAl2siI2UIWlNa_08Vd0joioJQ5JxikLRbfN_ARU,1067
|
273
|
+
vellum/types/workflow_output_number.py,sha256=8zoGZLnmF1dmO48puGxJWw7T0XQp3EFHj8c5GWj4TXo,1048
|
274
|
+
vellum/types/workflow_output_search_results.py,sha256=6F1iLjcNWbw50PrKnci-JygXYGPlTkGwhU6qqMKZGCs,1123
|
275
|
+
vellum/types/workflow_output_string.py,sha256=WzualuRO4-P9Byg2YbX7icXNRkOirVNbJQ-VHY6M62w,1046
|
250
276
|
vellum/types/workflow_request_chat_history_input_request.py,sha256=qnbW2l-3k0AgwKNDAam29pvYmMGMn0V4aTXSR2YlXuQ,1072
|
251
277
|
vellum/types/workflow_request_input_request.py,sha256=ZYmEH0-gRMGcMSSKDD2aBtfDjwMU_m4hmt17NPZ7uQA,1666
|
252
278
|
vellum/types/workflow_request_json_input_request.py,sha256=VbcQsnTp4myLN_wRSmkxMJILaDgaPjZQKovNTpkp1Is,1009
|
253
279
|
vellum/types/workflow_request_number_input_request.py,sha256=E7d2_QE-o1vv_VVfR6CFEGiGLYxrMdkZ7d3sZUN-6cU,988
|
254
280
|
vellum/types/workflow_request_string_input_request.py,sha256=L1Zl1_K7Tlqjaz5pJfb8Q4GG2BVKWJzw2Wos6IEJpxM,986
|
255
|
-
vellum/types/workflow_result_event.py,sha256=
|
281
|
+
vellum/types/workflow_result_event.py,sha256=5-HN3_dqTgEiKPnXoxCdzv1C3P9ZP1qL7Y_gDeh9k9w,1347
|
256
282
|
vellum/types/workflow_result_event_output_data.py,sha256=WugPeifmg-x5Ef6hFZ6L3gQC68_e57Q-xThlcWEBhlA,2500
|
257
283
|
vellum/types/workflow_result_event_output_data_chat_history.py,sha256=g-pnQ0q_z_2sAi6YqK6ZkxiJsEHmNcDb9i-UNxvL9JY,1318
|
258
284
|
vellum/types/workflow_result_event_output_data_error.py,sha256=YXW7hOIwEtaRsCPbNcf-FlogY-gmbd2aklhGsCb73vg,1299
|
@@ -261,7 +287,7 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=zWtQor27iaDDHmY5
|
|
261
287
|
vellum/types/workflow_result_event_output_data_search_results.py,sha256=frCaJ5kWrIqCeV-waBNfd7rO4fqWe5aYpSI8PM4-oRw,1323
|
262
288
|
vellum/types/workflow_result_event_output_data_string.py,sha256=TByZxyQh9ci4UIdEmoEi_JK1U_JwYCnVZeB_4kGuXKM,1405
|
263
289
|
vellum/types/workflow_stream_event.py,sha256=OQUSzwoM-OCfWxNzeOVVLsjCue_WWqin3tGMtwvp_rc,873
|
264
|
-
vellum_ai-0.2.
|
265
|
-
vellum_ai-0.2.
|
266
|
-
vellum_ai-0.2.
|
267
|
-
vellum_ai-0.2.
|
290
|
+
vellum_ai-0.2.1.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
291
|
+
vellum_ai-0.2.1.dist-info/METADATA,sha256=_Iqn5QSLiiX1jFjGIdtAI4gGFGez-Kw_-Mbpft5zwp4,3486
|
292
|
+
vellum_ai-0.2.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
293
|
+
vellum_ai-0.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|