vellum-ai 0.14.81__py3-none-any.whl → 0.14.83__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 (55) hide show
  1. vellum/__init__.py +10 -0
  2. vellum/client/README.md +1 -9
  3. vellum/client/__init__.py +44 -24
  4. vellum/client/core/client_wrapper.py +2 -1
  5. vellum/client/core/http_client.py +0 -2
  6. vellum/client/core/jsonable_encoder.py +0 -1
  7. vellum/client/core/pydantic_utilities.py +1 -3
  8. vellum/client/core/serialization.py +1 -2
  9. vellum/client/reference.md +8 -0
  10. vellum/client/resources/ad_hoc/client.py +20 -12
  11. vellum/client/resources/deployments/client.py +6 -2
  12. vellum/client/resources/documents/client.py +10 -0
  13. vellum/client/types/__init__.py +10 -0
  14. vellum/client/types/container_image_build_config.py +1 -0
  15. vellum/client/types/document_read.py +5 -0
  16. vellum/client/types/execution_thinking_vellum_value.py +31 -0
  17. vellum/client/types/execution_vellum_value.py +2 -0
  18. vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001.py +21 -0
  19. vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py +21 -0
  20. vellum/client/types/indexing_config_vectorizer.py +2 -0
  21. vellum/client/types/indexing_config_vectorizer_request.py +2 -0
  22. vellum/client/types/prompt_output.py +4 -1
  23. vellum/client/types/thinking_vellum_value.py +25 -0
  24. vellum/client/types/thinking_vellum_value_request.py +25 -0
  25. vellum/client/types/vellum_value.py +2 -0
  26. vellum/client/types/vellum_value_request.py +2 -0
  27. vellum/client/types/vellum_variable_type.py +1 -0
  28. vellum/client/types/workflow_sandbox_example.py +2 -0
  29. vellum/types/execution_thinking_vellum_value.py +3 -0
  30. vellum/types/google_vertex_ai_vectorizer_gemini_embedding_001.py +3 -0
  31. vellum/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py +3 -0
  32. vellum/types/thinking_vellum_value.py +3 -0
  33. vellum/types/thinking_vellum_value_request.py +3 -0
  34. vellum/workflows/nodes/displayable/__init__.py +2 -0
  35. vellum/workflows/nodes/displayable/inline_prompt_node/node.py +3 -0
  36. vellum/workflows/nodes/displayable/prompt_deployment_node/node.py +3 -0
  37. vellum/workflows/nodes/displayable/tool_calling_node/__init__.py +3 -0
  38. vellum/workflows/nodes/{experimental → displayable}/tool_calling_node/node.py +4 -21
  39. vellum/workflows/nodes/{experimental → displayable}/tool_calling_node/tests/test_node.py +1 -1
  40. vellum/workflows/nodes/{experimental → displayable}/tool_calling_node/tests/test_utils.py +1 -1
  41. vellum/workflows/nodes/{experimental → displayable}/tool_calling_node/utils.py +22 -57
  42. vellum/workflows/nodes/experimental/__init__.py +1 -1
  43. vellum/workflows/nodes/experimental/tool_calling_node/__init__.py +1 -1
  44. vellum/workflows/state/encoder.py +2 -2
  45. {vellum_ai-0.14.81.dist-info → vellum_ai-0.14.83.dist-info}/METADATA +1 -1
  46. {vellum_ai-0.14.81.dist-info → vellum_ai-0.14.83.dist-info}/RECORD +55 -44
  47. vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +1 -104
  48. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py +1 -6
  49. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py +1 -17
  50. vellum_ee/workflows/display/workflows/base_workflow_display.py +10 -5
  51. vellum_ee/workflows/tests/test_serialize_module.py +1 -1
  52. /vellum/workflows/nodes/{experimental → displayable}/tool_calling_node/tests/__init__.py +0 -0
  53. {vellum_ai-0.14.81.dist-info → vellum_ai-0.14.83.dist-info}/LICENSE +0 -0
  54. {vellum_ai-0.14.81.dist-info → vellum_ai-0.14.83.dist-info}/WHEEL +0 -0
  55. {vellum_ai-0.14.81.dist-info → vellum_ai-0.14.83.dist-info}/entry_points.txt +0 -0
@@ -62,7 +62,7 @@ vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=h93ysol
62
62
  vellum_ee/workflows/display/nodes/vellum/tests/test_search_node.py,sha256=KvByxgbUkVyfPIVxTUBUk6a92JiJMi8eReZWxzfPExU,3864
63
63
  vellum_ee/workflows/display/nodes/vellum/tests/test_subworkflow_deployment_node.py,sha256=BUzHJgjdWnPeZxjFjHfDBKnbFjYjnbXPjc-1hne1B2Y,3965
64
64
  vellum_ee/workflows/display/nodes/vellum/tests/test_templating_node.py,sha256=LSk2gx9TpGXbAqKe8dggQW8yJZqj-Cf0EGJFeGGlEcw,3321
65
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=YMoLNWknmSsFj7MtprenOYuXTX1VWUQ2bXZs_p76gBg,8163
65
+ vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=bSMWCwD-niSx3MQPtgsLXjIf6zynQxZdpmeaOM6H3QA,4580
66
66
  vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=Khjsb53PKpZuyhKoRMgKAL45eGp5hZqXvHmVeQWRw4w,2289
67
67
  vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=3LS1O4DGPWit05oj_ubeW8AlHGnoBxdUMferGQuAiZs,4851
68
68
  vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=z9Omo676RRc7mQjLoL7hjiHhUj0OWVLhrrb97YTN4QA,4086
@@ -93,8 +93,8 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_search_node_
93
93
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py,sha256=XWrhHg_acLsRHwjstBAii9Pmes9oXFtAUWSAVF1oSBc,11225
94
94
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_node_serialization.py,sha256=V8b6gKghLlO7PJI8xeNdnfn8aII0W_IFQvSQBQM62UQ,7721
95
95
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=hDWtKXmGI1CKhTwTNqpu_d5RkE5n7SolMLtgd87KqTI,3856
96
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py,sha256=6q-lTGMp5HbQba3NsHUFSit8_zEBxIVPGE8yCw4SVx0,25720
97
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py,sha256=aY76l9s_2nezx7hCfUZsPYFzvYMy-Rjd73G0DlL6s6A,9348
96
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py,sha256=Nu5XZeGbqev638Osd9Vu17JE74ZWAHsrhYi9Uk-xLr8,25489
97
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py,sha256=PR2bLdtl0QuA9WbvZGNBpPeQy1xOV6UeALKpJSRSCEY,8712
98
98
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=mova0sPD3evHiHIN1O0VynxlCp-uOcEIKve5Pd_oCDg,4069
99
99
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py,sha256=pLCyMScV88DTBXRH7jXaXOEA1GBq8NIipCUFwIAWnwI,2771
100
100
  vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=J4ouI8KxbMfxQP2Zq_9cWMGYgbjCWmKzjCJEtnSJb0I,5829
