vellum-ai 0.6.9__py3-none-any.whl → 0.7.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. vellum/__init__.py +56 -0
  2. vellum/client.py +73 -40
  3. vellum/core/client_wrapper.py +1 -1
  4. vellum/lib/test_suites/resources.py +5 -5
  5. vellum/resources/document_indexes/client.py +114 -0
  6. vellum/resources/test_suites/client.py +19 -51
  7. vellum/types/__init__.py +58 -0
  8. vellum/types/array_vellum_value_item_request.py +82 -0
  9. vellum/types/code_execution_node_json_result.py +1 -1
  10. vellum/types/error_vellum_value_request.py +30 -0
  11. vellum/types/execution_json_vellum_value.py +1 -1
  12. vellum/types/function_call_vellum_value_request.py +30 -0
  13. vellum/types/image_vellum_value_request.py +30 -0
  14. vellum/types/json_variable_value.py +1 -1
  15. vellum/types/json_vellum_value.py +1 -1
  16. vellum/types/json_vellum_value_request.py +29 -0
  17. vellum/types/merge_node_result.py +3 -0
  18. vellum/types/merge_node_result_data.py +25 -0
  19. vellum/types/named_test_case_array_variable_value.py +31 -0
  20. vellum/types/named_test_case_array_variable_value_request.py +31 -0
  21. vellum/types/named_test_case_json_variable_value.py +1 -1
  22. vellum/types/named_test_case_json_variable_value_request.py +1 -1
  23. vellum/types/named_test_case_variable_value.py +12 -0
  24. vellum/types/named_test_case_variable_value_request.py +12 -0
  25. vellum/types/node_input_compiled_json_value.py +1 -1
  26. vellum/types/node_output_compiled_json_value.py +1 -1
  27. vellum/types/number_vellum_value_request.py +29 -0
  28. vellum/types/prompt_deployment_expand_meta_request_request.py +11 -11
  29. vellum/types/prompt_execution_meta.py +1 -1
  30. vellum/types/prompt_node_execution_meta.py +30 -0
  31. vellum/types/prompt_node_result_data.py +3 -0
  32. vellum/types/string_vellum_value_request.py +29 -0
  33. vellum/types/templating_node_json_result.py +1 -1
  34. vellum/types/terminal_node_json_result.py +1 -1
  35. vellum/types/test_case_array_variable_value.py +32 -0
  36. vellum/types/test_case_variable_value.py +12 -0
  37. vellum/types/test_suite_run_execution_array_output.py +32 -0
  38. vellum/types/test_suite_run_execution_json_output.py +1 -1
  39. vellum/types/test_suite_run_execution_output.py +12 -0
  40. vellum/types/test_suite_run_metric_number_output.py +1 -1
  41. vellum/types/test_suite_run_metric_string_output.py +1 -1
  42. vellum/types/test_suite_test_case_bulk_operation_request.py +12 -0
  43. vellum/types/test_suite_test_case_rejected_bulk_result.py +1 -1
  44. vellum/types/test_suite_test_case_upsert_bulk_operation_request.py +35 -0
  45. vellum/types/upsert_enum.py +5 -0
  46. vellum/types/upsert_test_suite_test_case_request.py +49 -0
  47. vellum/types/workflow_expand_meta_request.py +28 -0
  48. vellum/types/workflow_output_json.py +1 -1
  49. vellum/types/workflow_request_json_input_request.py +1 -1
  50. vellum/types/workflow_result_event_output_data_json.py +1 -1
  51. {vellum_ai-0.6.9.dist-info → vellum_ai-0.7.2.dist-info}/METADATA +1 -1
  52. {vellum_ai-0.6.9.dist-info → vellum_ai-0.7.2.dist-info}/RECORD +54 -37
  53. {vellum_ai-0.6.9.dist-info → vellum_ai-0.7.2.dist-info}/LICENSE +0 -0
  54. {vellum_ai-0.6.9.dist-info → vellum_ai-0.7.2.dist-info}/WHEEL +0 -0
@@ -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 ..core.pydantic_utilities import pydantic_v1
8
+ from .upsert_test_suite_test_case_request import UpsertTestSuiteTestCaseRequest
9
+
10
+
11
+ class TestSuiteTestCaseUpsertBulkOperationRequest(pydantic_v1.BaseModel):
12
+ """
13
+ A bulk operation that represents the upserting of a Test Case.
14
+ """
15
+
16
+ id: str = pydantic_v1.Field()
17
+ """
18
+ An ID representing this specific operation. Can later be used to look up information about the operation's success in the response.
19
+ """
20
+
21
+ data: UpsertTestSuiteTestCaseRequest
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
+ extra = pydantic_v1.Extra.allow
35
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ UpsertEnum = typing.Literal["UPSERT"]
@@ -0,0 +1,49 @@
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 ..core.pydantic_utilities import pydantic_v1
8
+ from .named_test_case_variable_value_request import NamedTestCaseVariableValueRequest
9
+
10
+
11
+ class UpsertTestSuiteTestCaseRequest(pydantic_v1.BaseModel):
12
+ id: typing.Optional[str] = pydantic_v1.Field(default=None)
13
+ """
14
+ The Vellum-generated ID of an existing Test Case whose data you'd like to replace. If specified and no Test Case exists with this ID, a 404 will be returned.
15
+ """
16
+
17
+ external_id: typing.Optional[str] = pydantic_v1.Field(default=None)
18
+ """
19
+ An ID external to Vellum that uniquely identifies the Test Case that you'd like to create/update. If there's a match on a Test Case that was previously created with the same external_id, it will be updated. Otherwise, a new Test Case will be created with this value as its external_id. If no external_id is specified, then a new Test Case will always be created.
20
+ """
21
+
22
+ label: typing.Optional[str] = pydantic_v1.Field(default=None)
23
+ """
24
+ A human-readable label used to convey the intention of this Test Case
25
+ """
26
+
27
+ input_values: typing.List[NamedTestCaseVariableValueRequest] = pydantic_v1.Field()
28
+ """
29
+ Values for each of the Test Case's input variables
30
+ """
31
+
32
+ evaluation_values: typing.List[NamedTestCaseVariableValueRequest] = pydantic_v1.Field()
33
+ """
34
+ Values for each of the Test Case's evaluation variables
35
+ """
36
+
37
+ def json(self, **kwargs: typing.Any) -> str:
38
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
39
+ return super().json(**kwargs_with_defaults)
40
+
41
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
42
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
43
+ return super().dict(**kwargs_with_defaults)
44
+
45
+ class Config:
46
+ frozen = True
47
+ smart_union = True
48
+ extra = pydantic_v1.Extra.allow
49
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,28 @@
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 ..core.pydantic_utilities import pydantic_v1
8
+
9
+
10
+ class WorkflowExpandMetaRequest(pydantic_v1.BaseModel):
11
+ usage: typing.Optional[bool] = pydantic_v1.Field(default=None)
12
+ """
13
+ If enabled, the Prompt Node FULFILLED events will include model host usage tracking. This may increase latency for some model hosts.
14
+ """
15
+
16
+ def json(self, **kwargs: typing.Any) -> str:
17
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
18
+ return super().json(**kwargs_with_defaults)
19
+
20
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
21
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
22
+ return super().dict(**kwargs_with_defaults)
23
+
24
+ class Config:
25
+ frozen = True
26
+ smart_union = True
27
+ extra = pydantic_v1.Extra.allow
28
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -18,7 +18,7 @@ class WorkflowOutputJson(pydantic_v1.BaseModel):
18
18
  The output's name, as defined in the workflow
19
19
  """
20
20
 
21
- value: typing.Optional[typing.Dict[str, typing.Any]] = None
21
+ value: typing.Any
22
22
 
23
23
  def json(self, **kwargs: typing.Any) -> str:
24
24
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -17,7 +17,7 @@ class WorkflowRequestJsonInputRequest(pydantic_v1.BaseModel):
17
17
  The variable's name, as defined in the Workflow.
18
18
  """
19
19
 
