vellum-ai 0.8.14__py3-none-any.whl → 0.8.15__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 +18 -0
- vellum/core/client_wrapper.py +1 -1
- vellum/types/__init__.py +18 -0
- vellum/types/array_variable_value.py +27 -0
- vellum/types/array_variable_value_item.py +9 -0
- vellum/types/array_vellum_value.py +31 -0
- vellum/types/array_vellum_value_item.py +15 -1
- vellum/types/array_vellum_value_item_request.py +9 -0
- vellum/types/array_vellum_value_request.py +31 -0
- vellum/types/chat_history_variable_value.py +21 -0
- vellum/types/chat_history_vellum_value.py +25 -0
- vellum/types/chat_history_vellum_value_request.py +25 -0
- vellum/types/code_execution_node_array_result.py +6 -0
- vellum/types/code_execution_node_result.py +6 -0
- vellum/types/code_execution_node_result_data.py +6 -0
- vellum/types/create_test_suite_test_case_request.py +6 -0
- vellum/types/execute_workflow_response.py +6 -0
- vellum/types/execution_array_vellum_value.py +6 -0
- vellum/types/external_test_case_execution.py +6 -0
- vellum/types/external_test_case_execution_request.py +6 -0
- vellum/types/fulfilled_execute_workflow_workflow_result_event.py +8 -0
- vellum/types/fulfilled_workflow_node_result_event.py +8 -0
- vellum/types/initiated_workflow_node_result_event.py +6 -0
- vellum/types/named_test_case_array_variable_value.py +6 -0
- vellum/types/named_test_case_array_variable_value_request.py +8 -0
- vellum/types/node_input_compiled_array_value.py +6 -0
- vellum/types/node_output_compiled_array_value.py +6 -0
- vellum/types/paginated_test_suite_run_execution_list.py +6 -0
- vellum/types/paginated_test_suite_test_case_list.py +6 -0
- vellum/types/rejected_workflow_node_result_event.py +6 -0
- vellum/types/replace_test_suite_test_case_request.py +6 -0
- vellum/types/search_results_variable_value.py +21 -0
- vellum/types/search_results_vellum_value.py +25 -0
- vellum/types/search_results_vellum_value_request.py +25 -0
- vellum/types/streaming_workflow_node_result_event.py +8 -0
- vellum/types/templating_node_array_result.py +6 -0
- vellum/types/templating_node_result.py +6 -0
- vellum/types/templating_node_result_data.py +6 -0
- vellum/types/terminal_node_array_result.py +6 -0
- vellum/types/terminal_node_result.py +6 -0
- vellum/types/terminal_node_result_data.py +6 -0
- vellum/types/test_case_array_variable_value.py +6 -0
- vellum/types/test_suite_run_execution.py +6 -0
- vellum/types/test_suite_run_execution_array_output.py +6 -0
- vellum/types/test_suite_run_external_exec_config.py +6 -0
- vellum/types/test_suite_run_external_exec_config_data.py +6 -0
- vellum/types/test_suite_run_external_exec_config_data_request.py +8 -0
- vellum/types/test_suite_run_external_exec_config_request.py +8 -0
- vellum/types/test_suite_run_read.py +6 -0
- vellum/types/test_suite_test_case.py +6 -0
- vellum/types/test_suite_test_case_create_bulk_operation_request.py +8 -0
- vellum/types/test_suite_test_case_replace_bulk_operation_request.py +8 -0
- vellum/types/test_suite_test_case_upsert_bulk_operation_request.py +8 -0
- vellum/types/upsert_test_suite_test_case_request.py +6 -0
- vellum/types/workflow_execution_node_result_event.py +8 -0
- vellum/types/workflow_execution_workflow_result_event.py +8 -0
- vellum/types/workflow_output_array.py +6 -0
- vellum/types/workflow_result_event.py +8 -0
- vellum/types/workflow_result_event_output_data_array.py +6 -0
- {vellum_ai-0.8.14.dist-info → vellum_ai-0.8.15.dist-info}/METADATA +1 -1
- {vellum_ai-0.8.14.dist-info → vellum_ai-0.8.15.dist-info}/RECORD +63 -54
- {vellum_ai-0.8.14.dist-info → vellum_ai-0.8.15.dist-info}/LICENSE +0 -0
- {vellum_ai-0.8.14.dist-info → vellum_ai-0.8.15.dist-info}/WHEEL +0 -0
@@ -1,10 +1,13 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
+
from __future__ import annotations
|
3
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
+
from .array_vellum_value_request import ArrayVellumValueRequest
|
4
6
|
import typing
|
5
7
|
import pydantic
|
6
8
|
from .named_test_case_variable_value_request import NamedTestCaseVariableValueRequest
|
7
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
10
|
+
from ..core.pydantic_utilities import update_forward_refs
|
8
11
|
|
9
12
|
|
10
13
|
class UpsertTestSuiteTestCaseRequest(UniversalBaseModel):
|
@@ -41,3 +44,6 @@ class UpsertTestSuiteTestCaseRequest(UniversalBaseModel):
|
|
41
44
|
frozen = True
|
42
45
|
smart_union = True
|
43
46
|
extra = pydantic.Extra.allow
|
47
|
+
|
48
|
+
|
49
|
+
update_forward_refs(ArrayVellumValueRequest, UpsertTestSuiteTestCaseRequest=UpsertTestSuiteTestCaseRequest)
|
@@ -1,10 +1,14 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
+
from __future__ import annotations
|
3
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
+
from .array_variable_value import ArrayVariableValue
|
6
|
+
from .array_vellum_value import ArrayVellumValue
|
4
7
|
import typing
|
5
8
|
from .workflow_node_result_event import WorkflowNodeResultEvent
|
6
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
7
10
|
import pydantic
|
11
|
+
from ..core.pydantic_utilities import update_forward_refs
|
8
12
|
|
9
13
|
|
10
14
|
class WorkflowExecutionNodeResultEvent(UniversalBaseModel):
|
@@ -26,3 +30,7 @@ class WorkflowExecutionNodeResultEvent(UniversalBaseModel):
|
|
26
30
|
frozen = True
|
27
31
|
smart_union = True
|
28
32
|
extra = pydantic.Extra.allow
|
33
|
+
|
34
|
+
|
35
|
+
update_forward_refs(ArrayVariableValue, WorkflowExecutionNodeResultEvent=WorkflowExecutionNodeResultEvent)
|
36
|
+
update_forward_refs(ArrayVellumValue, WorkflowExecutionNodeResultEvent=WorkflowExecutionNodeResultEvent)
|
@@ -1,10 +1,14 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
+
from __future__ import annotations
|
3
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
+
from .array_variable_value import ArrayVariableValue
|
6
|
+
from .array_vellum_value import ArrayVellumValue
|
4
7
|
import typing
|
5
8
|
from .workflow_result_event import WorkflowResultEvent
|
6
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
7
10
|
import pydantic
|
11
|
+
from ..core.pydantic_utilities import update_forward_refs
|
8
12
|
|
9
13
|
|
10
14
|
class WorkflowExecutionWorkflowResultEvent(UniversalBaseModel):
|
@@ -26,3 +30,7 @@ class WorkflowExecutionWorkflowResultEvent(UniversalBaseModel):
|
|
26
30
|
frozen = True
|
27
31
|
smart_union = True
|
28
32
|
extra = pydantic.Extra.allow
|
33
|
+
|
34
|
+
|
35
|
+
update_forward_refs(ArrayVariableValue, WorkflowExecutionWorkflowResultEvent=WorkflowExecutionWorkflowResultEvent)
|
36
|
+
update_forward_refs(ArrayVellumValue, WorkflowExecutionWorkflowResultEvent=WorkflowExecutionWorkflowResultEvent)
|
@@ -1,10 +1,13 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
+
from __future__ import annotations
|
3
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
4
6
|
import pydantic
|
5
7
|
import typing
|
6
8
|
from .array_vellum_value_item import ArrayVellumValueItem
|
7
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
10
|
+
from ..core.pydantic_utilities import update_forward_refs
|
8
11
|
|
9
12
|
|
10
13
|
class WorkflowOutputArray(UniversalBaseModel):
|
@@ -29,3 +32,6 @@ class WorkflowOutputArray(UniversalBaseModel):
|
|
29
32
|
frozen = True
|
30
33
|
smart_union = True
|
31
34
|
extra = pydantic.Extra.allow
|
35
|
+
|
36
|
+
|
37
|
+
update_forward_refs(ArrayVellumValue, WorkflowOutputArray=WorkflowOutputArray)
|
@@ -1,6 +1,9 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
+
from __future__ import annotations
|
3
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
+
from .array_variable_value import ArrayVariableValue
|
6
|
+
from .array_vellum_value import ArrayVellumValue
|
4
7
|
from .workflow_node_result_event_state import WorkflowNodeResultEventState
|
5
8
|
import datetime as dt
|
6
9
|
import typing
|
@@ -10,6 +13,7 @@ from .workflow_output import WorkflowOutput
|
|
10
13
|
from .execution_vellum_value import ExecutionVellumValue
|
11
14
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
12
15
|
import pydantic
|
16
|
+
from ..core.pydantic_utilities import update_forward_refs
|
13
17
|
|
14
18
|
|
15
19
|
class WorkflowResultEvent(UniversalBaseModel):
|
@@ -29,3 +33,7 @@ class WorkflowResultEvent(UniversalBaseModel):
|
|
29
33
|
frozen = True
|
30
34
|
smart_union = True
|
31
35
|
extra = pydantic.Extra.allow
|
36
|
+
|
37
|
+
|
38
|
+
update_forward_refs(ArrayVariableValue, WorkflowResultEvent=WorkflowResultEvent)
|
39
|
+
update_forward_refs(ArrayVellumValue, WorkflowResultEvent=WorkflowResultEvent)
|
@@ -1,11 +1,14 @@
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
2
2
|
|
3
|
+
from __future__ import annotations
|
3
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
+
from .array_variable_value import ArrayVariableValue
|
4
6
|
import typing
|
5
7
|
from .workflow_node_result_event_state import WorkflowNodeResultEventState
|
6
8
|
import pydantic
|
7
9
|
from .array_variable_value_item import ArrayVariableValueItem
|
8
10
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
11
|
+
from ..core.pydantic_utilities import update_forward_refs
|
9
12
|
|
10
13
|
|
11
14
|
class WorkflowResultEventOutputDataArray(UniversalBaseModel):
|
@@ -33,3 +36,6 @@ class WorkflowResultEventOutputDataArray(UniversalBaseModel):
|
|
33
36
|
frozen = True
|
34
37
|
smart_union = True
|
35
38
|
extra = pydantic.Extra.allow
|
39
|
+
|
40
|
+
|
41
|
+
update_forward_refs(ArrayVariableValue, WorkflowResultEventOutputDataArray=WorkflowResultEventOutputDataArray)
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=lbUhjH2L_tzm-0Vaouz3lHOKIUoLcRKN5dgCbl64AMs,30700
|
2
2
|
vellum/client.py,sha256=n9AlNDHYObmRUM5hX_iiFj6eYDzjIca3cdKVGuRjUSA,106566
|
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=5cp-Shdvhv1MbpnOvEf34m-qFfTSvDqGbqWjfV1llRk,1898
|
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=7scAV2vhOSQ3MqAoGBfEGZ5lZ5GOU65KdWdP0u9VR4A,18978
|
@@ -66,7 +66,7 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
|
|
66
66
|
vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
|
67
67
|
vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
68
68
|
vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
|
69
|
-
vellum/types/__init__.py,sha256=
|
69
|
+
vellum/types/__init__.py,sha256=KElHI6efKADf3gYpMQ-f6R3qmeFpQknKQx3dD_TOA1I,46921
|
70
70
|
vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
|
71
71
|
vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
|
72
72
|
vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
|
@@ -80,9 +80,12 @@ vellum/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx
|
|
80
80
|
vellum/types/array_chat_message_content_item.py,sha256=XyWDIqVeWoqLzUIvZO_qj_-iwCr6SBcvQJoVxKAjmDs,421
|
81
81
|
vellum/types/array_chat_message_content_item_request.py,sha256=AUFfh6CQfrD4MdwpS3KhGpalaYpEj_hAlF_lePDDdbU,494
|
82
82
|
vellum/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
|
83
|
-
vellum/types/
|
84
|
-
vellum/types/
|
85
|
-
vellum/types/
|
83
|
+
vellum/types/array_variable_value.py,sha256=_BQX5Kk1OLJaAyk3CPgsIgiLR_FI2pvbe5Ne8q9gsqY,876
|
84
|
+
vellum/types/array_variable_value_item.py,sha256=UeEoHg9zOjYi9MPez8CAeZuRQy5RSu3KEiEyF-t2Nng,963
|
85
|
+
vellum/types/array_vellum_value.py,sha256=O8XGxsYqQdW3-Kffw8JbujyaGX_yp19FyVCmBCBzJlg,944
|
86
|
+
vellum/types/array_vellum_value_item.py,sha256=nbAZImC0r2bTZvr7oBdMA5dwgcv0AeAWUZc4e7ni5Iw,907
|
87
|
+
vellum/types/array_vellum_value_item_request.py,sha256=_2VopD_uSrbjlumYAWh-x0TSZ1FyAhllppSHJr9X3mg,1112
|
88
|
+
vellum/types/array_vellum_value_request.py,sha256=-HXiU8DjRshOOim_HOU_xzEVUwjf85JR13ZEb1VCV40,980
|
86
89
|
vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
|
87
90
|
vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
|
88
91
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
|
@@ -90,6 +93,9 @@ vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1_
|
|
90
93
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1.py,sha256=n1ijP1zw-lQnxbj_ZfederNYD4LW-FGDklUOlYewxwg,911
|
91
94
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_dot_v_1_request.py,sha256=Y79jx-9QkbTzb7jSx8xF6YtbAB914u9E9uXOapk8TQc,918
|
92
95
|
vellum/types/chat_history_input_request.py,sha256=0dmWfRWN9lOGEorQ3P1jKPAQtcXVexxiU9UEoJKP_pU,882
|
96
|
+
vellum/types/chat_history_variable_value.py,sha256=pHMZQSnkfbAfVZaeiZaPVMDt1xdlVtZFL2kI7UKlipE,709
|
97
|
+
vellum/types/chat_history_vellum_value.py,sha256=_yg6qk2Jci_rjFPOd3KNkXY0AduoEX1Tk8oPzQVpBYw,763
|
98
|
+
vellum/types/chat_history_vellum_value_request.py,sha256=HzAiysncG5unJ-tlb43HhGZF8oYxN3rN7HGxG9g6Jiw,792
|
93
99
|
vellum/types/chat_message.py,sha256=EOA8v5Ebx2KS9BtwBBGbuvSK-pn4xWYZiioHuuPWvzw,916
|
94
100
|
vellum/types/chat_message_content.py,sha256=2Fd2Ek-lO3rdfAXFc1eJlwisMVQwbESAcRHFedkeF3A,501
|
95
101
|
vellum/types/chat_message_content_request.py,sha256=609nXvgmv65ZohV2B4Kh3cr30Tez69BdDidBYhiREP4,609
|
@@ -97,14 +103,14 @@ vellum/types/chat_message_prompt_block_properties_request.py,sha256=lMBVwR5hnByk
|
|
97
103
|
vellum/types/chat_message_prompt_block_request.py,sha256=osPqtdZOG9NW_Iqcv0CyvkU2cHZzPeVVIWQUGvnB-Dw,1423
|
98
104
|
vellum/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
|
99
105
|
vellum/types/chat_message_role.py,sha256=-i0Jrcbwf72MkMoaFTGyxRduvlN7f5Y9ULhCXR5KNdA,182
|
100
|
-
vellum/types/code_execution_node_array_result.py,sha256=
|
106
|
+
vellum/types/code_execution_node_array_result.py,sha256=tYvJ0DtxKbY9OXdbOaQc_O955Sl-HvXE68-7NBghTvo,993
|
101
107
|
vellum/types/code_execution_node_chat_history_result.py,sha256=Kwb_jn_xmVz214bIGPmmpplKDczMAJCMAr6RxOJA-1Q,731
|
102
108
|
vellum/types/code_execution_node_error_result.py,sha256=QlJEhZS-BKpCJc8bwG4MrsvUsTjDbY8iohYZh7--yBI,698
|
103
109
|
vellum/types/code_execution_node_function_call_result.py,sha256=_3FYGMQhSvucFHC4gu9dHBXDKz8WpkTeDQ03aoASsn4,724
|
104
110
|
vellum/types/code_execution_node_json_result.py,sha256=7FFqCR8B1fIjaRZ7Ix5fUhtAJfct_GDg7YWYAw7RUd4,656
|
105
111
|
vellum/types/code_execution_node_number_result.py,sha256=PEhYlKvzPuJAoFwsZ2MTgFIswxhyjxc3AskDg9NBVWk,657
|
106
|
-
vellum/types/code_execution_node_result.py,sha256=
|
107
|
-
vellum/types/code_execution_node_result_data.py,sha256=
|
112
|
+
vellum/types/code_execution_node_result.py,sha256=5u5poFp-E0EinRfI-IHE0Yrr3Pra3RxAujHSfviME2Y,1039
|
113
|
+
vellum/types/code_execution_node_result_data.py,sha256=HNfHjaIQouX9uI1_voP_9dfzBS-k1u2JNMQ5VrzzJ-4,967
|
108
114
|
vellum/types/code_execution_node_result_output.py,sha256=ZddnayoP01i5alC12OaoNdSgLoXr_Y4Nl343xGJvJeU,1069
|
109
115
|
vellum/types/code_execution_node_search_results_result.py,sha256=yPh94v7pgFL-4x1JPSnXXGihUi42i-OfOaNVHLN4jE8,740
|
110
116
|
vellum/types/code_execution_node_string_result.py,sha256=uH6KO57muMko4u_xISchhvP0E-VzJfhKD_rijXgisZ8,655
|
@@ -114,7 +120,7 @@ vellum/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R
|
|
114
120
|
vellum/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=FbgAsvMARYuSub2QQwFEkkbVeYwKkNmVi98nk7CxC-Q,235
|
115
121
|
vellum/types/conditional_node_result.py,sha256=vx8xo9F1KoJqOnYPtSevfOcBxKYAk8J8JGWFr1c4UO8,784
|
116
122
|
vellum/types/conditional_node_result_data.py,sha256=yk4E7KHSzmKlweI9ce9eN_iW08V70KGmG1Z0K5455T0,604
|
117
|
-
vellum/types/create_test_suite_test_case_request.py,sha256=
|
123
|
+
vellum/types/create_test_suite_test_case_request.py,sha256=SYUz7_aZMQlin_c1C0-B0W14YB0kC3cn21oPE4_64Ys,1711
|
118
124
|
vellum/types/deployment_provider_payload_response.py,sha256=b0lkt0rK88ARQaMWn9MAHeWtMBsZKofDMlOAUsQvv7g,818
|
119
125
|
vellum/types/deployment_provider_payload_response_payload.py,sha256=xHLQnWFN0AZRZdrOiKawwpoKK7BTmnZfp0P7FCc2ZqE,188
|
120
126
|
vellum/types/deployment_read.py,sha256=ygpEbwM1bB_ej5YtjOeG7hAYJJ79ISNN_C283YiVFFM,1947
|
@@ -138,9 +144,9 @@ vellum/types/error_vellum_value.py,sha256=Y7yO8Y1eOlbRyOqbOh6MyPRNHYKH48gIhlZIRc
|
|
138
144
|
vellum/types/error_vellum_value_request.py,sha256=o0aSn34dRcpnAwAfwW_sgwP7CkODGd5448w2Olg-spg,755
|
139
145
|
vellum/types/execute_prompt_event.py,sha256=wq_TZBDJcmXQhSj25jR9nMTnN-mP8Ku5Vq3rLqmwE5Q,521
|
140
146
|
vellum/types/execute_prompt_response.py,sha256=n6ODveXcO8uWG-kr_B9wXziHH8JUaVTUcUAZKifClEo,334
|
141
|
-
vellum/types/execute_workflow_response.py,sha256=
|
147
|
+
vellum/types/execute_workflow_response.py,sha256=0Q-NGPv5jpxjq6xNlHa3qUNK7yOmkU8h6Z2vQb6bHsU,1022
|
142
148
|
vellum/types/execute_workflow_workflow_result_event.py,sha256=yLO-r6-lXGA86tonDGlWwuCI9VZEITTvEB9_yoV5308,435
|
143
|
-
vellum/types/execution_array_vellum_value.py,sha256=
|
149
|
+
vellum/types/execution_array_vellum_value.py,sha256=18EVf2g3nj8MQywmL8B0422UJunPl0TJ0rmalYkGLr8,1153
|
144
150
|
vellum/types/execution_chat_history_vellum_value.py,sha256=FBDP88wZKY9hz5h6cc8Z84fIgHritVZOybnE_tx5i3A,887
|
145
151
|
vellum/types/execution_error_vellum_value.py,sha256=_1KRV9vG5x0wACKubh6O-uj9weKh3in8xvVVTATkN5w,850
|
146
152
|
vellum/types/execution_function_call_vellum_value.py,sha256=3GmqmQOxYuVFqO3m58M3Bfp-zN9ENnbTzPRFryldIY8,883
|
@@ -149,16 +155,16 @@ vellum/types/execution_number_vellum_value.py,sha256=b2TpqyafRHCdl6EhgctNgUSLU-J
|
|
149
155
|
vellum/types/execution_search_results_vellum_value.py,sha256=HkxoXaUF6pMbfXd5wLk5VKmcXed2IRfEzkxsoGpwmg0,898
|
150
156
|
vellum/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBggP7XkcdE_D2lGmEobkXWY7o,807
|
151
157
|
vellum/types/execution_vellum_value.py,sha256=PpbrbJdSioqaqT2gZ6mx2Ht0Oy8XGyxBDcLFfPqUBIA,980
|
152
|
-
vellum/types/external_test_case_execution.py,sha256=
|
153
|
-
vellum/types/external_test_case_execution_request.py,sha256=
|
158
|
+
vellum/types/external_test_case_execution.py,sha256=CzO7IM3uINXQfOHWjEVvRqwRcp5_JWWtyXVxMQGHl_c,1063
|
159
|
+
vellum/types/external_test_case_execution_request.py,sha256=5nZWMZnDPqQSmmcnIM5Cz6VxA6YQrcfmdWw7d2Da3cY,1128
|
154
160
|
vellum/types/finish_reason_enum.py,sha256=KoNjzvXMHDCT0AUhhwGoZ1_7bi4h3fZEFvvHyGyoTP8,169
|
155
161
|
vellum/types/fulfilled_ad_hoc_execute_prompt_event.py,sha256=19rFjVrzobaaAQhZlP_WGV9f_Rwrz4EPRXbT2aYkaJw,1016
|
156
162
|
vellum/types/fulfilled_enum.py,sha256=MenrGneRMBvsq-n8tkMXAx0wppGWLJgkqdKnfklGP9U,124
|
157
163
|
vellum/types/fulfilled_execute_prompt_event.py,sha256=E-iBwlMWvwQyRfzqPlgtX8KurE3IYsTRd5vWjXtbOmk,994
|
158
164
|
vellum/types/fulfilled_execute_prompt_response.py,sha256=nKhDk2ZloCuE0uijX5XOE63_cq8PBo4UWs4hK4e3jUE,1227
|
159
|
-
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=
|
165
|
+
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=kYlTOfJd9SydVSmJ8dr8pdLh7RHOwcFv5UzBYgKlyTw,1147
|
160
166
|
vellum/types/fulfilled_prompt_execution_meta.py,sha256=sMWAMqJCh8n_NBtRSM4muiAqKne_W-NCxJVzKy9Q1Ec,934
|
161
|
-
vellum/types/fulfilled_workflow_node_result_event.py,sha256=
|
167
|
+
vellum/types/fulfilled_workflow_node_result_event.py,sha256=FHRZFecdK0x1JB3cxSNc5eD1r0F_V3plHdHIFuQpvpw,1563
|
162
168
|
vellum/types/function_call.py,sha256=nXPEC3nJh8QzjCvyomfm80fyO-Aar60KBOaGfQtZ5D0,804
|
163
169
|
vellum/types/function_call_chat_message_content.py,sha256=qXbrMQeXn_CLjfDzQvv9llmae2wvpoTlUSQWdfMvf-k,831
|
164
170
|
vellum/types/function_call_chat_message_content_request.py,sha256=HVGxHs6jc4EBgW7rdJXlF8KRlugY5YHa0ujDrEQqPCo,860
|
@@ -192,7 +198,7 @@ vellum/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwF
|
|
192
198
|
vellum/types/initiated_ad_hoc_execute_prompt_event.py,sha256=B34Q2aU2vj9qpjpWXIieN839iB7t4EWCD9mmCfbkwpo,915
|
193
199
|
vellum/types/initiated_execute_prompt_event.py,sha256=tHt80ZIuKk6B85IQqSF3MQqiSSiBsSP2Aw3XuD5xk6E,893
|
194
200
|
vellum/types/initiated_prompt_execution_meta.py,sha256=pnRjcPnVRp650k0W7kfwg9f24S4vAJfQoGGdBs_aKlc,887
|
195
|
-
vellum/types/initiated_workflow_node_result_event.py,sha256=
|
201
|
+
vellum/types/initiated_workflow_node_result_event.py,sha256=0hK7FYPV6hIcvmVOjpKGSOPPrjgzenfLisAEFnLsZrw,1413
|
196
202
|
vellum/types/instructor_vectorizer_config.py,sha256=7udlosXv4CUWTW_Q9m0mz3VRi1FKSbBhDIOhtxRd0-U,731
|
197
203
|
vellum/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqEMVdr3KJHEps0oDp2bNmqWbM,738
|
198
204
|
vellum/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
|
@@ -217,8 +223,8 @@ vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=
|
|
217
223
|
vellum/types/named_scenario_input_json_variable_value_request.py,sha256=UgnKv70zFviv1kl4nM7aM7IFA-7xyDOtglW4Y3GBZ28,757
|
218
224
|
vellum/types/named_scenario_input_request.py,sha256=Pi8l377OHvKBwvPu9slZ1omf_NJ9S1mCQ5Wr-Ux5KVg,611
|
219
225
|
vellum/types/named_scenario_input_string_variable_value_request.py,sha256=4P5YjzR0Cwsnf4ir2MFX0Bs0Q3eMe_7uWVhxL1ajlVg,758
|
220
|
-
vellum/types/named_test_case_array_variable_value.py,sha256=
|
221
|
-
vellum/types/named_test_case_array_variable_value_request.py,sha256=
|
226
|
+
vellum/types/named_test_case_array_variable_value.py,sha256=BL0SX1EEebw2LzHWeljX69-uR6EzPM7ZFTptzMXnhhE,1057
|
227
|
+
vellum/types/named_test_case_array_variable_value_request.py,sha256=c7IAlUyO5GFUoVdC7LysIFOyriLTz6CVh417zMqKmRw,1128
|
222
228
|
vellum/types/named_test_case_chat_history_variable_value.py,sha256=tRN-8jKDeth_VIeWIYzSAcZIT-PeKKAUBjsUB3JbUjo,808
|
223
229
|
vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=e4yLVJJnWyba3Yl_IJ4jJMfDdK1zxj19OuwirVBloSw,837
|
224
230
|
vellum/types/named_test_case_error_variable_value.py,sha256=lEw5i9J4JK0LwSqtnefgxZ9Y9KUdy_omKUZe_goRmNo,768
|
@@ -235,7 +241,7 @@ vellum/types/named_test_case_string_variable_value.py,sha256=2xuTh35MarcDMMCy6px
|
|
235
241
|
vellum/types/named_test_case_string_variable_value_request.py,sha256=Bv7LEBEyDHtBPPWdzgvCA8DHG6n1jF4NVlEe6zYPJUs,733
|
236
242
|
vellum/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
|
237
243
|
vellum/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
|
238
|
-
vellum/types/node_input_compiled_array_value.py,sha256=
|
244
|
+
vellum/types/node_input_compiled_array_value.py,sha256=T3o1W8GuQDPbqeC8uJZ2zAEznEP2BZ9qmTaMhQ8B9Fw,1014
|
239
245
|
vellum/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
|
240
246
|
vellum/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
|
241
247
|
vellum/types/node_input_compiled_function_call.py,sha256=ElYr28oVcvhp5c35Cz9hWXFJPqtoqzlR8-Pb-pPBask,742
|
@@ -244,7 +250,7 @@ vellum/types/node_input_compiled_number_value.py,sha256=Olc4UpYsm-v7ZhlTVXsp7JVQ
|
|
244
250
|
vellum/types/node_input_compiled_search_results_value.py,sha256=A2SnHYZAt2_VsQDXL4B2CF3KYgDJeUAQ5L0RbI8flH0,763
|
245
251
|
vellum/types/node_input_compiled_string_value.py,sha256=V4HKhHW6B2iUvYqYbuwcOHTxiui3nfOe0DKOiTXshJQ,678
|
246
252
|
vellum/types/node_input_variable_compiled_value.py,sha256=Hxv8D1AM1_Gjz2s6hlyskqpWNKvazxIKFAT9tE_GeWQ,1030
|
247
|
-
vellum/types/node_output_compiled_array_value.py,sha256=
|
253
|
+
vellum/types/node_output_compiled_array_value.py,sha256=j2JB6jLk6aRyJTfH8Eagz24VNk6jkPX7PZ4QB7FsrsM,1205
|
248
254
|
vellum/types/node_output_compiled_chat_history_value.py,sha256=rAAnJ2PcXGxKusMpq2NEhJdBSRrPB9da5uN19x92Wu4,962
|
249
255
|
vellum/types/node_output_compiled_error_value.py,sha256=dkgT_h463S8AF3QHVZdvy9HGF3A2LhxuNnAQouAYQlE,922
|
250
256
|
vellum/types/node_output_compiled_function_call_value.py,sha256=Fygp5S2479B71vDmmBTjmJpp1ZfMEm3Qow2uINjNyZE,956
|
@@ -270,8 +276,8 @@ vellum/types/paginated_document_index_read_list.py,sha256=bO7pm3KCZi5LDO17YXgr_l
|
|
270
276
|
vellum/types/paginated_slim_deployment_read_list.py,sha256=rK0QPvB1fqQbwkE9VfjpgMEdouzMO50l7jQGmc1y4sU,801
|
271
277
|
vellum/types/paginated_slim_document_list.py,sha256=8f7L0ZqD9hBU4XTGTdltl0ORuyy2gryPU5UxlmPabq4,776
|
272
278
|
vellum/types/paginated_slim_workflow_deployment_list.py,sha256=tE-Xj_xQdxFXB9agB7mfsUE27_xBwyUKzDgupA_r8Og,817
|
273
|
-
vellum/types/paginated_test_suite_run_execution_list.py,sha256=
|
274
|
-
vellum/types/paginated_test_suite_test_case_list.py,sha256=
|
279
|
+
vellum/types/paginated_test_suite_run_execution_list.py,sha256=_NCKlKzs-8h0oZFhbGLO4sMt3xh9jicPqJdYu-NN-8c,1019
|
280
|
+
vellum/types/paginated_test_suite_test_case_list.py,sha256=9KrCCQKy0egMmVx5U2k6o1GjNrUYpVvGG_hm2cHqIzc,995
|
275
281
|
vellum/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
|
276
282
|
vellum/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
|
277
283
|
vellum/types/plain_text_prompt_block_request.py,sha256=ljdh2OD-xUOAhEF8raHc6WnQDnWdtEY8aSNsEiuC5nY,971
|
@@ -302,9 +308,9 @@ vellum/types/rejected_execute_prompt_event.py,sha256=Jt8lXmZrZ7FiSWAqZMguUDeZC_X
|
|
302
308
|
vellum/types/rejected_execute_prompt_response.py,sha256=YyY9KGTbJ53DmwiXHqYkuxxDIx3w560bB3R0fzqzwQk,1185
|
303
309
|
vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=6k6GRr2TnVSM0DxS3H3hczwV7962UDG92yLh6j8OjcM,882
|
304
310
|
vellum/types/rejected_prompt_execution_meta.py,sha256=4Oidh3XBBHzgjOys2kuETxqWc_MOqS50UpB0o8YNZd8,844
|
305
|
-
vellum/types/rejected_workflow_node_result_event.py,sha256=
|
311
|
+
vellum/types/rejected_workflow_node_result_event.py,sha256=svqM9A7yJc0LOyjVg9TY632av9N1VBkCacnIh0AEt3Y,1325
|
306
312
|
vellum/types/release_tag_source.py,sha256=YavosOXZ976yfXTNWRTZwh2HhRiYmSDk0bQCkl-jCoQ,158
|
307
|
-
vellum/types/replace_test_suite_test_case_request.py,sha256=
|
313
|
+
vellum/types/replace_test_suite_test_case_request.py,sha256=c1GT1RUCei1yWxyZy4Gv40PkXYisvK5OkzlqQ6WeBYA,1906
|
308
314
|
vellum/types/rich_text_child_block_request.py,sha256=Uggxf_xIIIu8x1LlR8uJdmr6_drFL0izWhVr6b5TxqQ,321
|
309
315
|
vellum/types/rich_text_prompt_block_request.py,sha256=aIGx84vK5HZ48ZGb0m1k6BUBgb8xHZXX7OSfLpTVGBw,1099
|
310
316
|
vellum/types/sandbox_scenario.py,sha256=f4S0tDxmPYHIrD_BMjRL3XZGcGxlWy9apfI64hV7MBE,844
|
@@ -324,6 +330,9 @@ vellum/types/search_result_merging_request.py,sha256=YiAgNuwvrpjwJBVS5_F6-UHmOLO
|
|
324
330
|
vellum/types/search_result_meta.py,sha256=A8xNQbxbkwgT_VbHLPXgMYPAmwuHC6BZG0o7Dy7W8_k,729
|
325
331
|
vellum/types/search_result_meta_request.py,sha256=e0Mg1XAdqGtBFJ9zj8YYLfctZLP2d2AQr3GGjtXQBfY,758
|
326
332
|
vellum/types/search_result_request.py,sha256=cfKvzUCes4TxH757bu1D8ieM3nuW6A4yu1J00tAjhDQ,1245
|
333
|
+
vellum/types/search_results_variable_value.py,sha256=zUnHDpyT_OgC9ZQkmeUUn_oYaDxK8z-ztURkHqG8i_8,718
|
334
|
+
vellum/types/search_results_vellum_value.py,sha256=i_7d5cANsjuFSRwI3qUgzNdz6ZyrhakuxP4lMQeUFu4,774
|
335
|
+
vellum/types/search_results_vellum_value_request.py,sha256=Y36g5iLmweV4k_UiTDI9gSXf9Pn_aCwho0Z7dUNiVZU,803
|
327
336
|
vellum/types/search_weights_request.py,sha256=7YdTanQ82sDztyOwZGh6Iu9HJaTiAX3QnfxDQZJUzyE,828
|
328
337
|
vellum/types/sentence_chunker_config.py,sha256=is3t8niS19gjRtqewSkLYpskJCbRloCZ78Kfe7zs3vE,709
|
329
338
|
vellum/types/sentence_chunker_config_request.py,sha256=EpGTP4z3YttiThYmdjwIBOI5YfsOlNP17dI9yiYqi3I,716
|
@@ -335,7 +344,7 @@ vellum/types/slim_workflow_deployment.py,sha256=RAEjA0Ew1y1AC7-N2wNS1EFYZuUiOn0Q
|
|
335
344
|
vellum/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
|
336
345
|
vellum/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
|
337
346
|
vellum/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQDe2n7YVLqxbhOaf6Ytc,736
|
338
|
-
vellum/types/streaming_workflow_node_result_event.py,sha256=
|
347
|
+
vellum/types/streaming_workflow_node_result_event.py,sha256=qlVlVirDOp0Yre-Htp98ZDBzYy2iS7ulnRQCbZPsJ7s,1573
|
339
348
|
vellum/types/string_chat_message_content.py,sha256=6ZVl5cofQXFV2RlEJvVdWWYa9WVe172DPOZ-Uk82lDM,682
|
340
349
|
vellum/types/string_chat_message_content_request.py,sha256=qFB_JJvI4FgbW7bB60tyGChWDNINnHqa7hW13rlOvak,689
|
341
350
|
vellum/types/string_input_request.py,sha256=XC2gFAa93kB8yOv_OsTte1yLMfed4cpnQeNIyxjPYhU,775
|
@@ -346,29 +355,29 @@ vellum/types/submit_completion_actual_request.py,sha256=hMWNAGUc54I44kDFKFSXdXTx
|
|
346
355
|
vellum/types/submit_workflow_execution_actual_request.py,sha256=xRCiA1QvQBD0lbZfBZUSZnm_XNOj17jyXXmppztQEB8,535
|
347
356
|
vellum/types/subworkflow_node_result.py,sha256=a2N7E6OSVxH1fQB24j96a6qucw1DgCz7w_hChENNV9A,808
|
348
357
|
vellum/types/subworkflow_node_result_data.py,sha256=np3Wnc5pmnehtMLfJZVz3bozYJN752vf9VERs9rIuqA,600
|
349
|
-
vellum/types/templating_node_array_result.py,sha256=
|
358
|
+
vellum/types/templating_node_array_result.py,sha256=bK8o-X1DlUq6SQrFNSQTBYabhFk49nj_TqaF5SoMs_E,984
|
350
359
|
vellum/types/templating_node_chat_history_result.py,sha256=RhEeDRtvWOPlLPsSuz3lAA3m8EqmdhB8sI_pwXuPgGg,728
|
351
360
|
vellum/types/templating_node_error_result.py,sha256=A9CkVXU0YUYko0epKmZlIHPwvFNfmLuM3iwduH0OhNU,695
|
352
361
|
vellum/types/templating_node_function_call_result.py,sha256=bJDLDS_N_dzf7w7wfUUaePg0N6_6amaJ8GrtDey8Kvw,721
|
353
362
|
vellum/types/templating_node_json_result.py,sha256=ShHCYLxdf4mO_XYH4GEmdNY2S1RaruGLJGYkP2Td398,653
|
354
363
|
vellum/types/templating_node_number_result.py,sha256=LLlRuHVbhNb4FHbsbClfYHJb083l20UTE-TVrmbhR1U,654
|
355
|
-
vellum/types/templating_node_result.py,sha256=
|
356
|
-
vellum/types/templating_node_result_data.py,sha256=
|
364
|
+
vellum/types/templating_node_result.py,sha256=zOpZCnyEr6VUR3NeYoD7tJxpVlj8kY61PjmUXPWAnp0,1008
|
365
|
+
vellum/types/templating_node_result_data.py,sha256=Se2XOnKH-yNK8133i5bW403552ZTSDaRlHB6QvlJVh4,901
|
357
366
|
vellum/types/templating_node_result_output.py,sha256=f94nwW79EAAjHKpL70Vc_N2DRq-FC4993g1X79V5Q7M,986
|
358
367
|
vellum/types/templating_node_search_results_result.py,sha256=LRChfWy1btVEuz8AX6x6x_s0o4uKKokc-R3O7kHGr5Q,737
|
359
368
|
vellum/types/templating_node_string_result.py,sha256=b3BOuBwqhYMJHvsfVwtYaFSeau7R4XkyJ6gG37J0x7M,652
|
360
|
-
vellum/types/terminal_node_array_result.py,sha256=
|
369
|
+
vellum/types/terminal_node_array_result.py,sha256=u-FVeO8ef2XNfWzFfz9dWBK82n8YH0ni7UG5GGuJuGI,1126
|
361
370
|
vellum/types/terminal_node_chat_history_result.py,sha256=YGywmDryELuzeLYi6p59pQoCNoPekA6bhSF0sYFAsw0,874
|
362
371
|
vellum/types/terminal_node_error_result.py,sha256=qwhunjngnumpeNoqxnVEbvFoXAyX-CXQ_MusOwOeNv0,841
|
363
372
|
vellum/types/terminal_node_function_call_result.py,sha256=-9tPhggVBQ9wvCHehZl1-L9G7oxrfDdR9aU8TFxowTo,867
|
364
373
|
vellum/types/terminal_node_json_result.py,sha256=vCTnr-xZvBxRmByAiwA8Y0MviNSZ6xQrCM3qSRRisuQ,799
|
365
374
|
vellum/types/terminal_node_number_result.py,sha256=ob2sOXeIjMl0pVdHW9niDzDclhpuAMBYCKY-ow7jXdU,800
|
366
|
-
vellum/types/terminal_node_result.py,sha256=
|
367
|
-
vellum/types/terminal_node_result_data.py,sha256=
|
375
|
+
vellum/types/terminal_node_result.py,sha256=53db4D-a6jhMZp7ucawxNpYrjh6f4RtIL-Indpm04Z8,990
|
376
|
+
vellum/types/terminal_node_result_data.py,sha256=hCsU0tcBB67cOxHc1aOtsHc1a4NwBzTn4uNlm42o_Lw,889
|
368
377
|
vellum/types/terminal_node_result_output.py,sha256=2LdIf_ysHPIjKM1z4urMbAJTJdyPPnxa7L9Ty2Gx6ak,936
|
369
378
|
vellum/types/terminal_node_search_results_result.py,sha256=rX_ftp_C7hez_xjPRZm8yJuwMFoM6jsTDfPAseYmzFc,883
|
370
379
|
vellum/types/terminal_node_string_result.py,sha256=CW_nl-fI4YwhCm3YEO_cQW9mjG6rNZo5L-Ic4v1iAMo,798
|
371
|
-
vellum/types/test_case_array_variable_value.py,sha256=
|
380
|
+
vellum/types/test_case_array_variable_value.py,sha256=MvfEGItX9iJ4xmfsOyDb_wdPxBKK_AC3vu20I_xhLPc,1065
|
372
381
|
vellum/types/test_case_chat_history_variable_value.py,sha256=YNaaLEmjmQLvflknYW_21y1KfyD-rLLBjIlHQURJhXg,825
|
373
382
|
vellum/types/test_case_error_variable_value.py,sha256=he2fkOcwsRfXfC2hKT3MhzDkXctIi3cNARqhMi13bYk,786
|
374
383
|
vellum/types/test_case_function_call_variable_value.py,sha256=p7Q7jgpZVKDlanszm31E5lTLfxQmegggyto9DHVQXzI,819
|
@@ -383,8 +392,8 @@ vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,s
|
|
383
392
|
vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=fyBRNbErOr1ixYs84JbvqM9yPEH1D-LDsfGVhIgsdZ4,1192
|
384
393
|
vellum/types/test_suite_run_exec_config.py,sha256=OuaNtd6ulP_Eq1ptz_YstJs5VtBOY3-p1XANEGnVwUA,530
|
385
394
|
vellum/types/test_suite_run_exec_config_request.py,sha256=GNwGzV6SZiZWThoy4lM5JpRyegoqy3ylHjB2Kj5WOXI,612
|
386
|
-
vellum/types/test_suite_run_execution.py,sha256=
|
387
|
-
vellum/types/test_suite_run_execution_array_output.py,sha256=
|
395
|
+
vellum/types/test_suite_run_execution.py,sha256=x0tjfFMSEl5hr1ZAh9r-2m3gQCbhKNZBGu5_6ANLgiU,1091
|
396
|
+
vellum/types/test_suite_run_execution_array_output.py,sha256=5OUKF8wu1_bUVklFOg7NPsRY0E964dzSsz2QzQMXiHg,1130
|
388
397
|
vellum/types/test_suite_run_execution_chat_history_output.py,sha256=tzeWqczo04aXl-ALhfOHYEabrgOIqmG7E-nA5-l3dME,879
|
389
398
|
vellum/types/test_suite_run_execution_error_output.py,sha256=6UXaVzWivUTQ639W5Tb7EJIudV3Lj4tzkYp_eknAX90,839
|
390
399
|
vellum/types/test_suite_run_execution_function_call_output.py,sha256=jgAk0xgWnJudZh4VhDNb8HfgUAUHA6I8PK_2ExHW9hE,873
|
@@ -395,26 +404,26 @@ vellum/types/test_suite_run_execution_number_output.py,sha256=qzD1sny1o6HDZXkGgv
|
|
395
404
|
vellum/types/test_suite_run_execution_output.py,sha256=jxZg_EOMwKjCDH0QyrecZyUW5OqCMMsWmk9PIwI8EUs,1171
|
396
405
|
vellum/types/test_suite_run_execution_search_results_output.py,sha256=30dcLuSRxFZWZgkU2iPNzKcTsT8tJrD1B91UDSaOp3M,890
|
397
406
|
vellum/types/test_suite_run_execution_string_output.py,sha256=0uSsRIOl6QrR1448JQx6pTxK2_AEgLl6sMkqkvNgzng,797
|
398
|
-
vellum/types/test_suite_run_external_exec_config.py,sha256=
|
399
|
-
vellum/types/test_suite_run_external_exec_config_data.py,sha256=
|
400
|
-
vellum/types/test_suite_run_external_exec_config_data_request.py,sha256=
|
401
|
-
vellum/types/test_suite_run_external_exec_config_request.py,sha256=
|
407
|
+
vellum/types/test_suite_run_external_exec_config.py,sha256=pznl2aDh12tGMRfewF2fomPT6oyAOZfMaa2zre9uXrQ,1330
|
408
|
+
vellum/types/test_suite_run_external_exec_config_data.py,sha256=ukhvRkWY7MxWbj1Im1eqUWdW1AxO_98GX3WAjH77fSQ,1071
|
409
|
+
vellum/types/test_suite_run_external_exec_config_data_request.py,sha256=c_ILHYfH55Yoc52oCK4uwtEv4mJxhDXM6YBFJwPh4uA,1142
|
410
|
+
vellum/types/test_suite_run_external_exec_config_request.py,sha256=HxBtYYKC7p1pwlNjjeW3smcDrtiRvPx3xXRbWxID1vk,1401
|
402
411
|
vellum/types/test_suite_run_metric_error_output.py,sha256=trW1KTH4SJafRfDFRyBS7TpzcT88tXkpWEoysij6IXQ,755
|
403
412
|
vellum/types/test_suite_run_metric_json_output.py,sha256=DI3mJR5kpi8Hm2n6tx6buySHPwTkkbBbr8Lkk4k6HH4,738
|
404
413
|
vellum/types/test_suite_run_metric_number_output.py,sha256=8pddeSds6Rrn0xGqyvgPsG1hr1tu6eOiQAp8kkM_aBk,739
|
405
414
|
vellum/types/test_suite_run_metric_output.py,sha256=qxEJ6Ii4XOhJpM3tgn6ctRnldysduEIe8tQFnWBEOvQ,578
|
406
415
|
vellum/types/test_suite_run_metric_string_output.py,sha256=YXerGfpvJdBtKrzgutSqEfG-N6cZoeOL59qZ5k6DwQA,737
|
407
|
-
vellum/types/test_suite_run_read.py,sha256=
|
416
|
+
vellum/types/test_suite_run_read.py,sha256=3etXdX5ks6H0nuuTLebNl_is2ZKST17wdpLm60YVSf8,1439
|
408
417
|
vellum/types/test_suite_run_state.py,sha256=E4f_AfzXBnxhObLLZ12dBzdoYlRm-gaTqkzrZQ_KfCo,197
|
409
418
|
vellum/types/test_suite_run_test_suite.py,sha256=Wcmbk1XglVFKiDcqxsW7-c7QtOrIqJBK-vWXKXvORXY,602
|
410
419
|
vellum/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=0ANnBKsPqBNdEoZGEfwRzZKbXbzT24T2YNC7c-3Qy1M,1144
|
411
420
|
vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=Omps96mVTbhyg8ZknhAdtAC4TU4J1OG_Y2yqwlovNbU,941
|
412
421
|
vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=n3rbUAmoqjn-U-C6GJL-zVJJf0n_J-6rLIeH0tm3Ixg,948
|
413
422
|
vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=tEknB5YPt5zLKTkXnsuWaPRkFPHpIDQImREmlONfMIo,1182
|
414
|
-
vellum/types/test_suite_test_case.py,sha256=
|
423
|
+
vellum/types/test_suite_test_case.py,sha256=pd9-fpIxzherUqjM7aIWhDyLuql8ZyNIjfOr9r5BZuQ,1056
|
415
424
|
vellum/types/test_suite_test_case_bulk_operation_request.py,sha256=czPKFQBdm-Fil_sx8zxUgR9DJSJfAlL6uB6KcRzwwbU,767
|
416
425
|
vellum/types/test_suite_test_case_bulk_result.py,sha256=b_jDXDB0gWAGsWyf04UJhRwVCUe5kTu8S7gh78_yYF0,648
|
417
|
-
vellum/types/test_suite_test_case_create_bulk_operation_request.py,sha256=
|
426
|
+
vellum/types/test_suite_test_case_create_bulk_operation_request.py,sha256=PJKweKY279bf0MekJ1Yhk6bqD7kEBfR-2iWIe_0wRZQ,1305
|
418
427
|
vellum/types/test_suite_test_case_created_bulk_result.py,sha256=VPAkf3aIrNZnp-fg7ngIZ0RiMLm5Z_9VzJ-2qzAZZOw,848
|
419
428
|
vellum/types/test_suite_test_case_created_bulk_result_data.py,sha256=eTszio4NinfSkpJn_mk6DAzn0u9_JeME8g7P_MVipfg,650
|
420
429
|
vellum/types/test_suite_test_case_delete_bulk_operation_data_request.py,sha256=rMzoLHZgzDyNYXM9kS6UkWmKQkL1RPwRzPO1cqe1T00,588
|
@@ -422,17 +431,17 @@ vellum/types/test_suite_test_case_delete_bulk_operation_request.py,sha256=A95jxH
|
|
422
431
|
vellum/types/test_suite_test_case_deleted_bulk_result.py,sha256=edvZfAhNONFlxtLoIT4Nwp9Jb6s2B86fdfu76Gbs5Xw,1012
|
423
432
|
vellum/types/test_suite_test_case_deleted_bulk_result_data.py,sha256=H5La2h0P0hYMPM0Ez9nSpWhlR1ca9h1W-uz_dxYd2rE,649
|
424
433
|
vellum/types/test_suite_test_case_rejected_bulk_result.py,sha256=tKyUPzR8LozrctBmmyBHkXH-r2ujo5hoQxFbaCMGL9g,1043
|
425
|
-
vellum/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=
|
434
|
+
vellum/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=nHbXcGd6WhOH-55Au-_lDwRHsNNbwRfLPvKQ2hra89w,1314
|
426
435
|
vellum/types/test_suite_test_case_replaced_bulk_result.py,sha256=BIlXI7udygWrwtyRhCl8hmExHbkAl9lI8s3sm1G5iGc,1019
|
427
436
|
vellum/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=ORmcUvwzvRLRaoFhxdXFIKzPxOI6PU1kESl0R6rsJuw,651
|
428
|
-
vellum/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=
|
437
|
+
vellum/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=ezsgJblPuQLkRH1rSt-qcprm-FhPYLBoSSA2cBYtqjE,1306
|
429
438
|
vellum/types/token_overlapping_window_chunker_config.py,sha256=_8vR9AiZQmb5OA3OojbjuTOGiGNTS9EY0vXrmej_TM0,731
|
430
439
|
vellum/types/token_overlapping_window_chunker_config_request.py,sha256=O58w5om6EsCgZeqM7n3KSzwo1PqINyHWln46EFW4Inc,738
|
431
440
|
vellum/types/token_overlapping_window_chunking.py,sha256=TghiPKWZg3Eg_UzGI9VmjQgVPZFABrnhfsz4iPLEem8,889
|
432
441
|
vellum/types/token_overlapping_window_chunking_request.py,sha256=IjCs9UDrwBT6tnffdInd3278Lg2L46jXgn0V-sEBwb0,918
|
433
442
|
vellum/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
|
434
443
|
vellum/types/upload_document_response.py,sha256=6_5Cm4yBPq5nD-rEql6GsmrAtSVVtNRczOL5YwsBVMI,649
|
435
|
-
vellum/types/upsert_test_suite_test_case_request.py,sha256=
|
444
|
+
vellum/types/upsert_test_suite_test_case_request.py,sha256=iB38vx4mo4yNLV5XTeXMGR-PJLOQPloWQOAAi7PDpM0,2079
|
436
445
|
vellum/types/variable_prompt_block_request.py,sha256=XYiA3R_jaMZ2Mq37Lbh7CfBqqj93Yv8ZMVYGheodBdY,990
|
437
446
|
vellum/types/vellum_error.py,sha256=jCKfuCkDTiyFb1-QyP2cg0wReja6wMuooKPAjNhBA0M,643
|
438
447
|
vellum/types/vellum_error_code_enum.py,sha256=87F6QjCk6b6x-fcIsf0qGpKTZsn6zn984TL_LOFjVZU,233
|
@@ -449,14 +458,14 @@ vellum/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB
|
|
449
458
|
vellum/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
|
450
459
|
vellum/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDHSdtwGgg0LWvM5yVQfnXYc4,425
|
451
460
|
vellum/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
|
452
|
-
vellum/types/workflow_execution_node_result_event.py,sha256=
|
453
|
-
vellum/types/workflow_execution_workflow_result_event.py,sha256=
|
461
|
+
vellum/types/workflow_execution_node_result_event.py,sha256=FRTdrMBxCkIw4n-lJ5KgP50eRH8z2PL-yv2tdA8PvoI,1296
|
462
|
+
vellum/types/workflow_execution_workflow_result_event.py,sha256=9Y8ycC8DfarOHiA8CWKt117QJsWStCuHaSgS5qW9ZIY,1315
|
454
463
|
vellum/types/workflow_expand_meta_request.py,sha256=XOqufKO7gHAumATiJGgxzOYWvGx_iZsf3A49JKs4LJ8,771
|
455
464
|
vellum/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx-RZYcx5W32Hs,951
|
456
465
|
vellum/types/workflow_node_result_event.py,sha256=qnhruqkIcKRqP8uB-o-27shcruiT2pjgD7wdrPcp0NE,603
|
457
466
|
vellum/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
|
458
467
|
vellum/types/workflow_output.py,sha256=gtqJeAoVE56QS8N0muYpXxaTUR1O9iFm2YIN_FmOEjk,902
|
459
|
-
vellum/types/workflow_output_array.py,sha256=
|
468
|
+
vellum/types/workflow_output_array.py,sha256=0rdxq9HDD4s_63cK_gePNlcXt8EKBoeSOdy1WRHoUsE,1118
|
460
469
|
vellum/types/workflow_output_chat_history.py,sha256=oBoq6b9tJGyIzZAe7NWvoBKWeE5o7NgtlY6yiJtp3lM,892
|
461
470
|
vellum/types/workflow_output_error.py,sha256=bJWwndZxiO6vWP2bM0jlD1oarlpSAjbE3n9kzOWbpGs,853
|
462
471
|
vellum/types/workflow_output_function_call.py,sha256=HkfqsC86OMhlXr80CFDWuxKALNWb-JsQMOoDuzxourg,886
|
@@ -472,9 +481,9 @@ vellum/types/workflow_request_input_request.py,sha256=wgbKgKy-ftTzc6VMsgPkIiHaAu
|
|
472
481
|
vellum/types/workflow_request_json_input_request.py,sha256=o3zGNLQSEhV7D92ux4s5HG785gA2Qol7sQLM3Bpn0iE,817
|
473
482
|
vellum/types/workflow_request_number_input_request.py,sha256=lVZkxjHMSnGmrqx81gfUaT9-rk79B58dg0TXOMofLpo,796
|
474
483
|
vellum/types/workflow_request_string_input_request.py,sha256=iAGQ-_ma_uGo4Bgbhk_o4DRdyjtoGCPAwhXNlVnQdiI,794
|
475
|
-
vellum/types/workflow_result_event.py,sha256=
|
484
|
+
vellum/types/workflow_result_event.py,sha256=R6NC4LZxpvwhPMf1j_40BrmVc4-bKLHg_g3Rq25A9ug,1560
|
476
485
|
vellum/types/workflow_result_event_output_data.py,sha256=1LgqyZDf4BwfO3nXClcj_5R9DmAz_b-woHn9Exx7Wc8,1221
|
477
|
-
vellum/types/workflow_result_event_output_data_array.py,sha256=
|
486
|
+
vellum/types/workflow_result_event_output_data_array.py,sha256=Qoq9p_949aZeqTGvXhDm51gLXZJdjEF6KmVR-V5yEfE,1429
|
478
487
|
vellum/types/workflow_result_event_output_data_chat_history.py,sha256=eMGvXvXOmQj_Ph7W4iiBqOgqTXsdV559EgWxzmhWckg,1161
|
479
488
|
vellum/types/workflow_result_event_output_data_error.py,sha256=xZyq0HNGlpZKribpHBOAouHzfnyQQJVy_Soe3R_p52U,1122
|
480
489
|
vellum/types/workflow_result_event_output_data_function_call.py,sha256=v4ucbs_fxSo5Fe7ilHaxlfSgjltipD6CylMdYkHBkb0,1155
|
@@ -484,7 +493,7 @@ vellum/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7Zv
|
|
484
493
|
vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
|
485
494
|
vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
|
486
495
|
vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
|
487
|
-
vellum_ai-0.8.
|
488
|
-
vellum_ai-0.8.
|
489
|
-
vellum_ai-0.8.
|
490
|
-
vellum_ai-0.8.
|
496
|
+
vellum_ai-0.8.15.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
497
|
+
vellum_ai-0.8.15.dist-info/METADATA,sha256=Trpo4eWZnSYXYxJHSrbxP0n30Xq-tr1tbPZlYwfae64,4395
|
498
|
+
vellum_ai-0.8.15.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
499
|
+
vellum_ai-0.8.15.dist-info/RECORD,,
|
File without changes
|
File without changes
|