@@ -110,7 +110,7 @@ vellum_ee/workflows/display/utils/tests/test_auto_layout.py,sha256=vfXI769418s9v
110
110
  vellum_ee/workflows/display/utils/vellum.py,sha256=mtoXmSYwR7rvrq-d6CzCW_auaJXTct0Mi1F0xpRCiNQ,5627
111
111
  vellum_ee/workflows/display/vellum.py,sha256=o7mq_vk2Yapu9DDKRz5l76h8EmCAypWGQYe6pryrbB8,3576
112
112
  vellum_ee/workflows/display/workflows/__init__.py,sha256=kapXsC67VJcgSuiBMa86FdePG5A9kMB5Pi4Uy1O2ob4,207
113
- vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=ZFZ8E2mIA-2aWnP9eRT_Z1s4efh7mTcdS8TQMlsICMY,40890
113
+ vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=_gbMjULwEV6S7rLQKPNuuaD1LoTNf2WWTUkVqxQvG04,41153
114
114
  vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py,sha256=gxz76AeCqgAZ9D2lZeTiZzxY9eMgn3qOSfVgiqYcOh8,2028
115
115
  vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=L7SKWJ26Ex-XXTNfHYXux7KP6I-dxE1EMQylap4Mhjs,31762
116
116
  vellum_ee/workflows/display/workflows/vellum_workflow_display.py,sha256=aaKdmWrgEe5YyV4zuDY_4E3y-l59rIHQnNGiPj2OWxQ,359
@@ -136,38 +136,38 @@ vellum_ee/workflows/tests/local_workflow/nodes/final_output.py,sha256=ZX7zBv87zi
136
136
  vellum_ee/workflows/tests/local_workflow/nodes/templating_node.py,sha256=NQwFN61QkHfI3Vssz-B0NKGfupK8PU0FDSAIAhYBLi0,325
137
137
  vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIPLsmrVS_aVEZEc-wULSv787Q,393
138
138
  vellum_ee/workflows/tests/test_display_meta.py,sha256=PkXJVnMZs9GNooDkd59n4YTBAX3XGPQWeSSVbhehVFM,5112
139
- vellum_ee/workflows/tests/test_serialize_module.py,sha256=qcHbl6YaKtJebQJvw0OXCVlJXLkj6sjkbSMu05zXI0U,1874
139
+ vellum_ee/workflows/tests/test_serialize_module.py,sha256=EVrCRAP0lpvd0GIDlg2tnGfJzDNooNDXPfGFPLAqmbI,1870
140
140
  vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
141
141
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
142
- vellum/__init__.py,sha256=GQqR0tDU6_sjyk9pP-0qqV7Rrk1p5b8ObQKR5Xnr4o8,42510
143
- vellum/client/README.md,sha256=CuGUYnaE0Imt0KqQ4sIPaUghCjLHkF3DdEvZWu14-8s,4807
144
- vellum/client/__init__.py,sha256=AYopGv2ZRVn3zsU8_km6KOvEHDbXiTPCVuYVI7bWvdA,120166
142
+ vellum/__init__.py,sha256=4RAS94IJNzJ0I4ywijtwTf9hPuwjHWjOs4ObAioCZF4,42908
143
+ vellum/client/README.md,sha256=47bNYmRLSISR1ING58kXXZ88nFLPGFv0bAspBtuXG3g,4306
144
+ vellum/client/__init__.py,sha256=tKLc-F8I8_62RSZg7J7Lvo1dUQ_or7DGsDhbMyhWfGA,120958
145
145
  vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
146
146
  vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
147
- vellum/client/core/client_wrapper.py,sha256=RGItlYpaVjeK3lxB5PIvrtQu08YDkuzJF7ACN4HgnNk,1869
147
+ vellum/client/core/client_wrapper.py,sha256=gyJ24Al-cSBb6icVWcF_yAoQvYKVUbmtxfrRau6GtS8,1916
148
148
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
149
149
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
150
- vellum/client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
151
- vellum/client/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
152
- vellum/client/core/pydantic_utilities.py,sha256=lnpQ0SFnoVDtFp7vSHt5lmBXWeqgg03VWWo6CiYLocw,12268
150
+ vellum/client/core/http_client.py,sha256=cKs2w0ybDBk1wHQf-fTALm_MmvaMe3cZKcYJxqmCxkE,19539
151
+ vellum/client/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
152
+ vellum/client/core/pydantic_utilities.py,sha256=3r9fa6Fh11FfgRUM7p7OkffLEZGW481fe27XW4Wl8yg,12266
153
153
  vellum/client/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
154
154
  vellum/client/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
155
155
  vellum/client/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
156
- vellum/client/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
156
+ vellum/client/core/serialization.py,sha256=AMtvLgUpF6ugN96V7bvOMP3W-z06gH2n4-1vl9nPbLE,9600
157
157
  vellum/client/environment.py,sha256=bcAFjoE9XXd7tiysYS90Os669IJmUMZS2JZ_ZQn0Dpg,498
158
158
  vellum/client/errors/__init__.py,sha256=HZB8vVqzDNx0M2uFJ05S5RcGTH95iVDl4v3rQ4xRqSw,343
159
159
  vellum/client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
160
160
  vellum/client/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
161
161
  vellum/client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
162
162
  vellum/client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
163
- vellum/client/reference.md,sha256=AG_zpL_pTZNHF9fEU-3I74QxAfCfCAsUrOXizL2PWig,91317
163
+ vellum/client/reference.md,sha256=7GWLlL9oly8ZpNifMwfP8DYqKu_j2b0JdKcgJxc98ZA,91496
164
164
  vellum/client/resources/__init__.py,sha256=XgQao4rJxyYu71j64RFIsshz4op9GE8-i-C5GCv-KVE,1555
165
165
  vellum/client/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
166
- vellum/client/resources/ad_hoc/client.py,sha256=rtpiGR6j8CcXSnN6UW_jYwLLdfJ9dwkTm_nta9oRzno,25933
166
+ vellum/client/resources/ad_hoc/client.py,sha256=1jTid6izei9QcnZHjx8jBxAIf9ig2y0vpFPPX6WJM6A,26301
167
167
  vellum/client/resources/container_images/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
168
168
  vellum/client/resources/container_images/client.py,sha256=N9Xe-IyuZigbZum3MZFqgZrVKgfNOTGFxK83alHra04,15181
169
169
  vellum/client/resources/deployments/__init__.py,sha256=m64MNuPx3qVazOnTNwOY8oEeDrAkNwMJvUEe5xoMDvs,239
170
- vellum/client/resources/deployments/client.py,sha256=VD04bAnLnGDD4OowDTHOniuWLZf287teJVamoQ0OnMg,43592
170
+ vellum/client/resources/deployments/client.py,sha256=pJQLqwLbQSZiaSHeQMnSO52cVhwiyqBPsnqbOJt2eso,43708
171
171
  vellum/client/resources/deployments/types/__init__.py,sha256=29GVdoLOJsADSSSqZwb6CQPeEmPjkKrbsWfru1bemj8,321
172
172
  vellum/client/resources/deployments/types/deployments_list_request_status.py,sha256=CxlQD16KZXme7x31YYCe_3aAgEueutDTeJo5A4Au-aU,174