20
- value: typing.Dict[str, typing.Any]
20
+ value: typing.Any
21
21
 
22
22
  def json(self, **kwargs: typing.Any) -> str:
23
23
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -22,7 +22,7 @@ class WorkflowResultEventOutputDataJson(pydantic_v1.BaseModel):
22
22
  The newly output string value. Only relevant for string outputs with a state of STREAMING.
23
23
  """
24
24
 
25
- value: typing.Optional[typing.Dict[str, typing.Any]] = None
25
+ value: typing.Any
26
26
 
27
27
  def json(self, **kwargs: typing.Any) -> str:
28
28
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.6.9
3
+ Version: 0.7.2
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,8 +1,8 @@
1
- vellum/__init__.py,sha256=OcHXzyp3Csd35fdH_THYQwUM0distNnT5B1re41UI44,45701
2
- vellum/client.py,sha256=FklbOzCaDTPP_EQn0HJXUq1_ZFOHuSePt6_nVQ_YLgY,97463
1
+ vellum/__init__.py,sha256=NeNNbUP3-lOs1TT9Kj8W9ARH06wIHl1Bn7hxx5kdVZg,47755
2
+ vellum/client.py,sha256=Go36j4cYimrlAZ_k_jZe9pE56pJZKJukwuixq7lngso,102237
3
3
  vellum/core/__init__.py,sha256=1pNSKkwyQvMl_F0wohBqmoQAITptg3zlvCwsoSSzy7c,853
4
4
  vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- vellum/core/client_wrapper.py,sha256=O-MwUsnrzYAjhRtuFZAdCMSoFYXq9V_stJOY-Sb7IAo,1697
5
+ vellum/core/client_wrapper.py,sha256=NjqwHHAMtMbEEPLtsMmBkvF2S95VQfRWs94jdu6TgLk,1697
6
6
  vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  vellum/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
8
8
  vellum/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
@@ -20,7 +20,7 @@ vellum/lib/__init__.py,sha256=KTSY0V59WEOr5uNyAei1dDfaAatyXw_Aca5kNjo5mY0,79
20
20
  vellum/lib/test_suites/__init__.py,sha256=hNsLoHSykqXDJP-MwFvu2lExImxo9KEyEJjt_fdAzpE,77
21
21
  vellum/lib/test_suites/constants.py,sha256=Vteml4_csZsMgo_q3-71E3JRCAoN6308TXLu5nfLhmU,116
22
22
  vellum/lib/test_suites/exceptions.py,sha256=6Xacoyv43fJvVf6Dt6Io5a-f9vF12Tx51jzsQRNSqhY,56
23
- vellum/lib/test_suites/resources.py,sha256=hokRS0_wT6IdA_6HkWbrh7iFzFxCtiy8JXbUiGtlwRk,12323
23
+ vellum/lib/test_suites/resources.py,sha256=6dvnbz0eOUjDvONYGqi_q54afv4Lh_yAS_H-exuUvws,12530
24
24
  vellum/lib/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  vellum/lib/utils/env.py,sha256=ySl859lYBfls8hmlaU_RFdquHa_A_7SzaC6KEdFqh1Y,298
26
26
  vellum/lib/utils/exceptions.py,sha256=dXMAkzqbHV_AP5FjjbegPlfUE0zQDlpA3qOsoOJUxfg,49
@@ -32,7 +32,7 @@ vellum/resources/deployments/client.py,sha256=p-n2k6RQIwNBDm9dU-wE6pI0kRhNjQiARB
32
32
  vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
33
33
  vellum/resources/deployments/types/deployments_list_request_status.py,sha256=CxlQD16KZXme7x31YYCe_3aAgEueutDTeJo5A4Au-aU,174
34
34
  vellum/resources/document_indexes/__init__.py,sha256=YpOl_9IV7xOlH4OmusQxtAJB11kxQfCSMDyT1_UD0oM,165
35
- vellum/resources/document_indexes/client.py,sha256=DgJn_ZpIt-WY8OR3P3sCQ_x7FVtQ5WVj_TR1t9PwDf0,45370
35
+ vellum/resources/document_indexes/client.py,sha256=6x7C8gmeSThrfa9BawBVjBw4doUzb3C0ZOgdLmZn9ns,50594
36
36
  vellum/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
37
37
  vellum/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=sfUEB0cvOSmlE2iITqnMVyHv05Zy2fWP4QjCIYqMg0M,178
38
38
  vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -44,7 +44,7 @@ vellum/resources/sandboxes/client.py,sha256=Lm45GGIRSODx5WJbyXP3ThR3FB8QSPajMWiq
44
44
  vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
45
  vellum/resources/test_suite_runs/client.py,sha256=LOcjVwBAgQF__yEGvsbZpjBhefGtLL1vnSqJ1K3uly0,18728
46
46
  vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
- vellum/resources/test_suites/client.py,sha256=4BSlNgX_4H3avMfW8zs1nTJH1bURSwIzOJtB2wO92JY,28338
47
+ vellum/resources/test_suites/client.py,sha256=viMS5Uv5H4B6gY8b3XexLbnXwf3K1zf3r3OopBZjAVI,25274
48
48
  vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
49
49
  vellum/resources/workflow_deployments/client.py,sha256=Oal32DF472B46CBWkb8GgDonjyAFQ28hHV5lq4DF1AM,22437
50
50
  vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
@@ -60,7 +60,7 @@ vellum/terraform/document_index/__init__.py,sha256=qq2zENI22bUvqGk_a1lmsoTr5O_xC
60
60
  vellum/terraform/provider/__init__.py,sha256=K1yLlTZkYBxhD4bhUV1v23hxDGgbfsAIGsSyeB54dNQ,10298
61
61
  vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
62
62
  vellum/terraform/versions.json,sha256=STW6Mg3BKDacFmbWHXziHxE90GWncZf4AIzCLiXm_7o,56
63
- vellum/types/__init__.py,sha256=kXwzN3eE2Ec000S2qo5QBGX3ybDdD4JGWhCVj1Cmfv0,61339
63
+ vellum/types/__init__.py,sha256=9eP-kNmjOF5ETQfu8adSu3bMr0S60tjJALH3zgzwoWs,64070
64
64
  vellum/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
65
65
  vellum/types/api_node_result.py,sha256=SvYIi1T-N_P3FVjzv9I91PaCT0IN958A3easp5Q7jqE,983
66
66
  vellum/types/api_node_result_data.py,sha256=KFBmmizcEg73GwQMXUtEdJ4e9YGFpRLYAnalwxIcDug,1161
@@ -71,6 +71,7 @@ vellum/types/array_chat_message_content_request.py,sha256=RjOzVEKHKqOTLHCT0D1XkH
71
71
  vellum/types/array_enum.py,sha256=4p5fpx2piS8FhkPAEz6Xu3OIOKFuDZF-aokSW6-dV0E,116
72
72
  vellum/types/array_variable_value_item.py,sha256=MHfgHHXxVOPJRFk3oK4ORsOw8Q06VWcs2JIsGSP5v9I,2228
73
73
  vellum/types/array_vellum_value_item.py,sha256=KjXgZLvRL8WI5vT5nyn5mXFJjS9AkF3wKK3tng_NwuA,2166
74
+ vellum/types/array_vellum_value_item_request.py,sha256=UfOCdy1s8nbpyg5SwTuNL_X4GtztZD_gD5sc7rBwdZM,2389
74
75
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=P9B-Ofq4V1KV5lBiX4tZzV76L76Usy4RqVuKn5K8dzE,1004
75
76
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=DwIOSqUudFZygt84XPryCGCy3fyArDEa0eelSuGQDQs,1011
76
77
  vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=Rb8q5E5_MG3Ht7rR5BVxkFAcO83_iicc0Zim6rdkdiU,1036
@@ -88,7 +89,7 @@ vellum/types/code_execution_node_array_result.py,sha256=qKI_N1lNtOLmktu8QK0y7Xlx
88
89
  vellum/types/code_execution_node_chat_history_result.py,sha256=G0su1vecLcin6IZVwDCnyzmmDF7TV2cmV_1sBxop5bc,967
89
90
  vellum/types/code_execution_node_error_result.py,sha256=-8i2c9NsFpceDAb1S41q7DzcG7VZj5JbgysbeRh43_A,948
90
91
  vellum/types/code_execution_node_function_call_result.py,sha256=GfaCJmRwcnfVU0BEicPUWEdWwlk3oDljXAyg_UaT_vQ,958
91
- vellum/types/code_execution_node_json_result.py,sha256=NalNSJPsbud_GEIhjJTdtaqEDdwruBv4ORV0vYUT6Uk,926
92
+ vellum/types/code_execution_node_json_result.py,sha256=QnTyPoOTSEuTI34gy17MutVpzuf9RbH0iThGqnpwb00,884
92
93
  vellum/types/code_execution_node_number_result.py,sha256=LAGP8AQEdHsAu4ZkpzXn5wLkgE0XssNoPnHLrthZYbs,905
93
94
  vellum/types/code_execution_node_result.py,sha256=PPBpgfP873Xd5QnZ6WE3G9IpcnHC_DidAIceUPiHnEw,1034
94
95
  vellum/types/code_execution_node_result_data.py,sha256=mQ3I1kKh7UeZjKfxlZ5W3Uhk3UurvMiavW7WGiP0Fe0,1016
@@ -121,6 +122,7 @@ vellum/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wB
121
122
  vellum/types/error_enum.py,sha256=HF_ubfzqmFQN3vVCDFZALADjHFRChuvkU_-zqjxa3ns,116
122
123
  vellum/types/error_variable_value.py,sha256=x5t2f3jk5zC6KyXYpk_ZgKv_lIRq_-P5hahou9Lohb0,926
123
124
  vellum/types/error_vellum_value.py,sha256=LhArYgM0L1o1BkCl_Oym9R1dwRP24lxa_5kEEmTes7w,976
125
+ vellum/types/error_vellum_value_request.py,sha256=_9GzKPZ1nZ8j5glqdHOVMLlxcJOWEmEoAN6t6AvfW9M,1005
124
126
  vellum/types/execute_prompt_api_error_response.py,sha256=-RA-JhnAyj8_L9zNOCy4RsmmNwsldmIhTo-_mjHX60s,948
125
127
  vellum/types/execute_prompt_event.py,sha256=WBKdWBRgtDYoxMbHC7FjCjCxxTuOgjINonDYQITD1-4,1636
126
128
  vellum/types/execute_prompt_response.py,sha256=HHD1EoPDz78OQA8XYcsopklbzk0fVYk-rXwjwW19n6M,914
@@ -132,7 +134,7 @@ vellum/types/execution_array_vellum_value.py,sha256=X0JpS0El85UmLBg06WNSd_DdX0YD
132
134
  vellum/types/execution_chat_history_vellum_value.py,sha256=_Ek5MlnLvtc1icgzWZOGDaZRgS8ELpOZjHFLH864EYU,1126
133
135
  vellum/types/execution_error_vellum_value.py,sha256=o3R_AbSA9FDwNfi6Wd1cZoBclfRILhJQ08IcYdV1nxw,1103
134
136
  vellum/types/execution_function_call_vellum_value.py,sha256=gBCkwo9gLZfolZ4xQlY3ggPOke0aA1NKln-qNv1ZBuQ,1120
135
- vellum/types/execution_json_vellum_value.py,sha256=M6LOgpmqAEBlUFzJWDDC2RYVCYK87HLfkY1ZGGcdq_E,1086
137
+ vellum/types/execution_json_vellum_value.py,sha256=N1VmbYeWcFlsjj8e22AektWBEIVjDEmJI_ydKIZeoUo,1044
136
138
  vellum/types/execution_number_vellum_value.py,sha256=SuMDZKlENDBJHvNnzv11ZqLn8m60ctPopm3aF-mDMGA,1060
137
139
  vellum/types/execution_search_results_vellum_value.py,sha256=PLgIGx3GIPq48ex8BAZFk5xHWEBjjWU3x9kI6BVgopM,1133
138
140
  vellum/types/execution_string_vellum_value.py,sha256=GDe7ABz712yr5oD4jBTafz2G3f7M8pIGFpzt0NIb8E0,1058
@@ -155,6 +157,7 @@ vellum/types/function_call_enum.py,sha256=QK__nqbfcaPx1d6paBAoCFth7mWOStqgutY3MI
155
157
  vellum/types/function_call_request.py,sha256=gwhQfL0vKfDzSKR2Pt5Q2E8bkoQKcNQ2ItAAxT_dWlo,1088
156
158
  vellum/types/function_call_variable_value.py,sha256=3XFxR5zkeo4sc7fB_ot6x6fFT_QC4QKYC9c0cCQENlI,936
157
159
  vellum/types/function_call_vellum_value.py,sha256=Zn_tu4bfy569R9KJ9BiXx92N_AsB3KvMVv24DRbjvk8,993
160
+ vellum/types/function_call_vellum_value_request.py,sha256=aGaYczwL-Ie_rQ-CiK8x3a5B1wsiDbbuxdjsl-p335c,1022
158
161
  vellum/types/generate_error_response.py,sha256=Zrnq_Acm_2CfmZkZ60Axgw_uUISOjd6tbJBIkFuj2U0,940
159
162
  vellum/types/generate_options_request.py,sha256=SD-39FB3py_HAZzMTaFyNeDRG0QbPPnayKICo2p9fTk,1079
160
163
  vellum/types/generate_request.py,sha256=PdbtFLB-RfFJatIIB_b1prMWks-LSxChbXVszMIPIuw,1572
@@ -173,6 +176,7 @@ vellum/types/image_chat_message_content_request.py,sha256=FelTpTbRUP_Fs5JW4FjdzT
173
176
  vellum/types/image_enum.py,sha256=tCaNHfgdFi9F5MInvgaRq19i9lghWolWWmZpBH5uSJQ,116
174
177
  vellum/types/image_variable_value.py,sha256=sTEWJjSx7Hh7uoZnH2eNpdF1lJltSw-yWQrbKYA5PzQ,1000
175
178
  vellum/types/image_vellum_value.py,sha256=LBVZLsVItp_BSiDwxDVvbtOJyD0JJmzCNVzMsy3cWKI,998
179
+ vellum/types/image_vellum_value_request.py,sha256=YYR2eQRSSyqFGX5ZPo9DAr6JaFAcNKgH7yuC5VInKmA,1027
176
180
  vellum/types/indexing_config_vectorizer.py,sha256=zW4Fn0_gx4Ges-kXI0-rfOa6_2SwnCyxGQz4Ok18uYI,3802
177
181
  vellum/types/indexing_config_vectorizer_request.py,sha256=3rqeTX2055DI9cybFS29M7DaFLszHIKqR51lvNQaT8M,4061
178
182
  vellum/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwFYiel1U,213
@@ -186,15 +190,17 @@ vellum/types/intfloat_multilingual_e_5_large_enum.py,sha256=hq41gaU723etcyr8--yE
186
190
  vellum/types/iteration_state_enum.py,sha256=yjwnPhqKQQbWgQUqP2qws4kVMhRY8sFTGK_diuSrsR0,168
187
191
  vellum/types/json_enum.py,sha256=0Se0lTWxLGQe-JdQ8E9KwFt5NWXuI7BkOdWQcFKJg-8,114
188
192
  vellum/types/json_input_request.py,sha256=fpBb3QS-E0a3hZU_mHZ5Yjkwr10-qqbQoMJbfhfGu_4,1048
189
- vellum/types/json_variable_value.py,sha256=KdKz67NgVwVHpxXFgSxFPBeGBdjzTwZ_VKe22kcaWjo,904
190
- vellum/types/json_vellum_value.py,sha256=c_fKVj3ZnjacNEGW8keuoSfsNs7MBSH7PkTNxZuWU4M,959
193
+ vellum/types/json_variable_value.py,sha256=VGDdFC41KDgEQzhCJJmU2FgaY85I_12w_rvBBl3EKh0,862
194
+ vellum/types/json_vellum_value.py,sha256=9tRUBBqxEJ3dFbfpUyO9Dj9ik1zXZDRvjAdKGDJXsPw,917
195
+ vellum/types/json_vellum_value_request.py,sha256=WCc1jJDO0UyzDX9IaVYubsciU7lseC24VhP3BG6XJoc,924
191
196
  vellum/types/logical_operator.py,sha256=MuuMZ1-gOCDvy1WDQkMFfiBNHsRCqKgJei-b3727sKc,487
192
197
  vellum/types/logprobs_enum.py,sha256=D_458cZX2CAb6dX_ovrQ6HARlJkYcZRadKwsi1Cr-JM,151
193
198
  vellum/types/map_enum.py,sha256=ABInkGAOBdgmsKzcCcM0AKEPQt-iwim-GmHEkXEHEs0,112
194
199
  vellum/types/map_node_result.py,sha256=x5S8E8_jhIZHc9aAeE0GqGAw8v5XoLXTA4uiFTVtqA0,1006
195
200
  vellum/types/map_node_result_data.py,sha256=XRaiU2_8zY9g_N_wYsqUgHmNME3ePHl3_VhSUTumCzI,993
196
201
  vellum/types/merge_enum.py,sha256=TeAaXV2eWEGJHR3BqHdtIRkHUhctvfUo_Wu8MeqHYtU,116
197
- vellum/types/merge_node_result.py,sha256=R6AndgFRFuFQk8APapAr7bkv4vqkukz-D71kl8rIubU,905
202
+ vellum/types/merge_node_result.py,sha256=NMbdwUEB-E9BKyMsNzl7HK0UbEznyJQxn8e1BYbqkjQ,992
203
+ vellum/types/merge_node_result_data.py,sha256=7p3R-v_ExjQ2qgQjrmMpMZPFLswhVyOikfxl8hxNLn0,917
198
204
  vellum/types/metadata_filter_config_request.py,sha256=_1CVIxmDmtXezTMWoaqeea9boe8hyCmmAn28u69NEUk,1355
199
205
  vellum/types/metadata_filter_rule_combinator.py,sha256=3Vpp1Mnv3As7efkxWTeV8qd4gdJ6OLoLhz_UeVBHAX8,165
200
206
  vellum/types/metadata_filter_rule_request.py,sha256=kHXDnPobjbdWXBWda2lZNeUjNgJ4S9tQBIALYh3UlAo,1371
@@ -204,27 +210,29 @@ vellum/types/ml_model_usage.py,sha256=NYnyJt7C3cG88REt2X2zsmRZMqx-RBJp07ld6eAc96
204
210
  vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=swgyn_U0Mzz13GmRNUZ-V1190h---N1rNVuQYBOmiAE,1098
205
211
  vellum/types/named_scenario_input_request.py,sha256=v98mkxp2bZSWZur67dGxKM7UaIdk5H8b6mnK2myA4HE,1043
206
212
  vellum/types/named_scenario_input_string_variable_value_request.py,sha256=rWuHXH_iaV3mkhuBWPfvMIIVKeYS9ygAi4pYQKLX1iQ,1006
213
+ vellum/types/named_test_case_array_variable_value.py,sha256=QKLinBBEpSoVqML8As-Av33T9qPaacBzp5ET-yPn-Mk,1060
214
+ vellum/types/named_test_case_array_variable_value_request.py,sha256=OhUlhD5tRON5OmlR4Baw5cY5ZgzHNKuprAXr2HVW0zI,1089
207
215
  vellum/types/named_test_case_chat_history_variable_value.py,sha256=wLR-Vhb_XAevyG1miX1AoyOagNyZ-7ievYyMxv4wEVQ,1044
208
216
  vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=OTCmtteEOw70ptFTubbfh_m5C4qE4-KfM8ABMQpW-DE,1073
209
217
  vellum/types/named_test_case_error_variable_value.py,sha256=HQI1CRF3K2fYxO_Gn5Y9KrrH4IEtzLN00rjt5wLJM0A,1018
210
218
  vellum/types/named_test_case_error_variable_value_request.py,sha256=_LDMPlAbs9Q_-SghJW2UFioEH-IkOJCoIba6kBFVUho,1047
211
219
  vellum/types/named_test_case_function_call_variable_value.py,sha256=1nqkcIo5j_Hd5izJh5X7zygDyiI1_6--WDm3cQehrNY,1036
212
220
  vellum/types/named_test_case_function_call_variable_value_request.py,sha256=v68meQwPOvNIiIKwrks2M4PvpzyN-D9GGBJ0oIU0CNU,1065
213
- vellum/types/named_test_case_json_variable_value.py,sha256=icQDs-Z8EqoTbs6JiC4LiTHpgYkaDxUelCTsKyBTX_U,995
214
- vellum/types/named_test_case_json_variable_value_request.py,sha256=F7L-Q5ZXiQDsv5JrUGMEY7Z7ILJ6UQIdBf3zyoJveJ0,1002
221
+ vellum/types/named_test_case_json_variable_value.py,sha256=RzhGnjTPgY0ulmB5DmoRFWr0nz9g8t5jjC8H9gOvf3w,953
222
+ vellum/types/named_test_case_json_variable_value_request.py,sha256=XjeMqUThnezG0FrC65Rres2DD-yX_jZ0gpm2i0Vvwt8,960
215
223
  vellum/types/named_test_case_number_variable_value.py,sha256=N3fQPqNEeRIW6actTMPnlYwpVC16eHKbjUiR01a_e1Y,976
216
224
  vellum/types/named_test_case_number_variable_value_request.py,sha256=2FjLXpstgKo10twG2UuSa0csPRtCzR0xV7mSDdopa1k,983
217
225
  vellum/types/named_test_case_search_results_variable_value.py,sha256=H-KyurHySPSuVKlghlRLXkhBFRgKjstOZZzP_ePzllU,1051
218
226
  vellum/types/named_test_case_search_results_variable_value_request.py,sha256=bKRFI9oSuHAO9gLscfof42d_slAT-EpFTUYaqMQ0OwY,1080
219
227
  vellum/types/named_test_case_string_variable_value.py,sha256=g0qeMyTNN4N_3Y0QjtDdaO9kJJOysDC-SSEBRr0lc1M,974
220
228
  vellum/types/named_test_case_string_variable_value_request.py,sha256=Jriilf5vooCSh2ReIt2ey1L-VsHZO8qHfGtfklSeRnM,981
221
- vellum/types/named_test_case_variable_value.py,sha256=UtV113Yp1gpJvtNwB4HOLrvBMYwaeB0v2EDAv-v5d5o,3021
222
- vellum/types/named_test_case_variable_value_request.py,sha256=qO-__UphDuhm6RjY7p_oYwO_IPNF1gS-vtJTHNxEs6I,3280
229
+ vellum/types/named_test_case_variable_value.py,sha256=xA7G5B437kKcY0Zg56seJylMB83JAXaof2aoap_K4mM,3406
230
+ vellum/types/named_test_case_variable_value_request.py,sha256=cBPky3OQiwzRMWNdjnQviSp3Sfg1ZK8fvVgSF9Ch3hk,3701
223
231
  vellum/types/node_input_compiled_array_value.py,sha256=EovfwRo5RP2-iSoOw62ZQ1TXFkgQIFk--710HQWVe6I,1019
224
232
  vellum/types/node_input_compiled_chat_history_value.py,sha256=PKEe2nu5ghEJXUWg_e9tRUhLwKHX0PmnQOf4VQp77nI,990
225
233
  vellum/types/node_input_compiled_error_value.py,sha256=sGAVC36JonLCG5wwLlc1ThNek4Ud3H31E1dYWJ0rtBg,971
226
234
  vellum/types/node_input_compiled_function_call.py,sha256=kWeyJ4hNW01HFzs2Q9AoF1CsmEi07Mpkewv-plXLnzg,976
227
- vellum/types/node_input_compiled_json_value.py,sha256=JXOF4PTfmRtaHAWc-_G90RxMDKkuQ9fdoFlEgdAjCeU,949
235
+ vellum/types/node_input_compiled_json_value.py,sha256=zsH-Ki-npQSs6BU91spETbZ5PaUkbLm9Zfcks57FCdk,907
228
236
  vellum/types/node_input_compiled_number_value.py,sha256=Kpxo7ryDiOxylmzF1pz6jupsr0MPGpa6Rf69qhTNMgY,928
229
237
  vellum/types/node_input_compiled_search_results_value.py,sha256=ejJuUB42LO9l-E12uKa0Ezk_T0nP6q023uuqDEqN4TU,995
230
238
  vellum/types/node_input_compiled_string_value.py,sha256=cEssxmVjvY5SG2OINLYdw8pJPIJrKdEvdUgkU0xz_9k,926
@@ -233,7 +241,7 @@ vellum/types/node_output_compiled_array_value.py,sha256=Wsj7F6MB5RrfZg0fHzJl2VO-
233
241
  vellum/types/node_output_compiled_chat_history_value.py,sha256=G4uyylyx4pe9wroMruPaw8kFOmwVEzVCGl0xFRd3S_w,1198
234
242
  vellum/types/node_output_compiled_error_value.py,sha256=Y9Zk8yJ5HXhNyDb2-iSW5RnTSxDIuLHCgqtt9-1CIkE,1172
235
243
  vellum/types/node_output_compiled_function_call_value.py,sha256=-zKACRAG0jNpVWv4wRpJwi4BCoI368C0fglgEmKbnY0,1190
236
- vellum/types/node_output_compiled_json_value.py,sha256=W8Y4zWV5fYpvdlYUKWHtd3ytH8UbdvuyaU5CZWRTexs,1149
244
+ vellum/types/node_output_compiled_json_value.py,sha256=k56FJZppUjlvm-04rvj57Ux7alQ0VuQGVO68WB-DY08,1107
237
245
  vellum/types/node_output_compiled_number_value.py,sha256=dZxIdYaqfgM91CcSdqzIFA8_-WDPgCbicNh7FGhVxlk,1130
238
246
  vellum/types/node_output_compiled_search_results_value.py,sha256=70JslI-j54Q0BmNhbwWuaLQkvDYggCcZ3pA2E03qfzg,1205
239
247
  vellum/types/node_output_compiled_string_value.py,sha256=Ur9u-NZF9QHZSmXyXfyOSJopPW10u5J9idETLPn3b74,1128
@@ -243,6 +251,7 @@ vellum/types/normalized_token_log_probs.py,sha256=-PYJPYzykDfG9aeXqRselY8XHdIvr0
243
251
  vellum/types/number_enum.py,sha256=M_h5PmC5HxQYpQbfqqyw1DualhKu1QOCU-o1NYTQz_o,118
244
252
  vellum/types/number_variable_value.py,sha256=lZxdWVR_VwlAXpqHK6bgWXE32JcBkKkylnaJLi5iVy0,883
245
253
  vellum/types/number_vellum_value.py,sha256=ynO448qi8sVk15PSQBm_5aDcGL0gl7Sv_bTfA3KhumA,933
254
+ vellum/types/number_vellum_value_request.py,sha256=AfIsCQH-HLt6PJCdACpbBCCc3rSrKRLERmyqq4c-w30,940
246
255
  vellum/types/open_ai_vectorizer_config.py,sha256=sxtay8on0Gm_qOrFHDrMjxActxPMAu0jcm0hY2yR9VY,1037
247
256
  vellum/types/open_ai_vectorizer_config_request.py,sha256=9z3iSr3e82og59FH_U0pNbhTu4hIg0GGhBYEJOCiK4U,1044
248
257
  vellum/types/open_ai_vectorizer_text_embedding_3_large.py,sha256=fmopJSWa6oubljt2ljxvcjiB3Ic9CLnZn10oTW7-pTQ,1022
@@ -262,11 +271,12 @@ vellum/types/pdf_search_result_meta_source.py,sha256=qEwl2y_RN1XUShidjaH5zm8kp-4
262
271
  vellum/types/pdf_search_result_meta_source_request.py,sha256=ft-qjTtiSxvo3KVTdzF88QkOCc4sOq46gEyb7ICjBOI,1384
263
272
  vellum/types/processing_failure_reason_enum.py,sha256=R_KIW7TcQejhc-vLhtNf9SdkYADgoZCn4ch4_RRIvsI,195
264
273
  vellum/types/processing_state_enum.py,sha256=lIEunnCpgYQExm2bGyTb12KyjQ3O7XOx636aWXb_Iwo,190
265
- vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=r7xmsEaFZWLXKE1Y7GGjUXbaYyMnIdpdgFy3QvMEl8M,2044
274
+ vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=JrOzU5Pv2L_BkWenxuUBBcWP2PHOZM0m4_6I2TIBMDc,2033
266
275
  vellum/types/prompt_deployment_input_request.py,sha256=o8PCi7TsitddNxiAfDblxaXkJ1-WjuDTAW0LnKbMDY4,1233
267
- vellum/types/prompt_execution_meta.py,sha256=io92vwMO3qC7RsCIsyMPFEeY3Sizb2xv6X1TBwKu6eI,1370
276
+ vellum/types/prompt_execution_meta.py,sha256=L75Yhb4-t1aCYWokMfCtayZmN8R2ZuTOR5DbyxHOAeI,1370
277
+ vellum/types/prompt_node_execution_meta.py,sha256=fjNFSc7FTdR17NRHRhMhrtjU-VxSvoELU8bLWdiYRl0,1073
268
278
  vellum/types/prompt_node_result.py,sha256=BVRnp6zIKocaPquCln0UtqW2M18j8k_OnHLGWCB25hU,997
269
- vellum/types/prompt_node_result_data.py,sha256=WaKh-Nh3vVklvitT3WxwVeMGt0VxAoeypDDW4gvcMpY,988
279
+ vellum/types/prompt_node_result_data.py,sha256=Vs546gbJii1gIa2lKShs6Ma8_aJabpqaZV8eXe-wwpQ,1166
270
280
  vellum/types/prompt_output.py,sha256=wO0lz1HmPctCMt9lGLTsJRkL20wMXfmya5CxRhakOxU,1418
271
281
  vellum/types/raw_prompt_execution_overrides_request.py,sha256=Hwfjk35PsGSqMfcRwBzwjfpaRiaixTVi8xsG9g9pV3E,1210
272
282
  vellum/types/reducto_chunker_config.py,sha256=x0LRCr3vMfn4Zu5KUKWbwaV3ab8SQ825NkmzLvbiojY,948
@@ -325,6 +335,7 @@ vellum/types/string_enum.py,sha256=8uLrjmZyaGRDEf7Y6DpJF1e4abJct69wIoq6ZQX6F-s,1
325
335
  vellum/types/string_input_request.py,sha256=2c7ZbrA2r_Au12O-LnfMwY-5rQKzAqQkLVu-jc-qjTI,1026
326
336
  vellum/types/string_variable_value.py,sha256=YGjpJpTVnxywk0mtXisQw8BkIfTS_amY4JPugLQ6dW0,881
327
337
  vellum/types/string_vellum_value.py,sha256=UCk0yx0DHUrANEp-rPsXO34dUNRWuzQPcSR2BsVPnlU,931
338
+ vellum/types/string_vellum_value_request.py,sha256=sB3MCsRMpjul20MLIqfhmR5ON3SaMc3gQp-jorGZXxI,938
328
339
  vellum/types/submit_completion_actual_request.py,sha256=52BcHB_G2aj5EZrzAXVcmkrFWD1a7UJSzZKifWmr8KQ,2010
329
340
  vellum/types/submit_completion_actuals_error_response.py,sha256=f2XlGM5NBdwZLy4oOJN9LrcaHwW31fGtTCmzcJVzUV4,875
330
341
  vellum/types/submit_workflow_execution_actual_request.py,sha256=zR5Di5a9GC2fchGC9qLEXGELitg3UxCoQUqeIyeyLDc,1487
@@ -335,7 +346,7 @@ vellum/types/templating_node_array_result.py,sha256=huhwnErVQPAiN2nIk8QolAQRB1kP
335
346
  vellum/types/templating_node_chat_history_result.py,sha256=_1g3zY8AKbI4DyLg5nkvgoLsbUMXu_9HdgByRC3Qq8E,964
336
347
  vellum/types/templating_node_error_result.py,sha256=3Sa0r1FpBaK_K_-9w6IzZDlN9z7MtdsulO9E9dAkavw,945
337
348
  vellum/types/templating_node_function_call_result.py,sha256=Uz6GRk4TdWBJBJiyK3tqHTrR6zAJFAltAkyCO-9OSis,955
338
- vellum/types/templating_node_json_result.py,sha256=guNdUc35pQjR4DspczVRHLVYucWYWmassTL4PO-CCVg,923
349
+ vellum/types/templating_node_json_result.py,sha256=wK2y6-70IMbrwI0weRA6nLK-lg4vh-iPOrRVCDK-gwE,881
339
350
  vellum/types/templating_node_number_result.py,sha256=16NTq0b8Bo8kB7Dyq4tUVURPXq8n9xnAWme0uT3Feu4,902
340
351
  vellum/types/templating_node_result.py,sha256=xD7Z5G7R9xMVR8uGZVRX-SHsIFnHnzzSfBMUbfAIllo,1017
341
352
  vellum/types/templating_node_result_data.py,sha256=sr9q2joBHsouTsgtXsG9Q_S46tX1FvN5a7CxbWV5Shk,956
@@ -346,13 +357,14 @@ vellum/types/terminal_node_array_result.py,sha256=mgBEjcdPdmae3NZdJ0fN58r8Z3HIWV
346
357
  vellum/types/terminal_node_chat_history_result.py,sha256=BYrrb6peiMtkHDWoPky0pc4ELYDwgnuRb0lyHFmUr40,1113
347
358
  vellum/types/terminal_node_error_result.py,sha256=rbO9su-F-BYY_CMjUq8RjykpMPQPMl6DjkhokxEpITM,1094
348
359
  vellum/types/terminal_node_function_call_result.py,sha256=ZXpoaQsWUIqORiYqubOzMnNaWWOo8mATY5je9GNvZa4,1104
349
- vellum/types/terminal_node_json_result.py,sha256=rLAPEuQpbMOZLNL8OWqkcQGLlLVZcrJb3dgv1FiDmGg,1072
360
+ vellum/types/terminal_node_json_result.py,sha256=IBtt3lo4xU5qb9VKUXC7AN5llnoSkS2S7DSnI5PM5YQ,1030
350
361
  vellum/types/terminal_node_number_result.py,sha256=SEwjdY43Tm__ntgiJqmKLmNt6LO159b_9G0sOyW_9kY,1051
351
362
  vellum/types/terminal_node_result.py,sha256=h-l3xDB7qjivYFtjeQ9xJXT107DBLUQ5M4eItp4PHCI,1007
352
363
  vellum/types/terminal_node_result_data.py,sha256=0EavYhcD-aZi5QngHK-bAB2wtFNw0CJC4mKXWCoDm10,948
353
364
  vellum/types/terminal_node_result_output.py,sha256=lKXaYst9-JuY0rk0tjDV4mD2s_G-7gZm5FTKbW9xYo8,3164
354
365
  vellum/types/terminal_node_search_results_result.py,sha256=neeojsER6K17-Mw8pQ92qMELRa_7o140wXeuvUty99Y,1118
355
366
  vellum/types/terminal_node_string_result.py,sha256=AV-9qUXT0WJiftv_uv_qKSROXo8XEijEOMSshGU6JNA,1049
367
+ vellum/types/test_case_array_variable_value.py,sha256=XYHfiLkaBfW0JqzJyJeA8rAD1YSzoasYa2T5QXhHTAU,1078
356
368
  vellum/types/test_case_chat_history_variable_value.py,sha256=hi9BArWPk7im4X2091yGRfjpIgGPJSUBp9PqHA0ZH6w,1061
357
369
  vellum/types/test_case_error_variable_value.py,sha256=7WIe0DMvp8tBCcqyRHQpT76vTylwuW2YQ3jRPkfc-t0,1036
358
370
  vellum/types/test_case_function_call_variable_value.py,sha256=Auv--TyCGUOjs9z42ZB29tsGZ5khy7CmqSNWJe55Lzk,1053
@@ -360,7 +372,7 @@ vellum/types/test_case_json_variable_value.py,sha256=BsgNdPsgTh_Vxt3ZRkHy22foq2T
360
372
  vellum/types/test_case_number_variable_value.py,sha256=96vZuKZTm7AVa_r-xjTMTpQMRCCga-Pcfw0HLoAYkg8,996
361
373
  vellum/types/test_case_search_results_variable_value.py,sha256=lzExcnYAH8PWjWEfMj6rmhDnQG7YSLiU0bwH62N2dIk,1068
362
374
  vellum/types/test_case_string_variable_value.py,sha256=3-TIR-38VndZVe0fdPa0XPe-3PdUSCzYuffGQlH3WY4,991
363
- vellum/types/test_case_variable_value.py,sha256=2BMIxU6WOTBZ6UE0Q5w3nHUSpvh1bwJD7y2cbSJ222k,2834
375
+ vellum/types/test_case_variable_value.py,sha256=v54flEtZ_BgzYMuR0qmnuScrRYo27FxS8Tlxf5xJ85M,3193
364
376
  vellum/types/test_suite_run_deployment_release_tag_exec_config.py,sha256=DYsHB5DPs3Go5_oLu5_EaLtvtTLyoHQ0MWqmhmfLGS8,1373
365
377
  vellum/types/test_suite_run_deployment_release_tag_exec_config_data.py,sha256=4yR8eBKuOBxLm9eYlpQr03TH1FcvGtkN7B89BuQS_HE,1228
366
378
  vellum/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=9x9e-oxKOrbPibl2bOtrEY74Jhnr5jCrkJnmhv19E9w,1235
@@ -369,14 +381,15 @@ vellum/types/test_suite_run_deployment_release_tag_exec_config_type_enum.py,sha2
369
381
  vellum/types/test_suite_run_exec_config.py,sha256=ilF_6HuSMOt1csjBLGd8zzKB4BxbF1KL8okpD79xhag,1483
370
382
  vellum/types/test_suite_run_exec_config_request.py,sha256=cV_Yq4cbHK8MZxPp6RQqA6HerbTSyDPcZCyBULxELF0,1598
371
383
  vellum/types/test_suite_run_execution.py,sha256=IwWBhWtlqJvA0pmv0Tm5mKVGbEEk0TzIdOb1rApk4wM,1158
384
+ vellum/types/test_suite_run_execution_array_output.py,sha256=f1j8hHvDhUviKKisJJHTRjM7jvc0Y7hRfVuI7KUqAFc,1131
372
385
  vellum/types/test_suite_run_execution_chat_history_output.py,sha256=zY5gpMhhYUfQ36Uy2D-SshURvn2vUqGD57EvEiOuW7c,1115
373
386
  vellum/types/test_suite_run_execution_error_output.py,sha256=hY1TSU9-TvllhHvnubSy9F_JirzFFucL_5mbfllf8Eo,1089
374
387
  vellum/types/test_suite_run_execution_function_call_output.py,sha256=XrWHlNs4pOeVWbTgcgHJusr1JaM9o-vRFNRo3n-E3yk,1107
375
- vellum/types/test_suite_run_execution_json_output.py,sha256=jEcPAovcKOadRnodsQyu0wTGlT0fKoy9XfDUhU_702c,1066
388
+ vellum/types/test_suite_run_execution_json_output.py,sha256=ryhjtr6xZBtBg_ddHFR2rj5lpH_kz03knRJTlSlAzXk,1024
376
389
  vellum/types/test_suite_run_execution_metric_definition.py,sha256=r9K5M-dxQZ0SN2Sp7qCLHf0ai0C0F67-RC4zLnoNDJg,973
377
390
  vellum/types/test_suite_run_execution_metric_result.py,sha256=WKp6K3MhDlbBC245CT87YRsdPwrEkoLJUh8Ojzj3SO8,1218
378
391
  vellum/types/test_suite_run_execution_number_output.py,sha256=WB68g1AGxjSkYBLhEzSAr-B-5SkRQRb4VuZCCLppHrw,1047
379
- vellum/types/test_suite_run_execution_output.py,sha256=3OmxfK6ugKGyjA7udQ4p_E_nH7gCuvFefyCQZKkQU3g,3057
392
+ vellum/types/test_suite_run_execution_output.py,sha256=fxLZjpW88J8Skr6SnaATys4M7R7Qqqfqg2nVk62B-gk,3447
380
393
  vellum/types/test_suite_run_execution_search_results_output.py,sha256=m4O5h8DYWyGj0h5mwu7n5l_9UoTLvIXlZskdzJLTEg0,1122
381
394
  vellum/types/test_suite_run_execution_string_output.py,sha256=Q-iBSoRkgrqEp9PaJQC_yGKVUZs7aKPcaRzEIsWk-NI,1045
382
395
  vellum/types/test_suite_run_external_exec_config.py,sha256=O3r_NWl-a58UyBmZSYj6R8g4i8j-18zoL7jUttDK6r4,1331
@@ -386,10 +399,10 @@ vellum/types/test_suite_run_external_exec_config_request.py,sha256=CRuAm6lyb2DdD
386
399
  vellum/types/test_suite_run_external_exec_config_type_enum.py,sha256=yX-VwukrI1rPH7_R2D7sRlBioduW6q791zXWiODMlo0,148
387
400
  vellum/types/test_suite_run_metric_error_output.py,sha256=nB1kd7iypwUDOcTN8OeR_mYqMBF3PbS7guRjmFEy2D8,1005
388
401
  vellum/types/test_suite_run_metric_error_output_type_enum.py,sha256=ZPKy0jkcgfuMhI2hG_3UUcw2sYH1BlV_ze8Axlq5nIU,144
389
- vellum/types/test_suite_run_metric_number_output.py,sha256=HMMNcFF877aSOpODwPzOGyvlKg3a9fqJzb8ykjgSK4Q,963
402
+ vellum/types/test_suite_run_metric_number_output.py,sha256=1JNscEL7TcLftwhkqc1ly-PyWPa4J9HSNPu3mbovDVk,987
390
403
  vellum/types/test_suite_run_metric_number_output_type_enum.py,sha256=sXoES0zoliicpd66SwlF6xsVUjWSezGNkuxp6CthO2s,146
391
404
  vellum/types/test_suite_run_metric_output.py,sha256=QkHRKO1tnQWoeCq7xc7TfSiAjC927Ha2hdePBJeEn0A,1291
392
- vellum/types/test_suite_run_metric_string_output.py,sha256=KYr0myTzw-5EP_j8YAlMZzljD4LOs5ElHjk1eVM_WQY,961
405
+ vellum/types/test_suite_run_metric_string_output.py,sha256=hNWBC66dTLsfpfdn5QBuGxy6IJUrRV3TpsqVxao4HAA,985
393
406
  vellum/types/test_suite_run_metric_string_output_type_enum.py,sha256=6OKwFyk0SUq4IKp6yg_FAc3ADM0jVCK-chq5JR9iwqo,146
394
407
  vellum/types/test_suite_run_read.py,sha256=VcKvmpt3vFJCxh5qFO5AGtfZrwUNeDnyqwNPae8nufk,1500
395
408
  vellum/types/test_suite_run_state.py,sha256=E4f_AfzXBnxhObLLZ12dBzdoYlRm-gaTqkzrZQ_KfCo,197
@@ -400,7 +413,7 @@ vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha
400
413
  vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=P0zRtzh7ekun8pcEH2EFTB6p4Kq54cE955Vff4q6-dE,1405
401
414
  vellum/types/test_suite_run_workflow_release_tag_exec_config_type_enum.py,sha256=JMN3-aK8SWJzTli6c-j9xmHSYVwGND1PaZgGzwwkMjo,170
402
415
  vellum/types/test_suite_test_case.py,sha256=cD9k7hn3e8XT6-JLbJKo_EYROE4dXAm2n7-0ZtKsfJs,1131
403
- vellum/types/test_suite_test_case_bulk_operation_request.py,sha256=eDAZV9NwbvH_dhaTmzUaHC5858B47Dqz7Dq6_kIXtu0,1528
416
+ vellum/types/test_suite_test_case_bulk_operation_request.py,sha256=ittj5miLHwe8_Z9Mzh_pz5iEM_mblTCJZ6S1WVpsBJk,1977
404
417
  vellum/types/test_suite_test_case_bulk_result.py,sha256=Cu3zBu6PFltkTsQRcdzA5dcVAyESK6U3jMcMfe28K44,1798
405
418
  vellum/types/test_suite_test_case_create_bulk_operation_request.py,sha256=mCTw56KoJa2KbgHdhbq283AELwcINpt1-pk1CDfmkcA,1257
406
419
  vellum/types/test_suite_test_case_created_bulk_result.py,sha256=hUH8duBtZsrWXp7p0kZeCoP5W48Ioui-9fjoXycCnSA,1094
@@ -409,10 +422,11 @@ vellum/types/test_suite_test_case_delete_bulk_operation_data_request.py,sha256=J
409
422
  vellum/types/test_suite_test_case_delete_bulk_operation_request.py,sha256=UWtptA-rAuDaBL133784D8jn015t__y8NQV1Q7XXDmk,1395
410
423
  vellum/types/test_suite_test_case_deleted_bulk_result.py,sha256=1CsSapclH45R6Jje8D5fPDvzajUsaMtNbfMIYu0FZuU,1261
411
424
  vellum/types/test_suite_test_case_deleted_bulk_result_data.py,sha256=ua_wuUfrrXSYbG-m17Hdw1lEJBQnzn8s6M6W2t0RvHA,943
412
- vellum/types/test_suite_test_case_rejected_bulk_result.py,sha256=gvBqlLu-vxRVJIweNaTOS_LSm_JMfLlzPxMUTgYwS0c,1247
425
+ vellum/types/test_suite_test_case_rejected_bulk_result.py,sha256=Oe1gGRiIvdoBLWFD2I6qjfB8FuQOoqJud_GhT4Uorns,1276
413
426
  vellum/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=QY3QE2dOBuFt8uy_G7wUaMSZTWEh5610-yO9m89XnnA,1262
414
427
  vellum/types/test_suite_test_case_replaced_bulk_result.py,sha256=36m3raleko_4VQXCIGexVlHZ8CiIJ9Fg73vv3Bivuck,1266
415
428
  vellum/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=fbH0CsKTE-bhEqzCa_ZFR2X3aX7JhungfEfueuIQkP4,945
429
+ vellum/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=jEAJowLOLOqKdB815MjWmQfhulLvs_i1ABTGxTvRcto,1258
416
430
  vellum/types/text_embedding_3_large_enum.py,sha256=mniEbUgFr40fnVAGnlL_aNaFET3PhrQ8flune0mm2H4,147
417
431
  vellum/types/text_embedding_3_small_enum.py,sha256=_fBJkCGGk8o9FD19oWq_ARJHIU3KjPTKMPGSvAe3Vxw,147
418
432
  vellum/types/text_embedding_ada_002_enum.py,sha256=FzY5woDqAEElY-ulFR9u7Rrw93KKhGiVwBkrmE1URxM,147
@@ -423,6 +437,8 @@ vellum/types/token_overlapping_window_chunking.py,sha256=Xlaj2rKEzsU8w46g5u1T5rS
423
437
  vellum/types/token_overlapping_window_chunking_request.py,sha256=D1kS86Haw3FPZKimh-JifYlN06alsvyRtymwgBctffs,1106
424
438
  vellum/types/upload_document_error_response.py,sha256=2OujdWv40S6dfpPg1XOY7VurwOWeXs-RhRAKzqDEE6k,866
425
439
  vellum/types/upload_document_response.py,sha256=VsKBPRKSTblu_M0GS2rJMd-9ZK4Gm4dhUtV0EQnuags,946
440
+ vellum/types/upsert_enum.py,sha256=xh9h6HNr4Y1dBeBNt72paNfVC3fj3V44mAfNAy-imeM,118
441
+ vellum/types/upsert_test_suite_test_case_request.py,sha256=D6m4oOTqb5n47Yc5edbx2UnRlsriVpu8nseJ0fNaC58,2121
426
442
  vellum/types/vellum_error.py,sha256=WjaUKAuuRVNOXC630oAM0A6n6pD6AXndbZVZ44WszQ4,937
427
443
  vellum/types/vellum_error_code_enum.py,sha256=87F6QjCk6b6x-fcIsf0qGpKTZsn6zn984TL_LOFjVZU,233
428
444
  vellum/types/vellum_error_request.py,sha256=xhNAtPkUFsAIzyLMGekTSTdZrAjPitBTChb55RHHVYU,944
@@ -439,6 +455,7 @@ vellum/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDH
439
455
  vellum/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
440
456
  vellum/types/workflow_execution_node_result_event.py,sha256=qIjztqor0UcBTxbq7w7Is98Mqu0IgggUKY24qOHal4s,1139
441
457
  vellum/types/workflow_execution_workflow_result_event.py,sha256=PyMUdEwRMd8vjdimdcOXSvzPNd3PoacfDKuEmdrzpTU,1134
458
+ vellum/types/workflow_expand_meta_request.py,sha256=58J4L8hdpIeDBy3mMtEpiVVxsjueSQNxG3rdlm5DC3Y,1068
442
459
  vellum/types/workflow_node_result_data.py,sha256=OsGHVua3RRKrZvKZuWDcjyepXGGjmikrWosz7LNWKSY,3937
443
460
  vellum/types/workflow_node_result_event.py,sha256=0tSTva8wAxMKSGWrbSRADqGcbR_A6FMSR7xkYLP9rZg,1745
444
461
  vellum/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
@@ -448,7 +465,7 @@ vellum/types/workflow_output_chat_history.py,sha256=w77iHmsJKjmwGcjLgVSlz_JubZ5_
448
465
  vellum/types/workflow_output_error.py,sha256=W3Slj5xldWOz_RE6swVoai-0JlEIffDbnYh81bPTTLA,1106
449
466
  vellum/types/workflow_output_function_call.py,sha256=9Xa7ZSdEVtnPFLO7AXDpXyo1C7BVbW88IaT7BI5KB9o,1123
450
467
  vellum/types/workflow_output_image.py,sha256=7ZXS2nmcPM_7L4fYHgHXz_DCIdhOymfJ3FyZSYQCOHk,1106
451
- vellum/types/workflow_output_json.py,sha256=XhuFKHZ5JHm8NzvR2ykXO8siNP_jmJ-8F3nfEzTqlzY,1082
468
+ vellum/types/workflow_output_json.py,sha256=Tb9LvMSPK3AcnD69O4BZemkGZQ5uqwpvTbpdjNnAHvI,1040
452
469
  vellum/types/workflow_output_number.py,sha256=rgQjAUOeA8iSBDv4ftS3gTN70tdQq6DheTwk5nxOIRo,1063
453
470
  vellum/types/workflow_output_search_results.py,sha256=qknZXGjUGF8SHU_IoSgNqrC2a7_Ohp6Mq4X9alnl7XA,1138
454
471
  vellum/types/workflow_output_string.py,sha256=HyywOoEJFYubNLiJwGBpWxUtZgnbGgMsBxxs2RoPtA4,1061
@@ -456,7 +473,7 @@ vellum/types/workflow_release_tag_read.py,sha256=UDIEV1eS580RpHgEF6lL7PXO98ryvJF
456
473
  vellum/types/workflow_release_tag_workflow_deployment_history_item.py,sha256=McEyeNptAS7mj5HrKQYLsE-fJCImxwLhMSvBwwIHfRA,1103
457
474
  vellum/types/workflow_request_chat_history_input_request.py,sha256=RE_TFOEcG_3dyZsclTc6OGbK_s-kIy-EMluL2CKA5i8,1137
458
475
  vellum/types/workflow_request_input_request.py,sha256=UgAzjnJR5zJSPZhD_E9h3FaV738ebLNIhpI_SJBgQ0Q,1772
459
- vellum/types/workflow_request_json_input_request.py,sha256=pQmLN51AlOVNSd1jJ_lxItChLoIUCn1Rgwa9MhfytQA,1066
476
+ vellum/types/workflow_request_json_input_request.py,sha256=gRVuP1NBupCx3jOIDF57rMWpev3-_SoWhH08Uy15mQE,1048
460
477
  vellum/types/workflow_request_number_input_request.py,sha256=NohfBVNkLaijXUPSm4hRFdgVPCkKznUe71QyCU-uBAs,1047
461
478
  vellum/types/workflow_request_string_input_request.py,sha256=4A_v_rBFZ2TtZeYOgFQuHFROnT55VfF_yOqsoWCScrk,1045
462
479
  vellum/types/workflow_result_event.py,sha256=W5VJ5CQdzL9AHI5AUrdCFsGsrWns0w5L7CL0Klkd7nU,1475
@@ -465,13 +482,13 @@ vellum/types/workflow_result_event_output_data_array.py,sha256=qh3kxmE2fArLwx18Z
465
482
  vellum/types/workflow_result_event_output_data_chat_history.py,sha256=fcf7oAIKey0mIweuqKT0RVRlnQ_Qi63dDCbbObrVl7A,1400
466
483
  vellum/types/workflow_result_event_output_data_error.py,sha256=o3TGpLkiDrN76L2xLq-KDVsDCCvKlDkd3woEpgNffG4,1375
467
484
  vellum/types/workflow_result_event_output_data_function_call.py,sha256=lPIyG5iGpCT9hA9TXs-2378oHazHH8xMYn-a-THfsVQ,1392
468
- vellum/types/workflow_result_event_output_data_json.py,sha256=zohM9viDuiXQWVtOFulzs1_-eV8cM-iYbz8oxV3QxX4,1351
485
+ vellum/types/workflow_result_event_output_data_json.py,sha256=KlMHjOyPPz5Pi1aLATRZAl7B0ZDNhcUE02A120RNO28,1309
469
486
  vellum/types/workflow_result_event_output_data_number.py,sha256=5Dk2kq98Ou0E8ipNn1blwV0_vpzCNJKMkb89uptNgEs,1332
470
487
  vellum/types/workflow_result_event_output_data_search_results.py,sha256=gazaUrC5WRQkvCc7BGqGVkzUtJPTsEaIOgfUbnOod94,1407
471
488
  vellum/types/workflow_result_event_output_data_string.py,sha256=aVWIIGbLj4TJJhTTj6WzhbYXQkcZatKuhhNy8UYwXbw,1482
472
489
  vellum/types/workflow_stream_event.py,sha256=KA6Bkk_XA6AIPWR-1vKnwF1A8l_Bm5y0arQCWWWRpsk,911
473
490
  vellum/version.py,sha256=neLt8HBHHUtDF9M5fsyUzHT-pKooEPvceaLDqqIGb0s,77
474
- vellum_ai-0.6.9.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
475
- vellum_ai-0.6.9.dist-info/METADATA,sha256=T7NTne4Imv4xgnDZnD2QrOmjeoJmwPim5UyD2bX6e7g,3872
476
- vellum_ai-0.6.9.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
477
- vellum_ai-0.6.9.dist-info/RECORD,,
491
+ vellum_ai-0.7.2.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
492
+ vellum_ai-0.7.2.dist-info/METADATA,sha256=b-QWLFz6tkU0EO2E-ZmEpoB7xFRJPwHgFbO0KfGv0sw,3872
493
+ vellum_ai-0.7.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
494
+ vellum_ai-0.7.2.dist-info/RECORD,,