173
173
  vellum/client/resources/deployments/types/list_deployment_release_tags_request_source.py,sha256=hRGgWMYZL9uKCmD_2dU8-u9RCPUUGItpNn1tUY-NXKY,180
@@ -176,7 +176,7 @@ vellum/client/resources/document_indexes/client.py,sha256=2zt85keRD9DEN9Z-dkHn7G
176
176
  vellum/client/resources/document_indexes/types/__init__.py,sha256=IoFqKHN_VBdEhC7VL8_6Jbatrn0e0zuYEJAJUahcUR0,196
177
177
  vellum/client/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=sfUEB0cvOSmlE2iITqnMVyHv05Zy2fWP4QjCIYqMg0M,178
178
178
  vellum/client/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
179
- vellum/client/resources/documents/client.py,sha256=yCbgKjv-qJG46VUJugCM903f1uB03JOhUSw2Q8wrP_c,25908
179
+ vellum/client/resources/documents/client.py,sha256=g9fOsSxk7SLwFw5K7c-YV-KWSmz1-Ng69Rpi16G3U1E,26436
180
180
  vellum/client/resources/folder_entities/__init__.py,sha256=QOp7UMMB3a32GrfVaud35ECn4fqPBKXxCyClsDgd6GE,175
181
181
  vellum/client/resources/folder_entities/client.py,sha256=wlmGYzrgM0GwvpVqNXBzblUdaDm4foFLto5OZ53joJk,11288
182
182
  vellum/client/resources/folder_entities/types/__init__.py,sha256=cHabrupjC-HL3kj-UZ9WdVzqHoQHCu6QsLFB3wlOs7k,212
@@ -212,7 +212,7 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
212
212
  vellum/client/resources/workspace_secrets/client.py,sha256=zlBdbeTP6sqvtyl_DlrpfG-W5hSP7tJ1NYLSygi4CLU,8205
213
213
  vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
214
214
  vellum/client/resources/workspaces/client.py,sha256=RthwzN1o-Jxwg5yyNNodavFyNUSxfLoTv26w3mRR5g8,3595
215
- vellum/client/types/__init__.py,sha256=DPbl8CjtbEKqhlsrTZxdRgx2vvJ9ZVvD20RO2AERRGM,64415
215
+ vellum/client/types/__init__.py,sha256=NgEh6I44X4Hwrd4lIswu7QPHzuWoxmej9p4JYsSJJb8,65043
216
216
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
217
217
  vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
218
218
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=oDG60TpwK1YNSKhRsBbiP2O3ZF9PKR-M9chGIfKw4R4,1004
@@ -279,7 +279,7 @@ vellum/client/types/components_schemas_prompt_version_build_config_sandbox.py,sh
279
279
  vellum/client/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
280
280
  vellum/client/types/conditional_node_result.py,sha256=vx8xo9F1KoJqOnYPtSevfOcBxKYAk8J8JGWFr1c4UO8,784
281
281
  vellum/client/types/conditional_node_result_data.py,sha256=yk4E7KHSzmKlweI9ce9eN_iW08V70KGmG1Z0K5455T0,604
282
- vellum/client/types/container_image_build_config.py,sha256=KJnx5PNdLJajPEa4A75GM7tN1nsZKS9JjWxm3-tpSlU,659
282
+ vellum/client/types/container_image_build_config.py,sha256=KcMGkFl6yMTLum4FUhlFXg5yPF1Z_Ru8Mgpm2lbMN10,704
283
283
  vellum/client/types/container_image_container_image_tag.py,sha256=ph9Xs0R386viUofCITdUfIKCLaDJokY5nzczf0iReuA,622
284
284
  vellum/client/types/container_image_read.py,sha256=pm2gZp08JgZh15pH__voBvJ2U7k39_cHe6h2bV89FKY,1137
285
285
  vellum/client/types/create_test_suite_test_case_request.py,sha256=3LmAy6U8tUJ75dmmnMMJyAJ4_xp7TT3iTzks8C8fHJk,1508
@@ -300,7 +300,7 @@ vellum/client/types/document_index_indexing_config_request.py,sha256=Wt-ys1o_acH
300
300
  vellum/client/types/document_index_read.py,sha256=ePngiRszr65HLl9D0_FUdhAdMe84nRwyM3cKbr8rFpg,1177
301
301
  vellum/client/types/document_processing_state.py,sha256=ISlurj7jQzwHzxPzDZTqeAIgSIIGMBBPgcOSoe04pTU,211
302
302
  vellum/client/types/document_prompt_block.py,sha256=sgFxN48PILFuuF2KUIwks6PbJ3XH6sCE_8ydLEE_doU,1019
303
- vellum/client/types/document_read.py,sha256=U3YcFLF9exeZYAhLErEdAc_vVTtWZ8efXDKmmcabshg,1661
303
+ vellum/client/types/document_read.py,sha256=-KUCyU6OYiOG0QlDG3ci7J3MQGIoVza8U9sdakeiSWI,1853
304
304
  vellum/client/types/document_status.py,sha256=GD_TSoFmZUBJnPl-chAmaQFzQ2_TYO3PSqi3-9QfEHE,122
305
305
  vellum/client/types/document_vellum_value.py,sha256=a8WQhyntwy80iN9j8L9F5v6Jmq1L4j0ETJo9c9VGabs,768
306
306
  vellum/client/types/document_vellum_value_request.py,sha256=utpoRMMVhMIsa4S4ZOaOr2lX76BgrOVolPxCwy9-pUw,797
@@ -330,7 +330,8 @@ vellum/client/types/execution_json_vellum_value.py,sha256=oGY3CsJBKeOuEexmITfRYc
330
330
  vellum/client/types/execution_number_vellum_value.py,sha256=b2TpqyafRHCdl6EhgctNgUSLU-JBdouU6OgM8Jk_O78,809
331
331
  vellum/client/types/execution_search_results_vellum_value.py,sha256=HkxoXaUF6pMbfXd5wLk5VKmcXed2IRfEzkxsoGpwmg0,898
332
332
  vellum/client/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBggP7XkcdE_D2lGmEobkXWY7o,807
333
- vellum/client/types/execution_vellum_value.py,sha256=PpbrbJdSioqaqT2gZ6mx2Ht0Oy8XGyxBDcLFfPqUBIA,980
333
+ vellum/client/types/execution_thinking_vellum_value.py,sha256=5WGuCVue3OMAdM881fDUFGjwOuWhImT6ALQq1qHyTks,866
334
+ vellum/client/types/execution_vellum_value.py,sha256=gJ4UWA4KKzWGJZpEZGQV8Efqh27PmyWz6RZSsbtNux8,1088
334
335
  vellum/client/types/external_input_descriptor.py,sha256=ErOW2OfFMz1FDGmVY6NgiUBPsleaWhdJBekwFp4ru7o,805
335
336
  vellum/client/types/external_test_case_execution.py,sha256=TkO1CQcEI8LA7sdYJfAqhbdkj27sXEkF8VL7zBeDBM4,877
336
337
  vellum/client/types/external_test_case_execution_request.py,sha256=xd80GZg4FbZP6FZRIhZL9V1uFetI3bcCj-wzanco5tQ,921
@@ -378,6 +379,8 @@ vellum/client/types/generate_stream_result.py,sha256=d661Ptq-XDyoKGYYUgs7htUkuRo
378
379
  vellum/client/types/generate_stream_result_data.py,sha256=-wzHLPkJrCNL_7vQuX-nZKi3wKxJ8v1j8DRzLmagVNU,697
379
380
  vellum/client/types/google_vertex_ai_vectorizer_config.py,sha256=okGOJl721ONG1_aq1cphZ23WAJfi0FwLdwEoiuMMJP4,595
380
381
  vellum/client/types/google_vertex_ai_vectorizer_config_request.py,sha256=0SnNAz4PAgzCjB_BChH1AYwwkOXbW9ed1EO2KXuDwCo,602
382
+ vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001.py,sha256=c1Q6yELRJ1VRFHZyNq2pqzIipVWb4LgBkBe8FcMsAzs,773
383
+ vellum/client/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py,sha256=Q7rp83x7EVn_d3Bw5rzRGt0yl_dX0bCRqxw_vrZh7xw,802
381
384
  vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004.py,sha256=V2owWci9ffII48PKfqOalDSliBA1JLholvPQYhknJ9o,767
382
385
  vellum/client/types/google_vertex_ai_vectorizer_text_embedding_004_request.py,sha256=L_3gq3pe8JKvGg9ufsrhvHekQAveyzD9uzoxl2arwkE,796
383
386
  vellum/client/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py,sha256=MoukrZZsuDVze43vuS5bEYygI6Jpok5QJTYPjHEz0tg,805
@@ -389,8 +392,8 @@ vellum/client/types/image_chat_message_content_request.py,sha256=b0K1NnY-NneG_V3
389
392
  vellum/client/types/image_prompt_block.py,sha256=JIcfWZAWYcOm04Y6XjmxPG58SaoXwIjuZwnVypEVahU,1008
390
393
  vellum/client/types/image_vellum_value.py,sha256=69XnqE9m-bd3dOdMD73WtfDm_kDrVg-y3fi35akuqsk,748
391
394
  vellum/client/types/image_vellum_value_request.py,sha256=-Q66T8M6fAf9K_v0LeRwZjB_6pkBUSyMUQc6plRRK5E,777
392
- vellum/client/types/indexing_config_vectorizer.py,sha256=pVZ5mCY75LQD15r83IMmPmt8tK__kSFlBd62szI_ZYw,1673
393
- vellum/client/types/indexing_config_vectorizer_request.py,sha256=q2pC4oIEy74xCgsl4hOnHtNA4BRYhQsbiHOn_IdT3V8,1900
395
+ vellum/client/types/indexing_config_vectorizer.py,sha256=d9HrryJRZR74y86oez9_yVn5HIFHD0UDQngsHvxGrro,1826
396
+ vellum/client/types/indexing_config_vectorizer_request.py,sha256=uCl_42CcthsZ26iIP4LpWRRrUXUttDIp67kbhmzJfPY,2075
394
397
  vellum/client/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwFYiel1U,213
395
398
  vellum/client/types/initiated_ad_hoc_execute_prompt_event.py,sha256=B34Q2aU2vj9qpjpWXIieN839iB7t4EWCD9mmCfbkwpo,915
396
399
  vellum/client/types/initiated_execute_prompt_event.py,sha256=tHt80ZIuKk6B85IQqSF3MQqiSSiBsSP2Aw3XuD5xk6E,893
@@ -524,7 +527,7 @@ vellum/client/types/prompt_execution_meta.py,sha256=3hhMZgdAR5mKfnh2e_eVN3oKfT0E
524
527
  vellum/client/types/prompt_node_execution_meta.py,sha256=IyWH__nCp5uwS0N32b2ZEsA-Fv7AZDB4nnlRZayU2Gc,888
525
528
  vellum/client/types/prompt_node_result.py,sha256=3jewO-nPodoXTq_5RxgwhKfDZrvoPjRZ_vUXLeqiuHY,749
526
529
  vellum/client/types/prompt_node_result_data.py,sha256=fNOxBfK3ablDBxkUWVVstJMYaGdHGgu27WxP87E6UQ4,872
527
- vellum/client/types/prompt_output.py,sha256=NpDGJNIYIivzQJnBeoJLpJlCk7gqBESLwv5Qtn_20qQ,398
530
+ vellum/client/types/prompt_output.py,sha256=YRHDKRB2Yn3GS7pzY-cH17gtjcvew0vP0hls_tzWF3o,480
528
531
  vellum/client/types/prompt_parameters.py,sha256=Vkwh4zI9gX1DuGQxrWiUUa1TshTfnPlS7_yRrziD5qg,1046
529
532
  vellum/client/types/prompt_push_response.py,sha256=Un61pv4kVH0Omd8OKVfTk1yZ1RWrwuquAgl1vanb04Y,601
530
533
  vellum/client/types/prompt_request_chat_history_input.py,sha256=DB2io5piMSyA89f5lnIVYO4MLZoNALNSufx8Y-oOwOE,790
@@ -696,6 +699,8 @@ vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py,sha25
696
699
  vellum/client/types/test_suite_test_case_replaced_bulk_result.py,sha256=BIlXI7udygWrwtyRhCl8hmExHbkAl9lI8s3sm1G5iGc,1019
697
700
  vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=ORmcUvwzvRLRaoFhxdXFIKzPxOI6PU1kESl0R6rsJuw,651
698
701
  vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=PrKuqePiXBQv6iLAxsk4xQg29KGdOlqMDhIVdGNxuz4,1071
702
+ vellum/client/types/thinking_vellum_value.py,sha256=q6IZFZrAXkoYCQOfHLLKWCTYj_zW8HJIzovO6IlzY-A,742
703
+ vellum/client/types/thinking_vellum_value_request.py,sha256=dHxjlH_6nxRjcixAudmvwwOMkWc4JmLHfRWKK4rGssA,771
699
704
  vellum/client/types/token_overlapping_window_chunker_config.py,sha256=_8vR9AiZQmb5OA3OojbjuTOGiGNTS9EY0vXrmej_TM0,731
700
705
  vellum/client/types/token_overlapping_window_chunker_config_request.py,sha256=O58w5om6EsCgZeqM7n3KSzwo1PqINyHWln46EFW4Inc,738
701
706
  vellum/client/types/token_overlapping_window_chunking.py,sha256=TghiPKWZg3Eg_UzGI9VmjQgVPZFABrnhfsz4iPLEem8,889
@@ -719,14 +724,14 @@ vellum/client/types/vellum_sdk_error.py,sha256=1AyCu_sUa8gx5wUJg5EtDYbvs9uQPhZfH
719
724
  vellum/client/types/vellum_sdk_error_code_enum.py,sha256=a2K6XJvl72tNn82zyx5QpzYGgLfYWVBKY-o8jeDqKoM,504
720
725
  vellum/client/types/vellum_secret.py,sha256=jru3nBCquZHZ3wEdpgKZNmy2WFh26PVKrTNaXeVSsZQ,555
721
726
  vellum/client/types/vellum_span.py,sha256=V5P1z-OFqgQQAZjek2toYudlh-fCu0NTt5uKuKm9hd0,258
722
- vellum/client/types/vellum_value.py,sha256=Un9AeNlx0QZA9-eIGgA5nEdZU0_0vHfibiafJR0q8V4,1049
727
+ vellum/client/types/vellum_value.py,sha256=eMg1StXImnx5ow09AbQmjz3YfoJndCYP23LU5y1M0I8,1129
723
728
  vellum/client/types/vellum_value_logical_condition_group_request.py,sha256=zdcBnm-qQbHHexNdM17WjMXNVRCPF8Vp7Sbs0a1d8Qw,1270
724
729
  vellum/client/types/vellum_value_logical_condition_request.py,sha256=c2gnVEmsrsJSRbx7DGlv8lBpgLRlOHSW1RNo-akbyWo,966
725
730
  vellum/client/types/vellum_value_logical_expression_request.py,sha256=vjNsI1NUAkwxLwIXJM_DVXTObyAM63gOfHj6aHw7osc,479
726
- vellum/client/types/vellum_value_request.py,sha256=WAUV4RnyAG6t0k94QTY1FE4F8HvpqhptDDGcCinwjis,1298
731
+ vellum/client/types/vellum_value_request.py,sha256=zmu0DFiXuCkt7PxbhJc7giM_U0GPoMPjN5xE9LKhqhA,1400
727
732
  vellum/client/types/vellum_variable.py,sha256=BDcccISJsycsrW3E5A5RTIOfxS_83ofkleOPP1upqW4,959
728
733
  vellum/client/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
729
- vellum/client/types/vellum_variable_type.py,sha256=XUBG699lv7iXtpG3vUeBmTGfKE9u164IuJfzHeXWKJ8,391
734
+ vellum/client/types/vellum_variable_type.py,sha256=epYV-PY0NkvUntKzgzqelWMq9Dzmh7Y32c19GB_2mh0,411
730
735
  vellum/client/types/vellum_workflow_execution_event.py,sha256=H8rP3_6a6LTvemoHfsmI2THpTRf8PYrZQcjoeTzf-44,934
731
736
  vellum/client/types/workflow_deployment_event_executions_response.py,sha256=_X9hfsfpCf7DaQpfg83AAcbadZxEVi1NKNf2PZ7PRY8,1190
732
737
  vellum/client/types/workflow_deployment_history_item.py,sha256=w5yqAtmYWw8kTljYEVBa8-fLxKsrBA8Img7IC3GjZG4,1226
@@ -802,7 +807,7 @@ vellum/client/types/workflow_result_event_output_data_json.py,sha256=8MrgcTSVUby
802
807
  vellum/client/types/workflow_result_event_output_data_number.py,sha256=OZYYUF3ayq7gyaesRK3YRaTMVgxFdeFGtOpTPWX10yk,1081
803
808
  vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7ZvBG70ZBO4SEqbaNzIrV9Zn1NXabNh3M9v_hg,1172
804
809
  vellum/client/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
805
- vellum/client/types/workflow_sandbox_example.py,sha256=ZYFI7ZahyRYMNVmF8LZcF-_lkhqt95WiWXT6SpxnFHk,666
810
+ vellum/client/types/workflow_sandbox_example.py,sha256=XsKa7JvPFm0no8nh_q1DojwMd1ko8kV_xn3omFr4kW4,760
806
811
  vellum/client/types/workflow_sandbox_parent_context.py,sha256=C-2xW40XkbuzYxvsKetqYMiaoX3qNNXELFxQeqEP6Ow,1473
807
812
  vellum/client/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
808
813
  vellum/client/types/workspace_read.py,sha256=ocPtWvOwadqkU3z21bJgE4JeLYTAkOqBlKkc9lDDFFg,697
@@ -1017,6 +1022,7 @@ vellum/types/execution_json_vellum_value.py,sha256=AvcmBTxlf41ivq5KeMU8MRHAgRYxl
1017
1022
  vellum/types/execution_number_vellum_value.py,sha256=rs7w_72tN3TFVpx-tlD-IGrap25xWkPQ7o4yyUlqGk4,167
1018
1023
  vellum/types/execution_search_results_vellum_value.py,sha256=of3CXBuKUjHW0ZU3SeOe5XZKrSNz7HFnKwBVaPa7Lzg,175
1019
1024
  vellum/types/execution_string_vellum_value.py,sha256=MY47d3IJQj9PPThKsCZUFS8y80f3so3kDDaSW5pJYsA,167
1025
+ vellum/types/execution_thinking_vellum_value.py,sha256=Mx9C-vjS0LCGK60CARSyuDI2bHPJFA9AOoSKSfnICG0,169
1020
1026
  vellum/types/execution_vellum_value.py,sha256=VRe64r540rkdVWjWijd7Y5JsYM_9zw09QUUuorKHeXU,160
1021
1027
  vellum/types/external_input_descriptor.py,sha256=-r6xPo7-1Ioq4XZ2nwcrg8OBoyVItKr-BeXspJwDWDQ,163
1022
1028
  vellum/types/external_test_case_execution.py,sha256=Av4H59SBBCZ9CZtT-eKD3n05lgljTqdtSZSjtsDpbc4,166
@@ -1065,6 +1071,8 @@ vellum/types/generate_stream_result.py,sha256=vBOu0pNiY2ug93SiHiGqhSgBJsdyEoRKIF
1065
1071
  vellum/types/generate_stream_result_data.py,sha256=XAn14mXLHM-xS7FxEUwsLmytGsM2V6eGQj8G54gU4No,165
1066
1072
  vellum/types/google_vertex_ai_vectorizer_config.py,sha256=nDNO6tF63OQCQyg-dJ19fjkZwLqZBIOo5bQYxFPOKKQ,172
1067
1073
  vellum/types/google_vertex_ai_vectorizer_config_request.py,sha256=C-_QO4my1I_JSKKhmfQzVbscm2bQjlM28tdXWMGa5Bk,180
1074
+ vellum/types/google_vertex_ai_vectorizer_gemini_embedding_001.py,sha256=d659izQ4HuqwxBOrOAbrUdcUWcRhRQd0m3Xnz36LSiQ,186
1075
+ vellum/types/google_vertex_ai_vectorizer_gemini_embedding_001_request.py,sha256=j4-BAEKGyX7lQ23PMD6P49uijwXW7GftMlS1BBCNqFw,194
1068
1076
  vellum/types/google_vertex_ai_vectorizer_text_embedding_004.py,sha256=rCnT091xK4wHvdDmdcdqVCXKWnrQTdeXgCVJL2mHetQ,184
1069
1077
  vellum/types/google_vertex_ai_vectorizer_text_embedding_004_request.py,sha256=kWWQEv3ExPkMZm4-eC_WWsLepEWJAnFXEwSG4cnXVow,192
1070
1078
  vellum/types/google_vertex_ai_vectorizer_text_multilingual_embedding_002.py,sha256=eNnwV4nsAu8pVj9bhDIk-lGxZXp2n58QaAhOh8JjWQ0,197
@@ -1383,6 +1391,8 @@ vellum/types/test_suite_test_case_replace_bulk_operation_request.py,sha256=CvjbM
1383
1391
  vellum/types/test_suite_test_case_replaced_bulk_result.py,sha256=Aj-4gz999ma3K8q5uF6uMueQ1VomCwn9921oZE8lres,179
1384
1392
  vellum/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=4qxVM1fTuPIo_sndTuV1_cSA9AR1wVfi5bFwIzLzdvA,184
1385
1393
  vellum/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=xDvR6dJbgCtVT-zwvIE-bO42ySq-3QLlXtwxK30s2LY,188
1394
+ vellum/types/thinking_vellum_value.py,sha256=-aDVQ7sFbAkbf2Eab-z_27fSf91pzqkIfS_65eT4Cks,159
1395
+ vellum/types/thinking_vellum_value_request.py,sha256=cxfwr_RWpepYUp3BHfq0Ui9I8XPqERCLosnpZpLfsNk,167
1386
1396
  vellum/types/token_overlapping_window_chunker_config.py,sha256=NFoh8PAQCFXMnmHJ-FHZIbJjdZoVvrSaFsZ-5UOvldI,177
1387
1397
  vellum/types/token_overlapping_window_chunker_config_request.py,sha256=C1_P8TQXCRkKD6zcy2O7l2eMaPH_atBMdQOW8ZB-HCg,185
1388
1398
  vellum/types/token_overlapping_window_chunking.py,sha256=fgVxqPWWRIwTyb1_MZxwmjbIMeCzEKBeWFbdk9cw4PU,171
@@ -1603,7 +1613,7 @@ vellum/workflows/nodes/core/try_node/__init__.py,sha256=JVD4DrldTIqFQQFrubs9KtWC
1603
1613
  vellum/workflows/nodes/core/try_node/node.py,sha256=XdyOvlwQ3m4h0-_WNtaBl2t_CdlzPXclulkLOtUcX3E,4388
1604
1614
  vellum/workflows/nodes/core/try_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1605
1615
  vellum/workflows/nodes/core/try_node/tests/test_node.py,sha256=h6eUc3SggvhzBWlOD0PrPUlkoCSQHwjqYn81VkxSIxU,4948
1606
- vellum/workflows/nodes/displayable/__init__.py,sha256=6F_4DlSwvHuilWnIalp8iDjjDXl0Nmz4QzJV2PYe5RI,1023
1616
+ vellum/workflows/nodes/displayable/__init__.py,sha256=zH7SFotr4i8sO-r5_k53yPipQwDouDmHxTfCE6dXAoU,1093
1607
1617
  vellum/workflows/nodes/displayable/api_node/__init__.py,sha256=MoxdQSnidIj1Nf_d-hTxlOxcZXaZnsWFDbE-PkTK24o,56
1608
1618
  vellum/workflows/nodes/displayable/api_node/node.py,sha256=kGvKPxXj4XcAsNLtvE1RBGI58MiSNTkQcQU2g2JHC3E,2922
1609
1619
  vellum/workflows/nodes/displayable/api_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1644,7 +1654,7 @@ vellum/workflows/nodes/displayable/guardrail_node/test_node.py,sha256=SAGv6hSFcB
1644
1654
  vellum/workflows/nodes/displayable/guardrail_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1645
1655
  vellum/workflows/nodes/displayable/guardrail_node/tests/test_node.py,sha256=X2pd6TI8miYxIa7rgvs1pHTEreyWcf77EyR0_Jsa700,2055
1646
1656
  vellum/workflows/nodes/displayable/inline_prompt_node/__init__.py,sha256=gSUOoEZLlrx35-tQhSAd3An8WDwBqyiQh-sIebLU9wU,74
1647
- vellum/workflows/nodes/displayable/inline_prompt_node/node.py,sha256=ST_V1Z3-7lzZ__Ntfm6iry70u9D3GD2a2vxsl2d4Q_c,2843
1657
+ vellum/workflows/nodes/displayable/inline_prompt_node/node.py,sha256=LkFaS7GDPdhqMjQ3duHPX6pjl0z6xKzGxDueQC4aeA0,2999
1648
1658
  vellum/workflows/nodes/displayable/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1649
1659
  vellum/workflows/nodes/displayable/inline_prompt_node/tests/test_node.py,sha256=bBHs90mV5SZ3rJPAL0wx4WWyawUA406LgMPOdvpZC_A,10923
1650
1660
  vellum/workflows/nodes/displayable/merge_node/__init__.py,sha256=J8IC08dSH7P76wKlNuxe1sn7toNGtSQdFirUbtPDEs0,60
@@ -1652,7 +1662,7 @@ vellum/workflows/nodes/displayable/merge_node/node.py,sha256=nZtGGVAvY4fvGg8vwV6
1652
1662
  vellum/workflows/nodes/displayable/note_node/__init__.py,sha256=KWA3P4fyYJ-fOTky8qNGlcOotQ-HeHJ9AjZt6mRQmCE,58
1653
1663
  vellum/workflows/nodes/displayable/note_node/node.py,sha256=sIN1VBQ7zeT3GhN0kupXbFfdpvgedWV79k4woJNp5IQ,394
1654
1664
  vellum/workflows/nodes/displayable/prompt_deployment_node/__init__.py,sha256=krX1Hds-TSVYZsx0wJFX4wsAKkEFYOX1ifwRGiIM-EA,82
1655
- vellum/workflows/nodes/displayable/prompt_deployment_node/node.py,sha256=eUiQYdqJTrWhVcUgGAPJYEnRk6S71Yrzu5-c-XcVFs4,3243
1665
+ vellum/workflows/nodes/displayable/prompt_deployment_node/node.py,sha256=rRUIM-zbVCV_0odyPExEZay0k4VCjsYyZ3OC9ZpHQsc,3399
1656
1666
  vellum/workflows/nodes/displayable/prompt_deployment_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1657
1667
  vellum/workflows/nodes/displayable/prompt_deployment_node/tests/test_node.py,sha256=c_nuuqrwiIjgj4qIbVypfDuOc-3TlgO6CbXFqQl2Nqw,19725
1658
1668
  vellum/workflows/nodes/displayable/search_node/__init__.py,sha256=hpBpvbrDYf43DElRZFLzieSn8weXiwNiiNOJurERQbs,62
@@ -1668,16 +1678,17 @@ vellum/workflows/nodes/displayable/tests/test_inline_text_prompt_node.py,sha256=
1668
1678
  vellum/workflows/nodes/displayable/tests/test_search_node_error_handling.py,sha256=8aw8hDFL0ZXThvAa7yxrJN026EYGD4-Q1si3Phu9-_0,6307
1669
1679
  vellum/workflows/nodes/displayable/tests/test_search_node_wth_text_output.py,sha256=VepO5z1277c1y5N6LLIC31nnWD1aak2m5oPFplfJHHs,6935
1670
1680
  vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=dc3EEn1sOICpr3GdS8eyeFtExaGwWWcw9eHSdkRhQJU,2584
1681
+ vellum/workflows/nodes/displayable/tool_calling_node/__init__.py,sha256=3n0-ysmFKsr40CVxPthc0rfJgqVJeZuUEsCmYudLVRg,117
1682
+ vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=PPu8JPDHUAHU95d73WDwq75sfsUH-I47BdnOuZXkIm8,4976
1683
+ vellum/workflows/nodes/displayable/tool_calling_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1684
+ vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=X9kl8qntn0cQOOvyn0noDayhU0hXenqYJ0XO1FkOjAs,5071
1685
+ vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py,sha256=eu6WTyENhGLg9pGp_j69rysZjf_qiQXske1YdZn9PzU,1718
1686
+ vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=f2hCLciTqjHXj9tVdnnTAVY0BLUCMBoH0emQeOJCB7I,11309
1671
1687
  vellum/workflows/nodes/experimental/README.md,sha256=eF6DfIL8t-HbF9-mcofOMymKrraiBHDLKTlnBa51ZiE,284
1672
- vellum/workflows/nodes/experimental/__init__.py,sha256=_tpZGWAZLydcKxfrj1-plrZeTajskVhUr1A6mHoSaWM,78
1688
+ vellum/workflows/nodes/experimental/__init__.py,sha256=k7VQEyvgEdnrEZ-icXx3fiByPnyMOnMXNGGuqacyyik,91
1673
1689
  vellum/workflows/nodes/experimental/openai_chat_completion_node/__init__.py,sha256=lsyD9laR9p7kx5-BXGH2gUTM242UhKy8SMV0SR6S2iE,90
1674
1690
  vellum/workflows/nodes/experimental/openai_chat_completion_node/node.py,sha256=cKI2Ls25L-JVt4z4a2ozQa-YBeVy21Z7BQ32Sj7iBPE,10460
1675
- vellum/workflows/nodes/experimental/tool_calling_node/__init__.py,sha256=S7OzT3I4cyOU5Beoz87nPwCejCMP2FsHBFL8OcVmxJ4,118
1676
- vellum/workflows/nodes/experimental/tool_calling_node/node.py,sha256=jwL1sbitmm1CpTOAEI0IIuc6VRr8d7yxUpS4Y5s9Bk8,5966
1677
- vellum/workflows/nodes/experimental/tool_calling_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1678
- vellum/workflows/nodes/experimental/tool_calling_node/tests/test_node.py,sha256=XK1H_QAT_nVFmFP442RYyPvpTfSgtU6kSGu3-OQPBNU,5072
1679
- vellum/workflows/nodes/experimental/tool_calling_node/tests/test_utils.py,sha256=-g90SdXscuikF7JP0lFGvSvPc8jl2vBuHwBeiYJIiXk,1719
1680
- vellum/workflows/nodes/experimental/tool_calling_node/utils.py,sha256=t18ye2wY9jtTjKXJs8oChNGI5xCdxlUUyVYbRJfJLFI,12959
1691
+ vellum/workflows/nodes/experimental/tool_calling_node/__init__.py,sha256=8R5HQtDDfo0hgFX6VdM45-FiyxK-IMTI9B9LL4TRUbw,112
1681
1692
  vellum/workflows/nodes/mocks.py,sha256=a1FjWEIocseMfjzM-i8DNozpUsaW0IONRpZmXBoWlyc,10455
1682
1693
  vellum/workflows/nodes/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1683
1694
  vellum/workflows/nodes/tests/test_mocks.py,sha256=mfPvrs75PKcsNsbJLQAN6PDFoVqs9TmQxpdyFKDdO60,7837
@@ -1710,7 +1721,7 @@ vellum/workflows/sandbox.py,sha256=GVJzVjMuYzOBnSrboB0_6MMRZWBluAyQ2o7syeaeBd0,2
1710
1721
  vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
1711
1722
  vellum/workflows/state/base.py,sha256=WIMJYyuHUrP4zt0Nudk66HAK1L6GgGmsU_GQp7BGE2U,22189
1712
1723
  vellum/workflows/state/context.py,sha256=KOAI1wEGn8dGmhmAemJaf4SZbitP3jpIBcwKfznQaRE,3076
1713
- vellum/workflows/state/encoder.py,sha256=xtKpDAR5qWbxIN61dz3X_5_D47MTrbvvas8n15jys18,2881
1724
+ vellum/workflows/state/encoder.py,sha256=sV80h-lAo66isD2ezK1_YLzj75Aa5dAtF2YA1c3BYKo,2883
1714
1725
  vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
1715
1726
  vellum/workflows/state/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1716
1727
  vellum/workflows/state/tests/test_state.py,sha256=YOiC9qZAzkdiqb7nRarNWeDwxo7xHv3y3czlHl81ezg,6741
@@ -1745,8 +1756,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
1745
1756
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1746
1757
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=fROqff6AZpCIzaSwOKSdtYy4XR0UZQ6ejxL3RJOSJVs,20447
1747
1758
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1748
- vellum_ai-0.14.81.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1749
- vellum_ai-0.14.81.dist-info/METADATA,sha256=ly3BaXiiN3s_NvoL-gREFI-QYc0sqnBrV6wdC3G9tWU,5556
1750
- vellum_ai-0.14.81.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1751
- vellum_ai-0.14.81.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1752
- vellum_ai-0.14.81.dist-info/RECORD,,
1759
+ vellum_ai-0.14.83.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1760
+ vellum_ai-0.14.83.dist-info/METADATA,sha256=TcabDwnkXTXEjJKHPtTdkNTgXrKrCA3L5_o-7KPgJkU,5556
1761
+ vellum_ai-0.14.83.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1762
+ vellum_ai-0.14.83.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1763
+ vellum_ai-0.14.83.dist-info/RECORD,,
@@ -1,8 +1,7 @@
1
- from vellum.client.types.code_execution_package import CodeExecutionPackage
2
1
  from vellum.workflows import BaseWorkflow
3
2
  from vellum.workflows.inputs import BaseInputs
4
3
  from vellum.workflows.nodes.displayable.inline_prompt_node.node import InlinePromptNode
5
- from vellum.workflows.nodes.experimental.tool_calling_node.node import ToolCallingNode
4
+ from vellum.workflows.nodes.displayable.tool_calling_node.node import ToolCallingNode
6
5
  from vellum.workflows.state.base import BaseState
7
6
  from vellum_ee.workflows.display.workflows.get_vellum_workflow_display_class import get_workflow_display
8
7
 
@@ -123,105 +122,3 @@ def test_serialize_node__prompt_inputs__mixed_values():
123
122
  ],
124
123
  },
125
124
  }
126
-
127
-
128
- def test_serialize_node__function_configs():
129
- # GIVEN a tool calling node with function packages
130
- def foo():
131
- pass
132
-
133
- def bar():
134
- pass
135
-
136
- class MyToolCallingNode(ToolCallingNode):
137
- functions = [foo, bar]
138
- function_configs = {
139
- "foo": {
140
- "runtime": "PYTHON_3_11_6",
141
- "packages": [
142
- CodeExecutionPackage(name="first_package", version="1.0.0", repository="test-repo"),
143
- CodeExecutionPackage(name="second_package", version="2.0.0", repository="test-repo"),
144
- ],
145
- },
146
- "bar": {
147
- "runtime": "PYTHON_3_11_6",
148
- "packages": [CodeExecutionPackage(name="third_package", version="3.0.0")],
149
- },
150
- }
151
-
152
- # AND a workflow with the tool calling node
153
- class Workflow(BaseWorkflow):
154
- graph = MyToolCallingNode
155
-
156
- # WHEN the workflow is serialized
157
- workflow_display = get_workflow_display(workflow_class=Workflow)
158
- serialized_workflow: dict = workflow_display.serialize()
159
-
160
- # THEN the node should properly serialize the function packages
161
- my_tool_calling_node = next(
162
- node
163
- for node in serialized_workflow["workflow_raw_data"]["nodes"]
164
- if node["id"] == str(MyToolCallingNode.__id__)
165
- )
166
-
167
- function_configs_attribute = next(
168
- attribute for attribute in my_tool_calling_node["attributes"] if attribute["name"] == "function_configs"
169
- )
170
-
171
- assert function_configs_attribute == {
172
- "id": "90cc5fc7-9fb3-450f-be5a-e90e7412a601",
173
- "name": "function_configs",
174
- "value": {
175
- "type": "CONSTANT_VALUE",
176
- "value": {
177
- "type": "JSON",
178
- "value": {
179
- "foo": {
180
- "runtime": "PYTHON_3_11_6",
181
- "packages": [
182
- {"version": "1.0.0", "name": "first_package", "repository": "test-repo"},
183
- {"version": "2.0.0", "name": "second_package", "repository": "test-repo"},
184
- ],
185
- },
186
- "bar": {
187
- "runtime": "PYTHON_3_11_6",
188
- "packages": [{"version": "3.0.0", "name": "third_package", "repository": None}],
189
- },
190
- },
191
- },
192
- },
193
- }
194
-
195
-
196
- def test_serialize_node__function_configs__none():
197
- # GIVEN a tool calling node with no function configs
198
- def foo():
199
- pass
200
-
201
- class MyToolCallingNode(ToolCallingNode):
202
- functions = [foo]
203
-
204
- # AND a workflow with the tool calling node
205
- class Workflow(BaseWorkflow):
206
- graph = MyToolCallingNode
207
-
208
- # WHEN the workflow is serialized
209
- workflow_display = get_workflow_display(workflow_class=Workflow)
210
- serialized_workflow: dict = workflow_display.serialize()
211
-
212
- # THEN the node should properly serialize the functions
213
- my_tool_calling_node = next(
214
- node
215
- for node in serialized_workflow["workflow_raw_data"]["nodes"]
216
- if node["id"] == str(MyToolCallingNode.__id__)
217
- )
218
-
219
- function_configs_attribute = next(
220
- attribute for attribute in my_tool_calling_node["attributes"] if attribute["name"] == "function_configs"
221
- )
222
-
223
- assert function_configs_attribute == {
224
- "id": "5f63f2aa-72d7-47ad-a552-630753418b7d",
225
- "name": "function_configs",
226
- "value": {"type": "CONSTANT_VALUE", "value": {"type": "JSON", "value": None}},
227
- }
@@ -48,7 +48,7 @@ def test_serialize_workflow():
48
48
  },
49
49
  "base": {
50
50
  "name": "ToolCallingNode",
51
- "module": ["vellum", "workflows", "nodes", "experimental", "tool_calling_node", "node"],
51
+ "module": ["vellum", "workflows", "nodes", "displayable", "tool_calling_node", "node"],
52
52
  },
53
53
  "definition": {
54
54
  "name": "GetCurrentWeatherNode",
@@ -407,11 +407,6 @@ def test_serialize_workflow():
407
407
  ],
408
408
  },
409
409
  },
410
- {
411
- "id": "a4e3bc9f-7112-4d2f-94fb-7362a85db27a",
412
- "name": "function_configs",
413
- "value": {"type": "CONSTANT_VALUE", "value": {"type": "JSON", "value": None}},
414
- },
415
410
  {
416
411
  "id": "1668419e-a193-43a5-8a97-3394e89bf278",
417
412
  "name": "max_prompt_iterations",
@@ -48,7 +48,7 @@ def test_serialize_workflow():
48
48
  },
49
49
  "base": {
50
50
  "name": "ToolCallingNode",
51
- "module": ["vellum", "workflows", "nodes", "experimental", "tool_calling_node", "node"],
51
+ "module": ["vellum", "workflows", "nodes", "displayable", "tool_calling_node", "node"],
52
52
  },
53
53
  "definition": {
54
54
  "name": "GetCurrentWeatherNode",
@@ -152,22 +152,6 @@ def test_serialize_workflow():
152
152
  },
153
153
  },
154
154
  },
155
- {
156
- "id": "a4e3bc9f-7112-4d2f-94fb-7362a85db27a",
157
- "name": "function_configs",
158
- "value": {
159
- "type": "CONSTANT_VALUE",
160
- "value": {
161
- "type": "JSON",
162
- "value": {
163
- "get_current_weather": {
164
- "runtime": "PYTHON_3_11_6",
165
- "packages": [{"version": "2.26.0", "name": "requests", "repository": None}],
166
- }
167
- },
168
- },
169
- },
170
- },
171
155
  {
172
156
  "id": "0f6dc102-3460-4963-91fa-7ba85d65ef7a",
173
157
  "name": "prompt_inputs",
@@ -916,11 +916,16 @@ class BaseWorkflowDisplay(Generic[WorkflowType]):
916
916
 
917
917
  if not should_ignore:
918
918
  for serialized_pattern in self._serialized_files:
919
- if fnmatch.fnmatch(relative_path, serialized_pattern) or fnmatch.fnmatch(
920
- filename, serialized_pattern
921
- ):
922
- should_ignore = True
923
- break
919
+ if "*" in serialized_pattern:
920
+ if fnmatch.fnmatch(relative_path, serialized_pattern) or fnmatch.fnmatch(
921
+ filename, serialized_pattern
922
+ ):
923
+ should_ignore = True
924
+ break
925
+ else:
926
+ if relative_path == serialized_pattern:
927
+ should_ignore = True
928
+ break
924
929
 
925
930
  if should_ignore:
926
931
  continue
@@ -39,7 +39,7 @@ def test_serialize_module_includes_additional_files():
39
39
 
40
40
  assert "workflow.py" not in additional_files
41
41
  assert "__init__.py" not in additional_files
42
- assert "utils/__init__.py" not in additional_files
42
+ assert "utils/__init__.py" in additional_files
43
43
  assert "nodes/test_node.py" not in additional_files
44
44
 
45
45
  assert "def helper_function():" in additional_files["helper.py"]