vellum-ai 1.0.10__py3-none-any.whl → 1.1.0__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 +2 -2
- vellum/client/__init__.py +0 -4
- vellum/client/core/client_wrapper.py +2 -2
- vellum/client/reference.md +2 -3
- vellum/client/resources/__init__.py +0 -2
- vellum/client/resources/workflow_deployments/client.py +119 -0
- vellum/client/types/__init__.py +2 -0
- vellum/client/types/api_request_parent_context.py +1 -0
- vellum/client/types/external_parent_context.py +36 -0
- vellum/client/types/node_execution_fulfilled_event.py +1 -0
- vellum/client/types/node_execution_initiated_event.py +1 -0
- vellum/client/types/node_execution_paused_event.py +1 -0
- vellum/client/types/node_execution_rejected_event.py +1 -0
- vellum/client/types/node_execution_resumed_event.py +1 -0
- vellum/client/types/node_execution_span.py +1 -0
- vellum/client/types/node_execution_span_attributes.py +1 -0
- vellum/client/types/node_execution_streaming_event.py +1 -0
- vellum/client/types/node_parent_context.py +1 -0
- vellum/client/types/parent_context.py +2 -0
- vellum/client/types/prompt_deployment_parent_context.py +1 -0
- vellum/client/types/slim_workflow_execution_read.py +1 -0
- vellum/client/types/span_link.py +1 -0
- vellum/client/types/workflow_deployment_event_executions_response.py +1 -0
- vellum/client/types/workflow_deployment_parent_context.py +1 -0
- vellum/client/types/workflow_event_execution_read.py +1 -0
- vellum/client/types/workflow_execution_detail.py +1 -0
- vellum/client/types/workflow_execution_fulfilled_event.py +1 -0
- vellum/client/types/workflow_execution_initiated_event.py +1 -0
- vellum/client/types/workflow_execution_paused_event.py +1 -0
- vellum/client/types/workflow_execution_rejected_event.py +1 -0
- vellum/client/types/workflow_execution_resumed_event.py +1 -0
- vellum/client/types/workflow_execution_snapshotted_event.py +1 -0
- vellum/client/types/workflow_execution_span.py +1 -0
- vellum/client/types/workflow_execution_span_attributes.py +1 -0
- vellum/client/types/workflow_execution_streaming_event.py +1 -0
- vellum/client/types/workflow_parent_context.py +1 -0
- vellum/client/types/workflow_sandbox_parent_context.py +1 -0
- vellum/{resources/release_reviews/__init__.py → types/external_parent_context.py} +1 -1
- vellum/workflows/descriptors/base.py +31 -1
- vellum/workflows/descriptors/utils.py +19 -1
- vellum/workflows/emitters/vellum_emitter.py +3 -2
- vellum/workflows/events/types.py +6 -0
- vellum/workflows/expressions/accessor.py +23 -15
- vellum/workflows/expressions/add.py +41 -0
- vellum/workflows/expressions/length.py +35 -0
- vellum/workflows/expressions/minus.py +41 -0
- vellum/workflows/expressions/tests/test_add.py +72 -0
- vellum/workflows/expressions/tests/test_length.py +38 -0
- vellum/workflows/expressions/tests/test_minus.py +72 -0
- vellum/workflows/integrations/composio_service.py +4 -0
- vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py +1 -1
- vellum/workflows/nodes/displayable/inline_prompt_node/node.py +2 -2
- vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py +5 -15
- vellum/workflows/nodes/displayable/tool_calling_node/node.py +12 -1
- vellum/workflows/nodes/displayable/tool_calling_node/state.py +2 -0
- vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service.py +49 -0
- vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py +3 -8
- vellum/workflows/nodes/displayable/tool_calling_node/utils.py +167 -50
- vellum/workflows/state/context.py +13 -2
- vellum/workflows/types/definition.py +3 -8
- vellum/workflows/types/tests/test_definition.py +3 -4
- vellum/workflows/utils/functions.py +1 -1
- vellum/workflows/utils/tests/test_functions.py +3 -3
- {vellum_ai-1.0.10.dist-info → vellum_ai-1.1.0.dist-info}/METADATA +1 -1
- {vellum_ai-1.0.10.dist-info → vellum_ai-1.1.0.dist-info}/RECORD +73 -68
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +93 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_composio_serialization.py +0 -4
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py +98 -0
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py +1 -1
- vellum_ee/workflows/display/utils/expressions.py +13 -1
- vellum/client/resources/release_reviews/__init__.py +0 -2
- vellum/client/resources/release_reviews/client.py +0 -139
- vellum/resources/release_reviews/client.py +0 -3
- {vellum_ai-1.0.10.dist-info → vellum_ai-1.1.0.dist-info}/LICENSE +0 -0
- {vellum_ai-1.0.10.dist-info → vellum_ai-1.1.0.dist-info}/WHEEL +0 -0
- {vellum_ai-1.0.10.dist-info → vellum_ai-1.1.0.dist-info}/entry_points.txt +0 -0
@@ -63,7 +63,7 @@ vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=h93ysol
|
|
63
63
|
vellum_ee/workflows/display/nodes/vellum/tests/test_search_node.py,sha256=KvByxgbUkVyfPIVxTUBUk6a92JiJMi8eReZWxzfPExU,3864
|
64
64
|
vellum_ee/workflows/display/nodes/vellum/tests/test_subworkflow_deployment_node.py,sha256=BUzHJgjdWnPeZxjFjHfDBKnbFjYjnbXPjc-1hne1B2Y,3965
|
65
65
|
vellum_ee/workflows/display/nodes/vellum/tests/test_templating_node.py,sha256=LSk2gx9TpGXbAqKe8dggQW8yJZqj-Cf0EGJFeGGlEcw,3321
|
66
|
-
vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=
|
66
|
+
vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=FlltEqHE5qdRprlDrSYrnnA1nJVtuVoXof-zOT2EIW0,8646
|
67
67
|
vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=Khjsb53PKpZuyhKoRMgKAL45eGp5hZqXvHmVeQWRw4w,2289
|
68
68
|
vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=rHybfUAWwa0LlstQTNthGb-zYXrUCLADFtn_4SGsbw8,4807
|
69
69
|
vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=z9Omo676RRc7mQjLoL7hjiHhUj0OWVLhrrb97YTN4QA,4086
|
@@ -94,10 +94,11 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_search_node_
|
|
94
94
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_subworkflow_deployment_serialization.py,sha256=XWrhHg_acLsRHwjstBAii9Pmes9oXFtAUWSAVF1oSBc,11225
|
95
95
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_node_serialization.py,sha256=V8b6gKghLlO7PJI8xeNdnfn8aII0W_IFQvSQBQM62UQ,7721
|
96
96
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=hDWtKXmGI1CKhTwTNqpu_d5RkE5n7SolMLtgd87KqTI,3856
|
97
|
-
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_composio_serialization.py,sha256=
|
97
|
+
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_composio_serialization.py,sha256=AUfULtIangNYkvLH3jd2Ar8X5ulW4tGmezeCfMmXFUU,3697
|
98
98
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py,sha256=4t1lkN2nsZF6lFqP6QnskUQWJlhasF8C2_f6atzk8ZY,26298
|
99
|
+
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py,sha256=InTdnaFHWO5sRJX41PMZ_rLG8uVxH_loPf1wuahYaNQ,4303
|
99
100
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py,sha256=B0rDsCvO24qPp0gkmj8SdTDY5CxZYkvKwknsKBuAPyA,10017
|
100
|
-
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=
|
101
|
+
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=XIZZr5POo2NLn2uEWm9EC3rejeBMoO4X-JtzTH6mvp4,4074
|
101
102
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py,sha256=pLCyMScV88DTBXRH7jXaXOEA1GBq8NIipCUFwIAWnwI,2771
|
102
103
|
vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=J4ouI8KxbMfxQP2Zq_9cWMGYgbjCWmKzjCJEtnSJb0I,5829
|
103
104
|
vellum_ee/workflows/display/tests/workflow_serialization/test_workflow_input_parameterization_error.py,sha256=vAdmn3YTBDpo55znbydQxsgg9ASqHcvsUPwiBR_7wfo,1461
|
@@ -105,7 +106,7 @@ vellum_ee/workflows/display/types.py,sha256=i4T7ElU5b5h-nA1i3scmEhO1BqmNDc4eJDHa
|
|
105
106
|
vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
107
|
vellum_ee/workflows/display/utils/auto_layout.py,sha256=f4GiLn_LazweupfqTpubcdtdfE_vrOcmZudSsnYIY9E,3906
|
107
108
|
vellum_ee/workflows/display/utils/exceptions.py,sha256=LSwwxCYNxFkf5XMUcFkaZKpQ13OSrI7y_bpEUwbKVk0,169
|
108
|
-
vellum_ee/workflows/display/utils/expressions.py,sha256=
|
109
|
+
vellum_ee/workflows/display/utils/expressions.py,sha256=UvRnkwfKTtE6ZbxG3vNzFtOoWg4s5s7dUWte4-M-D5E,16329
|
109
110
|
vellum_ee/workflows/display/utils/registry.py,sha256=fWIm5Jj-10gNFjgn34iBu4RWv3Vd15ijtSN0V97bpW8,1513
|
110
111
|
vellum_ee/workflows/display/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
112
|
vellum_ee/workflows/display/utils/tests/test_auto_layout.py,sha256=vfXI769418s9vda5Gb5NFBH747WMOwSgHRXeLCTLVm8,2356
|
@@ -140,12 +141,12 @@ vellum_ee/workflows/tests/test_display_meta.py,sha256=PkXJVnMZs9GNooDkd59n4YTBAX
|
|
140
141
|
vellum_ee/workflows/tests/test_serialize_module.py,sha256=EVrCRAP0lpvd0GIDlg2tnGfJzDNooNDXPfGFPLAqmbI,1870
|
141
142
|
vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
|
142
143
|
vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
|
143
|
-
vellum/__init__.py,sha256=
|
144
|
+
vellum/__init__.py,sha256=d6HOicr5YrsgNg6BQStVucKavziG1CbwoLaQ7MaQAQ0,43115
|
144
145
|
vellum/client/README.md,sha256=Dle5iytCXxP1pNeNd7uZyhFo0rl7tp7vU7s8gmi10OQ,4863
|
145
|
-
vellum/client/__init__.py,sha256=
|
146
|
+
vellum/client/__init__.py,sha256=yBO_QGwT5eVEZ0zvk4Mfg7W8AdgAnulf5lIMAX2bX9I,124936
|
146
147
|
vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
147
148
|
vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
148
|
-
vellum/client/core/client_wrapper.py,sha256=
|
149
|
+
vellum/client/core/client_wrapper.py,sha256=PWK7ac7kf5xvOGz7Xxgf6TnsYNIlkBWEOFQQObsCKBk,2383
|
149
150
|
vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
150
151
|
vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
151
152
|
vellum/client/core/http_client.py,sha256=cKs2w0ybDBk1wHQf-fTALm_MmvaMe3cZKcYJxqmCxkE,19539
|
@@ -161,8 +162,8 @@ vellum/client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcs
|
|
161
162
|
vellum/client/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
|
162
163
|
vellum/client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
|
163
164
|
vellum/client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
164
|
-
vellum/client/reference.md,sha256=
|
165
|
-
vellum/client/resources/__init__.py,sha256=
|
165
|
+
vellum/client/reference.md,sha256=TZd5N6v2KJipoB_aeTw9HG6-S-8RNtgUgecaaCiTIs4,93521
|
166
|
+
vellum/client/resources/__init__.py,sha256=Hyb51zNnMEHvW5fu448E_9ZD3-ZYRqNIqt6LgNAoa2M,1563
|
166
167
|
vellum/client/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
167
168
|
vellum/client/resources/ad_hoc/client.py,sha256=iPKL9L3BpQhiGhjCD20Q99dHZrDnkfKKxMExVOoMkGU,28001
|
168
169
|
vellum/client/resources/container_images/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -190,8 +191,6 @@ vellum/client/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKT
|
|
190
191
|
vellum/client/resources/organizations/client.py,sha256=5Y4Umjlpm24zgvG_PYHqJqpvjmEwG5kH-CM5L4ZguCE,3763
|
191
192
|
vellum/client/resources/prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
192
193
|
vellum/client/resources/prompts/client.py,sha256=Ai2179Qeq3H3f7HjeAZ_kjsk6-LryLE6QOEa5wfgnVk,15812
|
193
|
-
vellum/client/resources/release_reviews/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
194
|
-
vellum/client/resources/release_reviews/client.py,sha256=nlTpT--FT3D8pDnTyZtjV2QcGZ-4MB1LuM6KfkCmlXM,5182
|
195
194
|
vellum/client/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
196
195
|
vellum/client/resources/sandboxes/client.py,sha256=EVhx8n8Lc_YL0Aw7fAsPHr0ZngfjgSWT2eheo9DE36c,18018
|
197
196
|
vellum/client/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -199,7 +198,7 @@ vellum/client/resources/test_suite_runs/client.py,sha256=jrZtWgZKyOLHnEScn6AmCWT
|
|
199
198
|
vellum/client/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
200
199
|
vellum/client/resources/test_suites/client.py,sha256=yFwr8HVOSKihJRtoHekNUDkNZejeYSuf5m4-EHomUuc,27929
|
201
200
|
vellum/client/resources/workflow_deployments/__init__.py,sha256=_duH6m1CDWcfqX6DTBNjO3ar4Xrl-f5PozMaTcT4Kow,251
|
202
|
-
vellum/client/resources/workflow_deployments/client.py,sha256=
|
201
|
+
vellum/client/resources/workflow_deployments/client.py,sha256=GdMpaIRKqx34ZdpZcC2Q6xVMhz8S0ySmDun0WPv0hOY,40689
|
203
202
|
vellum/client/resources/workflow_deployments/types/__init__.py,sha256=W7DKJ1nduwhRckYLvH7wHLdaGH9MXHTZkxwG7FdTngY,340
|
204
203
|
vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
|
205
204
|
vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
|
@@ -215,7 +214,7 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
|
|
215
214
|
vellum/client/resources/workspace_secrets/client.py,sha256=l1FOj0f-IB5_oQ7iWiHopFK3lDXBqiaIc9g10W9PHFU,8381
|
216
215
|
vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
217
216
|
vellum/client/resources/workspaces/client.py,sha256=61eFS8USOtHf4cFoT3dZmAMs6KGAVPbXjAolws2ftsQ,3683
|
218
|
-
vellum/client/types/__init__.py,sha256=
|
217
|
+
vellum/client/types/__init__.py,sha256=Wp-Fc2cUyL0RbGDsbjT0V2Pf6YtUYgRajgXspQzE6Cg,65345
|
219
218
|
vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
|
220
219
|
vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
|
221
220
|
vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=oDG60TpwK1YNSKhRsBbiP2O3ZF9PKR-M9chGIfKw4R4,1004
|
@@ -225,7 +224,7 @@ vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=OVSyUL81lpk
|
|
225
224
|
vellum/client/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
|
226
225
|
vellum/client/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
|
227
226
|
vellum/client/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
|
228
|
-
vellum/client/types/api_request_parent_context.py,sha256=
|
227
|
+
vellum/client/types/api_request_parent_context.py,sha256=IQOUkgF3zT3LXk8u6wO7b7_U_UJEVkvr-JhUBaSPScs,1462
|
229
228
|
vellum/client/types/api_version_enum.py,sha256=PObXD86PDEuoxBpLg2pIv_xEeHbN99r2tgAKnCiu5hk,166
|
230
229
|
vellum/client/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
|
231
230
|
vellum/client/types/array_chat_message_content_item.py,sha256=udxHZTZLQ1Ekg6X1D616a61crYxlQDz8QU6-CAHznrQ,625
|
@@ -336,6 +335,7 @@ vellum/client/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBg
|
|
336
335
|
vellum/client/types/execution_thinking_vellum_value.py,sha256=5WGuCVue3OMAdM881fDUFGjwOuWhImT6ALQq1qHyTks,866
|
337
336
|
vellum/client/types/execution_vellum_value.py,sha256=gJ4UWA4KKzWGJZpEZGQV8Efqh27PmyWz6RZSsbtNux8,1088
|
338
337
|
vellum/client/types/external_input_descriptor.py,sha256=ErOW2OfFMz1FDGmVY6NgiUBPsleaWhdJBekwFp4ru7o,805
|
338
|
+
vellum/client/types/external_parent_context.py,sha256=LoHBtOzuUtgFpc9iIGNuXihYzsUPOk46IJiHzJ2azr4,1457
|
339
339
|
vellum/client/types/external_test_case_execution.py,sha256=TkO1CQcEI8LA7sdYJfAqhbdkj27sXEkF8VL7zBeDBM4,877
|
340
340
|
vellum/client/types/external_test_case_execution_request.py,sha256=xd80GZg4FbZP6FZRIhZL9V1uFetI3bcCj-wzanco5tQ,921
|
341
341
|
vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py,sha256=XhNEBWd5qzFiXTestFPTusjxYfqW8j_kHBebCMfa58M,719
|
@@ -453,19 +453,19 @@ vellum/client/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2Zyb
|
|
453
453
|
vellum/client/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
|
454
454
|
vellum/client/types/new_member_join_behavior_enum.py,sha256=s9Z_6JKM6R4gPNtIJYCe84_DNBHucj6dHOx6bdFPoLo,258
|
455
455
|
vellum/client/types/node_execution_fulfilled_body.py,sha256=lK9XgCT0d94DByMfMyMdBaLa2CvxLQ10f71y6hBic5c,885
|
456
|
-
vellum/client/types/node_execution_fulfilled_event.py,sha256=
|
456
|
+
vellum/client/types/node_execution_fulfilled_event.py,sha256=Lr8Qrv4cG5R429L2e3EgeD59kRxt83eoGkGxUCWP7jo,1586
|
457
457
|
vellum/client/types/node_execution_initiated_body.py,sha256=SFHnxmbHC_NWDyIjIkT8JPuTsaRpYIywQsTDUReqvkQ,737
|
458
|
-
vellum/client/types/node_execution_initiated_event.py,sha256=
|
458
|
+
vellum/client/types/node_execution_initiated_event.py,sha256=k0KlQr3yDEb-i89vcbFtwhPlvSlrGcd4s1F8KmsKbSw,1586
|
459
459
|
vellum/client/types/node_execution_paused_body.py,sha256=JwGYfmQ1g9jCDM36wLgM6xkYo1YY7M4VIvCowzaNb5A,676
|
460
|
-
vellum/client/types/node_execution_paused_event.py,sha256=
|
460
|
+
vellum/client/types/node_execution_paused_event.py,sha256=5J6elW6BKE-ctFSn--NpNB1P7B_dlP3_Grk1W2gSPx4,1568
|
461
461
|
vellum/client/types/node_execution_rejected_body.py,sha256=lJhWcRzQHFyps5CZd3umO-_zKSdI0z7uf2anLKC8WtE,749
|
462
|
-
vellum/client/types/node_execution_rejected_event.py,sha256=
|
462
|
+
vellum/client/types/node_execution_rejected_event.py,sha256=VeV01W7lciDFgpU8mhFXUBoteo7QMwCEzYnCygyMhys,1580
|
463
463
|
vellum/client/types/node_execution_resumed_body.py,sha256=wJqWB_6VWY8BPMNWonr5bsgtmRjD3MyIqeV8jqKEYRQ,677
|
464
|
-
vellum/client/types/node_execution_resumed_event.py,sha256
|
465
|
-
vellum/client/types/node_execution_span.py,sha256=
|
466
|
-
vellum/client/types/node_execution_span_attributes.py,sha256=
|
464
|
+
vellum/client/types/node_execution_resumed_event.py,sha256=PIO3wl3UO7KQ3urklcylBHgVhyGkK0Z6b9RCF8ow1wM,1574
|
465
|
+
vellum/client/types/node_execution_span.py,sha256=meP9DXOHJ7ALejhvH_PjFuuUwCzmoI-tWbv0DBX1kc4,1472
|
466
|
+
vellum/client/types/node_execution_span_attributes.py,sha256=0EcAiUQpLCDHCussSr0eHsh41FFGoeR_EWW1akdb-pc,588
|
467
467
|
vellum/client/types/node_execution_streaming_body.py,sha256=cTFTydzZ0-iI08T2XMcQWuIkkcCvqttGkksroSagF34,738
|
468
|
-
vellum/client/types/node_execution_streaming_event.py,sha256=
|
468
|
+
vellum/client/types/node_execution_streaming_event.py,sha256=I0o8FK4uyu3S6KAgc_XoRhyURcBpSv8Ptl77iVut7p8,1586
|
469
469
|
vellum/client/types/node_input_compiled_array_value.py,sha256=-N3NJYE8uSJwjKCS8QzlZUWr87GZQ-U20ODv6u9vs1U,783
|
470
470
|
vellum/client/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
|
471
471
|
vellum/client/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
|
@@ -486,7 +486,7 @@ vellum/client/types/node_output_compiled_search_results_value.py,sha256=oHKSncqd
|
|
486
486
|
vellum/client/types/node_output_compiled_string_value.py,sha256=pR_ku51KL_gwplMCiy6oT4sARnKP_0gZsTcLbVtOk_Y,880
|
487
487
|
vellum/client/types/node_output_compiled_thinking_value.py,sha256=j6IRT9A7f58wUyv0dAFY9ata7Tl391gXwn_wbDmxkAI,953
|
488
488
|
vellum/client/types/node_output_compiled_value.py,sha256=GbIKZyrGmqj_dYLiL0eAVZdQnfQhZd-BYsQnGdyI6tY,1181
|
489
|
-
vellum/client/types/node_parent_context.py,sha256=
|
489
|
+
vellum/client/types/node_parent_context.py,sha256=CC5UIWBjYwAs5hxCI2Q12wGjZZGzHGbuv6kADd_uKCM,1591
|
490
490
|
vellum/client/types/normalized_log_probs.py,sha256=XNfwhKgK9vPlJQh9dcup2Rl5mTlmV154rrIRsf3dYx8,706
|
491
491
|
vellum/client/types/normalized_token_log_probs.py,sha256=C0VHuRQbbcCFzQ9fJNbNjXAc2aUMUT5MxIt929-KMEA,714
|
492
492
|
vellum/client/types/number_input.py,sha256=e5hNmwXv-rBfkJ-SdwbJzU6UKY0ej2m6jO7uEKJ_n4M,739
|
@@ -512,7 +512,7 @@ vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=u29sjMewYP
|
|
512
512
|
vellum/client/types/paginated_test_suite_test_case_list.py,sha256=1CDDtqfWyoYPQCP_f6746Yimd1dkqPiX0lTqK6X91Gw,799
|
513
513
|
vellum/client/types/paginated_workflow_release_tag_read_list.py,sha256=dH24ESWyAMVtyHsBkxG8kJ9oORY04Wn3IN-7jvV7Lu4,818
|
514
514
|
vellum/client/types/paginated_workflow_sandbox_example_list.py,sha256=rCivuKp5fzVV8PdRwyiet7bEmLxX_1hv8N0vn0xaT70,817
|
515
|
-
vellum/client/types/parent_context.py,sha256=
|
515
|
+
vellum/client/types/parent_context.py,sha256=_Hg2z2tuWsTFh-hcDhFoDh5oBNf8CYCgaB_ezyec5V0,903
|
516
516
|
vellum/client/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
|
517
517
|
vellum/client/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
|
518
518
|
vellum/client/types/plain_text_prompt_block.py,sha256=cqEN-B4mcvMw_9lBN7FQG8pk9b5LBJ9xpM6PTgkGiqs,930
|
@@ -522,7 +522,7 @@ vellum/client/types/prompt_block.py,sha256=quAME4X2doCO_DQ-U7v0Py-ZZy1Z5qypVVq2f
|
|
522
522
|
vellum/client/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
|
523
523
|
vellum/client/types/prompt_deployment_expand_meta_request.py,sha256=agsiAaHB6lDoZPlnfJ2nmhB4Ud4EiJJTX05YmduyCPo,1910
|
524
524
|
vellum/client/types/prompt_deployment_input_request.py,sha256=KrT4-Ew2VvTWXEkYQz2oyHn5EDOgrMW7FzRFaPH3ARg,353
|
525
|
-
vellum/client/types/prompt_deployment_parent_context.py,sha256=
|
525
|
+
vellum/client/types/prompt_deployment_parent_context.py,sha256=tq803ZjiUiHmXUUMIEh0WaKwoDL9jEK1XpAjOEZfhYg,1766
|
526
526
|
vellum/client/types/prompt_deployment_release.py,sha256=H6sluuxANsoaX6gA9lw76lJkTECuxFofSeetKF00ze0,1346
|
527
527
|
vellum/client/types/prompt_deployment_release_prompt_deployment.py,sha256=tj8g0qEJyAuijxRBUV6nO2IITEorqVY-C37oqiWg6Po,582
|
528
528
|
vellum/client/types/prompt_deployment_release_prompt_version.py,sha256=MRiTZ13hMHbhFCJ859CkT231_zFcWo2b_0kDs2G4RWQ,849
|
@@ -592,8 +592,8 @@ vellum/client/types/slim_document.py,sha256=HJiymYPvRxfxhBUkD8epW0hQ2Vt9PQtv398Q
|
|
592
592
|
vellum/client/types/slim_document_document_to_document_index.py,sha256=0LThZhOgIE2kSmIWH9s59_6pEzGRWpx5qS5BBuWXdLk,1551
|
593
593
|
vellum/client/types/slim_release_review.py,sha256=7DXmD1AVa_Wj7e0qiR7GUN9cSqwkk1JloYmp_3oluQQ,783
|
594
594
|
vellum/client/types/slim_workflow_deployment.py,sha256=Js-ycMFZ8-kNFPsd4bZew9nI_eN2M_58LzDHeCjkfTg,2009
|
595
|
-
vellum/client/types/slim_workflow_execution_read.py,sha256=
|
596
|
-
vellum/client/types/span_link.py,sha256=
|
595
|
+
vellum/client/types/slim_workflow_execution_read.py,sha256=f1GAN4ejtd6kmtYD15cnXceUCpAX1Zs-Y3NhNXrDPCc,1995
|
596
|
+
vellum/client/types/span_link.py,sha256=hcfj0VJVorSdh6lVrFGqTImo7Ax_3iLdc79Vb5Dz2xE,1426
|
597
597
|
vellum/client/types/span_link_type_enum.py,sha256=NaBXnHnOKMZvgHfjhwJJNqM4wuTOxtGkMIXjN2hU-6A,130
|
598
598
|
vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
|
599
599
|
vellum/client/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
|
@@ -737,40 +737,40 @@ vellum/client/types/vellum_variable.py,sha256=BDcccISJsycsrW3E5A5RTIOfxS_83ofkle
|
|
737
737
|
vellum/client/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
|
738
738
|
vellum/client/types/vellum_variable_type.py,sha256=epYV-PY0NkvUntKzgzqelWMq9Dzmh7Y32c19GB_2mh0,411
|
739
739
|
vellum/client/types/vellum_workflow_execution_event.py,sha256=H8rP3_6a6LTvemoHfsmI2THpTRf8PYrZQcjoeTzf-44,934
|
740
|
-
vellum/client/types/workflow_deployment_event_executions_response.py,sha256=
|
740
|
+
vellum/client/types/workflow_deployment_event_executions_response.py,sha256=arcWX7d-qrfFc5-_AkbqdSJAsxXakESJaHkg_xTrsZs,1249
|
741
741
|
vellum/client/types/workflow_deployment_history_item.py,sha256=w5yqAtmYWw8kTljYEVBa8-fLxKsrBA8Img7IC3GjZG4,1226
|
742
|
-
vellum/client/types/workflow_deployment_parent_context.py,sha256=
|
742
|
+
vellum/client/types/workflow_deployment_parent_context.py,sha256=P4-KVpe2TY0MHPqu9pmAAvgCGyWimEwE9AOZA_F_vnk,1772
|
743
743
|
vellum/client/types/workflow_deployment_read.py,sha256=mxsi0mAGWfld_p6Q48kkmC7fqcMALZOFf4QmCwVBGEk,2183
|
744
744
|
vellum/client/types/workflow_deployment_release.py,sha256=pBFhfudeWCxl2P1HYP74t8N49zjy3aRGT8dK5NnuJZg,1423
|
745
745
|
vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=irWt901SImKChLayz7_52C1W7JldKiQHweqkjuMUoNQ,586
|
746
746
|
vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=V1Eb3goBX2lle851LkhR1tbCFa0z_O-yhMuQWCN6c-g,773
|
747
747
|
vellum/client/types/workflow_error.py,sha256=EQajkEmLS64T0wYm0goHQl0rT7Lguurk8pLwkhjsgAI,282
|
748
748
|
vellum/client/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
|
749
|
-
vellum/client/types/workflow_event_execution_read.py,sha256=
|
749
|
+
vellum/client/types/workflow_event_execution_read.py,sha256=rDUpW-R5vwrEekZg0eF65mf5QPIPeYHfKiZ1lUD4kuc,2148
|
750
750
|
vellum/client/types/workflow_execution_actual.py,sha256=RC5t5wfnbHJ0jvSV_rk3OK38u1v30T7nFlQNk4IVYs0,867
|
751
751
|
vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
|
752
752
|
vellum/client/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB2bTznTMFExSZdBhTkmelf1h4Q,1931
|
753
753
|
vellum/client/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
|
754
|
-
vellum/client/types/workflow_execution_detail.py,sha256=
|
754
|
+
vellum/client/types/workflow_execution_detail.py,sha256=74Yd8OE8oL3Q3EoripiaEYX6qV9X0qRfavnyyUpan1Y,1855
|
755
755
|
vellum/client/types/workflow_execution_event_error_code.py,sha256=QzRLZ0dteptDmt3n5_vw26zGgDrpvcR4vRa_mtl2sMI,495
|
756
756
|
vellum/client/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
|
757
757
|
vellum/client/types/workflow_execution_fulfilled_body.py,sha256=4M9fQdJy7nH5Y1HLq9VVlfTNW4F9jlj4k5SWty9fFqQ,746
|
758
|
-
vellum/client/types/workflow_execution_fulfilled_event.py,sha256=
|
758
|
+
vellum/client/types/workflow_execution_fulfilled_event.py,sha256=BtL6AumKq-SbFywf2Bacwc8KQM69HzVwFGT8RtpzGPs,1610
|
759
759
|
vellum/client/types/workflow_execution_initiated_body.py,sha256=12ihPWA3nsLNC-RNEdhgz52l1RHH5dB6yls9vtiU9N4,745
|
760
|
-
vellum/client/types/workflow_execution_initiated_event.py,sha256=
|
760
|
+
vellum/client/types/workflow_execution_initiated_event.py,sha256=JWZw6O1ne3A71ypiirHKegKa5BSyf1Ff9eSnrPOcEcE,1610
|
761
761
|
vellum/client/types/workflow_execution_node_result_event.py,sha256=MexutJjIhlHJJSQIu2n1OLZC4FRotj9u1ixZgSNaI3M,936
|
762
762
|
vellum/client/types/workflow_execution_paused_body.py,sha256=35Q7Bs671cjHKJfQT0reZ7bsuKG3oaiBsb_QytjIWUU,805
|
763
|
-
vellum/client/types/workflow_execution_paused_event.py,sha256=
|
763
|
+
vellum/client/types/workflow_execution_paused_event.py,sha256=dfEkgjBGio_39PXUHWtt4TXa4k7TpxohXKHfMNBRQGA,1592
|
764
764
|
vellum/client/types/workflow_execution_rejected_body.py,sha256=9lrF3CdU3MaXMcaNP5UzEQGAnTW9hpcHA38zvzh3zgk,757
|
765
|
-
vellum/client/types/workflow_execution_rejected_event.py,sha256=
|
765
|
+
vellum/client/types/workflow_execution_rejected_event.py,sha256=36XmXblohxRlGc20TQErGuBHqf0i4bbIVs3jJGFIxBg,1604
|
766
766
|
vellum/client/types/workflow_execution_resumed_body.py,sha256=j8lwN0Bj3A3J4G9Nr2GoJ8ae28vNXnRNUemKgeBT7M8,685
|
767
|
-
vellum/client/types/workflow_execution_resumed_event.py,sha256=
|
767
|
+
vellum/client/types/workflow_execution_resumed_event.py,sha256=xbWssZ9QE8Tm_6EDoFfQf4flZE6BOF7EcsM92ACRxWk,1598
|
768
768
|
vellum/client/types/workflow_execution_snapshotted_body.py,sha256=TByTfAwY20jS7tItCDl-4KAKCmvpycNN22pjJGoBFc4,746
|
769
|
-
vellum/client/types/workflow_execution_snapshotted_event.py,sha256=
|
770
|
-
vellum/client/types/workflow_execution_span.py,sha256=
|
771
|
-
vellum/client/types/workflow_execution_span_attributes.py,sha256=
|
769
|
+
vellum/client/types/workflow_execution_snapshotted_event.py,sha256=vvv23rPQhYgsqRsuzn-6oF27aCvQb7QD93KlrIyTy3k,1622
|
770
|
+
vellum/client/types/workflow_execution_span.py,sha256=V-8FEpa_lauHoDDSo53yYx2iJ-qdRwnUpqgEDS-CFJU,1508
|
771
|
+
vellum/client/types/workflow_execution_span_attributes.py,sha256=9AQLo7aP2B3czLTGwwWb2BVBv-8wh85QyFvvw4PyJ4Y,596
|
772
772
|
vellum/client/types/workflow_execution_streaming_body.py,sha256=phni9pJKkFGsQ5IcS4ogtG1EjBzpdBiYpN9CPbkjxH8,746
|
773
|
-
vellum/client/types/workflow_execution_streaming_event.py,sha256=
|
773
|
+
vellum/client/types/workflow_execution_streaming_event.py,sha256=EJHp5qG7fx66U5jQkoCuVXHGHcs68oRaTkrnTZLDZAQ,1610
|
774
774
|
vellum/client/types/workflow_execution_usage_calculation_error.py,sha256=O44pAaA3pOpn6dqxfsAFx4QnXeVfIggGWbgmTzQV4Ms,754
|
775
775
|
vellum/client/types/workflow_execution_usage_calculation_error_code_enum.py,sha256=O8CGCaWKuhnRjmQXTsw4gQn5hfDFiKED8bJYzP8R0LM,258
|
776
776
|
vellum/client/types/workflow_execution_usage_result.py,sha256=wZdRqzG_Lwi8gqDHGEU6ayx3pvO9oe8hIPzDDePELz8,928
|
@@ -791,7 +791,7 @@ vellum/client/types/workflow_output_json.py,sha256=MiCF-mq121YKZmYeaVpb3Tgh4XYqW
|
|
791
791
|
vellum/client/types/workflow_output_number.py,sha256=p8APNBpl6c3e3dxCFvZtL0jyKOmu9s6LkY3vgXwhTMw,812
|
792
792
|
vellum/client/types/workflow_output_search_results.py,sha256=r3RRGVVrH2H9NAuxA7qmG8lponyeLHHhCx6AUiMYWzc,903
|
793
793
|
vellum/client/types/workflow_output_string.py,sha256=_jclzbQ-Wlf-7FEVTWXhs9h5FWfj4xGpiODZBOzT43w,810
|
794
|
-
vellum/client/types/workflow_parent_context.py,sha256=
|
794
|
+
vellum/client/types/workflow_parent_context.py,sha256=kU4OWCIlJLLRn4BVapEKprtrCxdj-uNiKdUZob515-0,1585
|
795
795
|
vellum/client/types/workflow_push_deployment_config_request.py,sha256=pG6bZtlw7S0TcXtNRQNa7y_2NodZe7dp5SchIrgRUVU,745
|
796
796
|
vellum/client/types/workflow_push_exec_config.py,sha256=6TaVMVqhSOz4DnY46l8axPDtytSioXDl9nHvFXSxH1g,94
|
797
797
|
vellum/client/types/workflow_push_response.py,sha256=1vUSZmZ1GK1242dAkNwJnJI0rL3pBT3_0HOLLjdiutw,724
|
@@ -813,7 +813,7 @@ vellum/client/types/workflow_result_event_output_data_number.py,sha256=OZYYUF3ay
|
|
813
813
|
vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7ZvBG70ZBO4SEqbaNzIrV9Zn1NXabNh3M9v_hg,1172
|
814
814
|
vellum/client/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
|
815
815
|
vellum/client/types/workflow_sandbox_example.py,sha256=XsKa7JvPFm0no8nh_q1DojwMd1ko8kV_xn3omFr4kW4,760
|
816
|
-
vellum/client/types/workflow_sandbox_parent_context.py,sha256=
|
816
|
+
vellum/client/types/workflow_sandbox_parent_context.py,sha256=X8PEnywiPOjksLe28QyNrrexnfoPrSHZ360UNUcQbHw,1546
|
817
817
|
vellum/client/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
|
818
818
|
vellum/client/types/workspace_read.py,sha256=ocPtWvOwadqkU3z21bJgE4JeLYTAkOqBlKkc9lDDFFg,697
|
819
819
|
vellum/client/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
|
@@ -887,8 +887,6 @@ vellum/resources/organizations/__init__.py,sha256=FD1umjszsErkQIAI6aZ7Lv_T6iN5Ia
|
|
887
887
|
vellum/resources/organizations/client.py,sha256=68HAX4pswpJDH0-Yjc3teoloSJBUGRv8O1V8tCqFSuk,162
|
888
888
|
vellum/resources/prompts/__init__.py,sha256=CtN_jI0nc0C3yqxUPR1uWs5Mvxhlce5c-d8E96GVt4g,149
|
889
889
|
vellum/resources/prompts/client.py,sha256=9S00NNuuiz41m6-kOL6KCxu9bnYMORrXrXVWfFEeW5o,156
|
890
|
-
vellum/resources/release_reviews/__init__.py,sha256=KchzMayHdTI-aK1Q1ZorHyET_DMV9Sx_0NyJGTeXU7o,157
|
891
|
-
vellum/resources/release_reviews/client.py,sha256=UMJSHGN2g-TPB4MajT0VBAP9eG5pQajxZbi9UZhIZxA,164
|
892
890
|
vellum/resources/sandboxes/__init__.py,sha256=sycp4Bgvj9GzBGjiXhtmKFjOdBsIoDfMFaQrvDK_lGo,151
|
893
891
|
vellum/resources/sandboxes/client.py,sha256=PBpYOg43HN-9B4YKtPqmE1aFag39ypLc5UWSxixUJjo,158
|
894
892
|
vellum/resources/test_suite_runs/__init__.py,sha256=PfRYjodfN_rYZlUTiBnVXxdwQNcdmI-qT6MCqubd3ug,157
|
@@ -1033,6 +1031,7 @@ vellum/types/execution_string_vellum_value.py,sha256=MY47d3IJQj9PPThKsCZUFS8y80f
|
|
1033
1031
|
vellum/types/execution_thinking_vellum_value.py,sha256=Mx9C-vjS0LCGK60CARSyuDI2bHPJFA9AOoSKSfnICG0,169
|
1034
1032
|
vellum/types/execution_vellum_value.py,sha256=VRe64r540rkdVWjWijd7Y5JsYM_9zw09QUUuorKHeXU,160
|
1035
1033
|
vellum/types/external_input_descriptor.py,sha256=-r6xPo7-1Ioq4XZ2nwcrg8OBoyVItKr-BeXspJwDWDQ,163
|
1034
|
+
vellum/types/external_parent_context.py,sha256=Oc7XB55q9HyKXFpwwoRR6EBS_bSskq4NDHAx1F38Da8,161
|
1036
1035
|
vellum/types/external_test_case_execution.py,sha256=Av4H59SBBCZ9CZtT-eKD3n05lgljTqdtSZSjtsDpbc4,166
|
1037
1036
|
vellum/types/external_test_case_execution_request.py,sha256=oJx3JSLU9aponZ53dY78ymcSZbQbHpAwnch9aq0F7ws,174
|
1038
1037
|
vellum/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py,sha256=NG9MjraDr4m6gdIo-tuD9Rtc9qGAWBuwk8duZxjoIg0,182
|
@@ -1530,15 +1529,15 @@ vellum/workflows/__init__.py,sha256=CssPsbNvN6rDhoLuqpEv7MMKGa51vE6dvAh6U31Pcio,
|
|
1530
1529
|
vellum/workflows/constants.py,sha256=2yg4_uo5gpqViy3ZLSwfC8qTybleYCtOnhA4Rj6bacM,1310
|
1531
1530
|
vellum/workflows/context.py,sha256=jvMuyeRluay8BQa7GX1TqUlmoHLCycAVYKkp87sfXSo,1644
|
1532
1531
|
vellum/workflows/descriptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1533
|
-
vellum/workflows/descriptors/base.py,sha256=
|
1532
|
+
vellum/workflows/descriptors/base.py,sha256=fRnRkECyDjfz2QEDCY9Q5mAerlJ6jR0R4nE-MP2VP_k,16558
|
1534
1533
|
vellum/workflows/descriptors/exceptions.py,sha256=gUy4UD9JFUKSeQnQpeuDSLiRqWjWiIsxLahB7p_q3JY,54
|
1535
1534
|
vellum/workflows/descriptors/tests/test_utils.py,sha256=HJ5DoRz0sJvViGxyZ_FtytZjxN2J8xTkGtaVwCy6Q90,6928
|
1536
|
-
vellum/workflows/descriptors/utils.py,sha256=
|
1535
|
+
vellum/workflows/descriptors/utils.py,sha256=7QvS_IOZWIoKvhNwpYBOTP3NasLSIBKTnhyASry2HCM,4320
|
1537
1536
|
vellum/workflows/edges/__init__.py,sha256=wSkmAnz9xyi4vZwtDbKxwlplt2skD7n3NsxkvR_pUus,50
|
1538
1537
|
vellum/workflows/edges/edge.py,sha256=N0SnY3gKVuxImPAdCbPMPlHJIXbkQ3fwq_LbJRvVMFc,677
|
1539
1538
|
vellum/workflows/emitters/__init__.py,sha256=d9QFOI3eVg6rzpSFLvrjkDYXWikf1tcp3ruTRa2Boyc,143
|
1540
1539
|
vellum/workflows/emitters/base.py,sha256=Tcp13VMB-GMwEJdl-6XTPckspdOdwpMgBx22-PcQxds,892
|
1541
|
-
vellum/workflows/emitters/vellum_emitter.py,sha256=
|
1540
|
+
vellum/workflows/emitters/vellum_emitter.py,sha256=xiVlqe3B5fTR-e48nuneeodN1tkrBt0QQa0o9JHdyWg,5077
|
1542
1541
|
vellum/workflows/environment/__init__.py,sha256=TJz0m9dwIs6YOwCTeuN0HHsU-ecyjc1OJXx4AFy83EQ,121
|
1543
1542
|
vellum/workflows/environment/environment.py,sha256=Ck3RPKXJvtMGx_toqYQQQF-ZwXm5ijVwJpEPTeIJ4_Q,471
|
1544
1543
|
vellum/workflows/errors/__init__.py,sha256=tWGPu5xyAU8gRb8_bl0fL7OfU3wxQ9UH6qVwy4X4P_Q,113
|
@@ -1549,11 +1548,12 @@ vellum/workflows/events/node.py,sha256=n3JdlCmeZ6tFTu_x5tu1oSCe5EBE8B1Cy3CzSWK5B
|
|
1549
1548
|
vellum/workflows/events/stream.py,sha256=xhXJTZirFi0xad5neAQNogrIQ4h47fpnKbVC3vCM5Js,889
|
1550
1549
|
vellum/workflows/events/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1551
1550
|
vellum/workflows/events/tests/test_event.py,sha256=elg5j3MOdWQe-JjshopqVwd716Jrvtr9P_V2JUGZC60,17866
|
1552
|
-
vellum/workflows/events/types.py,sha256=
|
1551
|
+
vellum/workflows/events/types.py,sha256=3cv2r3e57yto7M4Nlobtyz9GO4bXubj4TMHSFvdECP8,4840
|
1553
1552
|
vellum/workflows/events/workflow.py,sha256=cR2aG6A-JqvLMKFqonDhKjSg496qldEtuks4BXXMTrY,7768
|
1554
1553
|
vellum/workflows/exceptions.py,sha256=NiBiR3ggfmPxBVqD-H1SqmjI-7mIn0EStSN1BqApvCM,1213
|
1555
1554
|
vellum/workflows/expressions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1556
|
-
vellum/workflows/expressions/accessor.py,sha256=
|
1555
|
+
vellum/workflows/expressions/accessor.py,sha256=3lu1-_-dBfZdJvtX-q66jbmRAZtqIfdsh_3_JNuzg1E,4462
|
1556
|
+
vellum/workflows/expressions/add.py,sha256=Rr1O83nksL5Z0kam4eaQOokvDrEwlUg7LqWnXzGUW40,1226
|
1557
1557
|
vellum/workflows/expressions/and_.py,sha256=I7lNqrUM3-m_5hmjjiMhaHhJtKcLj39kEFVWPDOqwfo,916
|
1558
1558
|
vellum/workflows/expressions/begins_with.py,sha256=FnWsQXbENm0ZwkfEP7dR8Qx4_MMrzj6C1yqAV2KaNHw,1123
|
1559
1559
|
vellum/workflows/expressions/between.py,sha256=dVeddT6YA91eOAlE1Utg7C7gnCiYE7WP-dg17yXUeAY,1492
|
@@ -1578,16 +1578,21 @@ vellum/workflows/expressions/is_not_null.py,sha256=EoHXFgZScKP_BM2a5Z7YFQN6l7RME
|
|
1578
1578
|
vellum/workflows/expressions/is_not_undefined.py,sha256=9s-RUQBqM17-_nIRvwsHuarLdHVtrxVuwnqBNJEtmh0,735
|
1579
1579
|
vellum/workflows/expressions/is_null.py,sha256=C75ALGlG_sTGcxI46tm9HtgPVfJ7DwTIyKzX8qtEiDU,660
|
1580
1580
|
vellum/workflows/expressions/is_undefined.py,sha256=uUBK3rxYbwoeRq36AGFc7d61hXzTp8UacQAi-1JbaW0,724
|
1581
|
+
vellum/workflows/expressions/length.py,sha256=Gq4eBXnLLmuyhKHwERcvBd4qLHLkw_JebpZ778gw08M,1274
|
1581
1582
|
vellum/workflows/expressions/less_than.py,sha256=chY9puJ6jDB2EinjfyGNrSplJ1NJC-BB-GGSSB33bqI,1237
|
1582
1583
|
vellum/workflows/expressions/less_than_or_equal_to.py,sha256=JtTDBa8yFKy3fGaCOA1tb_5s1JkY8FFnH6kpoeXGnT4,1267
|
1584
|
+
vellum/workflows/expressions/minus.py,sha256=qTIuOF3knMwwGiA9BNGvMP6vVw3z0g5wr4LziaYMRIE,1232
|
1583
1585
|
vellum/workflows/expressions/not_between.py,sha256=ZtRJeJDSSlOvajL8YoBoh5o_khjIn9xSSeQCnXYbHFE,1506
|
1584
1586
|
vellum/workflows/expressions/not_in.py,sha256=pFvwkFPsn3WJw61ssFgM2U1dqWEeglfz4FVT4xwm5Mc,1144
|
1585
1587
|
vellum/workflows/expressions/or_.py,sha256=s-8YdMSSCDS2yijR38kguwok3iqmDMMgDYKV93b4O4s,914
|
1586
1588
|
vellum/workflows/expressions/parse_json.py,sha256=xsk6j3HF7bU1yF6fwt5P9Ugcyd5D9ZXrdng11FRilUI,1088
|
1587
1589
|
vellum/workflows/expressions/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1588
1590
|
vellum/workflows/expressions/tests/test_accessor.py,sha256=g2z0mJjuWwVKeXS0yGoFW-aRmT5n_LrhfuBorSmj9kI,7585
|
1591
|
+
vellum/workflows/expressions/tests/test_add.py,sha256=_MjlRvIGAVM5wve2ru5jc_5Ae4x_ywvh4vN0S2yQ-8M,1615
|
1589
1592
|
vellum/workflows/expressions/tests/test_concat.py,sha256=fDHXlmFvCtqPkdZQD9Qs22i6sJq_MJjbUXCnTlSMvA0,1666
|
1590
1593
|
vellum/workflows/expressions/tests/test_expressions.py,sha256=3b6k8xs-CItBBw95NygFLUNoNPKxI4VA1GyWbkMtqyI,11623
|
1594
|
+
vellum/workflows/expressions/tests/test_length.py,sha256=pQA1tYSwqxE6euclboY024NXEOs7yaVgwTKkMPYUT08,1035
|
1595
|
+
vellum/workflows/expressions/tests/test_minus.py,sha256=pq7dvdRGNhSSn95LGNzRErsYUsFk5SpOKHDcSR5QToc,1632
|
1591
1596
|
vellum/workflows/expressions/tests/test_parse_json.py,sha256=zpB_qE5_EwWQL7ULQUJm0o1PRSfWZdAqZNW6Ah13oJE,1059
|
1592
1597
|
vellum/workflows/graph/__init__.py,sha256=3sHlay5d_-uD7j3QJXiGl0WHFZZ_QScRvgyDhN2GhHY,74
|
1593
1598
|
vellum/workflows/graph/graph.py,sha256=GGR8cGpSuNWPIiTWNWsj6l70upb5nIxAyFcn7VdaJIs,5506
|
@@ -1598,7 +1603,7 @@ vellum/workflows/inputs/base.py,sha256=w3owT5B3rLBmIj-v-jL2l-HD4yd3hXK9RmHVd557B
|
|
1598
1603
|
vellum/workflows/inputs/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1599
1604
|
vellum/workflows/inputs/tests/test_inputs.py,sha256=lioA8917mFLYq7Ml69UNkqUjcWbbxkxnpIEJ4FBaYBk,2206
|
1600
1605
|
vellum/workflows/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1601
|
-
vellum/workflows/integrations/composio_service.py,sha256=
|
1606
|
+
vellum/workflows/integrations/composio_service.py,sha256=rSliaZtNiBcDSvDxz9k5i1KkyUIrbxyegu0yU9cDByU,6023
|
1602
1607
|
vellum/workflows/integrations/mcp_service.py,sha256=SaOLg76JBAiBDAMUn04mxVWmf2Btobd1kDjc8B1atng,8712
|
1603
1608
|
vellum/workflows/logging.py,sha256=_a217XogktV4Ncz6xKFz7WfYmZAzkfVRVuC0rWob8ls,437
|
1604
1609
|
vellum/workflows/nodes/__init__.py,sha256=aVdQVv7Y3Ro3JlqXGpxwaU2zrI06plDHD2aumH5WUIs,1157
|
@@ -1641,7 +1646,7 @@ vellum/workflows/nodes/displayable/bases/api_node/node.py,sha256=iUtdPsbJs1jwo3V
|
|
1641
1646
|
vellum/workflows/nodes/displayable/bases/api_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1642
1647
|
vellum/workflows/nodes/displayable/bases/api_node/tests/test_node.py,sha256=Pf51DIyhtUxx-pCu0zJYDB4Z5_IW5mRwkJIoPT53_9I,3894
|
1643
1648
|
vellum/workflows/nodes/displayable/bases/base_prompt_node/__init__.py,sha256=Org3xTvgp1pA0uUXFfnJr29D3HzCey2lEdYF4zbIUgo,70
|
1644
|
-
vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py,sha256=
|
1649
|
+
vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py,sha256=ea20icDM1HB942wkH-XtXNSNCBDcjeOiN3vowkHL4fs,4477
|
1645
1650
|
vellum/workflows/nodes/displayable/bases/inline_prompt_node/__init__.py,sha256=Hl35IAoepRpE-j4cALaXVJIYTYOF3qszyVbxTj4kS1s,82
|
1646
1651
|
vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py,sha256=hy_fy4zImhpnHuPczKtOLhv_uOmvxvJsQA9Zl9DTmSw,12851
|
1647
1652
|
vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1672,7 +1677,7 @@ vellum/workflows/nodes/displayable/guardrail_node/test_node.py,sha256=SAGv6hSFcB
|
|
1672
1677
|
vellum/workflows/nodes/displayable/guardrail_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1673
1678
|
vellum/workflows/nodes/displayable/guardrail_node/tests/test_node.py,sha256=X2pd6TI8miYxIa7rgvs1pHTEreyWcf77EyR0_Jsa700,2055
|
1674
1679
|
vellum/workflows/nodes/displayable/inline_prompt_node/__init__.py,sha256=gSUOoEZLlrx35-tQhSAd3An8WDwBqyiQh-sIebLU9wU,74
|
1675
|
-
vellum/workflows/nodes/displayable/inline_prompt_node/node.py,sha256=
|
1680
|
+
vellum/workflows/nodes/displayable/inline_prompt_node/node.py,sha256=3jY-2UJarVJSz2eupt7c9Mp-Mk56U2meXU0d7c0KVNk,2941
|
1676
1681
|
vellum/workflows/nodes/displayable/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1677
1682
|
vellum/workflows/nodes/displayable/inline_prompt_node/tests/test_node.py,sha256=bBHs90mV5SZ3rJPAL0wx4WWyawUA406LgMPOdvpZC_A,10923
|
1678
1683
|
vellum/workflows/nodes/displayable/merge_node/__init__.py,sha256=J8IC08dSH7P76wKlNuxe1sn7toNGtSQdFirUbtPDEs0,60
|
@@ -1695,15 +1700,15 @@ vellum/workflows/nodes/displayable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
1695
1700
|
vellum/workflows/nodes/displayable/tests/test_inline_text_prompt_node.py,sha256=MHuIolSsrY9ziwoXWsye3XOODncL9DLZOkNYzQMLhRw,4696
|
1696
1701
|
vellum/workflows/nodes/displayable/tests/test_search_node_error_handling.py,sha256=8aw8hDFL0ZXThvAa7yxrJN026EYGD4-Q1si3Phu9-_0,6307
|
1697
1702
|
vellum/workflows/nodes/displayable/tests/test_search_node_wth_text_output.py,sha256=VepO5z1277c1y5N6LLIC31nnWD1aak2m5oPFplfJHHs,6935
|
1698
|
-
vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=
|
1703
|
+
vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=Bjv-wZyFgNaVZb9KEMMZd9lFoLzbPEPjEMpANizMZw4,2413
|
1699
1704
|
vellum/workflows/nodes/displayable/tool_calling_node/__init__.py,sha256=3n0-ysmFKsr40CVxPthc0rfJgqVJeZuUEsCmYudLVRg,117
|
1700
|
-
vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=
|
1701
|
-
vellum/workflows/nodes/displayable/tool_calling_node/state.py,sha256=
|
1705
|
+
vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=D6rWPeaIoYXVu3-WarzmyAXHqt1pcKheOEOB2iUoSHY,7632
|
1706
|
+
vellum/workflows/nodes/displayable/tool_calling_node/state.py,sha256=CcBVb_YtwfSSka4ze678k6-qwmzMSfjfVP8_Y95feSo,302
|
1702
1707
|
vellum/workflows/nodes/displayable/tool_calling_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1703
|
-
vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service.py,sha256=
|
1704
|
-
vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=
|
1708
|
+
vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service.py,sha256=in1fbEz5x1tx3uKv9YXdvOncsHucNL8Ro6Go7lBuuOQ,8962
|
1709
|
+
vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=1QwfUOS26pesN6Ckqfm-RVlOSyjuF945vKC20AXedKw,8458
|
1705
1710
|
vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py,sha256=om4FztVQ33jFZK_lbusi6khOM7zgzNCHlUcEb5-r6pU,8361
|
1706
|
-
vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=
|
1711
|
+
vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=MpsZHPiT8NtKwY27fqI29sj6ChiOaVHXZ8mKbhYo778,24134
|
1707
1712
|
vellum/workflows/nodes/experimental/README.md,sha256=eF6DfIL8t-HbF9-mcofOMymKrraiBHDLKTlnBa51ZiE,284
|
1708
1713
|
vellum/workflows/nodes/experimental/__init__.py,sha256=jCQgvZEknXKfuNhGSOou4XPfrPqZ1_XBj5F0n0fgiWM,106
|
1709
1714
|
vellum/workflows/nodes/experimental/openai_chat_completion_node/__init__.py,sha256=lsyD9laR9p7kx5-BXGH2gUTM242UhKy8SMV0SR6S2iE,90
|
@@ -1739,7 +1744,7 @@ vellum/workflows/runner/runner.py,sha256=t9Y3k82YjeML-Z7f1W2sj_1nAjJEpsnJUComDBe
|
|
1739
1744
|
vellum/workflows/sandbox.py,sha256=GVJzVjMuYzOBnSrboB0_6MMRZWBluAyQ2o7syeaeBd0,2235
|
1740
1745
|
vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
|
1741
1746
|
vellum/workflows/state/base.py,sha256=m9fCqbZn21GshCVCjJTD1dPZEQjFrsMXqlg7tM9fIwM,24283
|
1742
|
-
vellum/workflows/state/context.py,sha256=
|
1747
|
+
vellum/workflows/state/context.py,sha256=IsiNCYRVpAyhvrC2l5h9pNkrptuU_wOD-cHRiTAMGrg,3453
|
1743
1748
|
vellum/workflows/state/delta.py,sha256=7h8wR10lRCm15SykaPj-gSEvvsMjCwYLPsOx3nsvBQg,440
|
1744
1749
|
vellum/workflows/state/encoder.py,sha256=sV80h-lAo66isD2ezK1_YLzj75Aa5dAtF2YA1c3BYKo,2883
|
1745
1750
|
vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
|
@@ -1751,19 +1756,19 @@ vellum/workflows/tests/test_undefined.py,sha256=zMCVliCXVNLrlC6hEGyOWDnQADJ2g83y
|
|
1751
1756
|
vellum/workflows/types/__init__.py,sha256=KxUTMBGzuRCfiMqzzsykOeVvrrkaZmTTo1a7SLu8gRM,68
|
1752
1757
|
vellum/workflows/types/code_execution_node_wrappers.py,sha256=3MNIoFZKzVzNS5qFLVuDwMV17QJw72zo7NRf52yMq5A,3074
|
1753
1758
|
vellum/workflows/types/core.py,sha256=TggDVs2lVya33xvu374EDhMC1b7RRlAAs0zWLaF46BA,1385
|
1754
|
-
vellum/workflows/types/definition.py,sha256=
|
1759
|
+
vellum/workflows/types/definition.py,sha256=coGFuaPCF04z4Oj-Y5hLO7pql8yc2p5eF_AqFZPyhKg,4441
|
1755
1760
|
vellum/workflows/types/generics.py,sha256=8jptbEx1fnJV0Lhj0MpCJOT6yNiEWeTOYOwrEAb5CRU,1576
|
1756
1761
|
vellum/workflows/types/stack.py,sha256=h7NE0vXR7l9DevFBIzIAk1Zh59K-kECQtDTKOUunwMY,1314
|
1757
1762
|
vellum/workflows/types/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1758
|
-
vellum/workflows/types/tests/test_definition.py,sha256=
|
1763
|
+
vellum/workflows/types/tests/test_definition.py,sha256=EgZ0Gm1Z-05cnf85uvNzWQPdYeCU7mSHKbaa5uRvKJo,5018
|
1759
1764
|
vellum/workflows/types/tests/test_utils.py,sha256=UnZog59tR577mVwqZRqqWn2fScoOU1H6up0EzS8zYhw,2536
|
1760
1765
|
vellum/workflows/types/utils.py,sha256=mTctHITBybpt4855x32oCKALBEcMNLn-9cCmfEKgJHQ,6498
|
1761
1766
|
vellum/workflows/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1762
|
-
vellum/workflows/utils/functions.py,sha256=
|
1767
|
+
vellum/workflows/utils/functions.py,sha256=YsTcwCWqjcnH_ZHOHB9www3khoKqYcJ5e55pnqKsF9c,8740
|
1763
1768
|
vellum/workflows/utils/names.py,sha256=QLUqfJ1tmSEeUwBKTTiv_Qk3QGbInC2RSmlXfGXc8Wo,380
|
1764
1769
|
vellum/workflows/utils/pydantic_schema.py,sha256=eR_bBtY-T0pttJP-ARwagSdCOnwPUtiT3cegm2lzDTQ,1310
|
1765
1770
|
vellum/workflows/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1766
|
-
vellum/workflows/utils/tests/test_functions.py,sha256=
|
1771
|
+
vellum/workflows/utils/tests/test_functions.py,sha256=U-znUtUz3RFfW3SKYzpBqj2wlv5fsuMZ6RXImrLGAgE,23535
|
1767
1772
|
vellum/workflows/utils/tests/test_names.py,sha256=aOqpyvMsOEK_9mg_-yaNxQDW7QQfwqsYs37PseyLhxw,402
|
1768
1773
|
vellum/workflows/utils/tests/test_uuids.py,sha256=i77ABQ0M3S-aFLzDXHJq_yr5FPkJEWCMBn1HJ3DObrE,437
|
1769
1774
|
vellum/workflows/utils/tests/test_vellum_variables.py,sha256=vbnKgm41aB5OXlO-ZIPbhQ6xDiZkT8KMxCLqz4zocWY,1791
|
@@ -1776,8 +1781,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
|
|
1776
1781
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1777
1782
|
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=ptMntHzVyy8ZuzNgeTuk7hREgKQ5UBdgq8VJFSGaW4Y,20832
|
1778
1783
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
1779
|
-
vellum_ai-1.0.
|
1780
|
-
vellum_ai-1.0.
|
1781
|
-
vellum_ai-1.0.
|
1782
|
-
vellum_ai-1.0.
|
1783
|
-
vellum_ai-1.0.
|
1784
|
+
vellum_ai-1.1.0.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
1785
|
+
vellum_ai-1.1.0.dist-info/METADATA,sha256=NGVFe0bSI0ylZuAJ9mIbIndZowHT3U6lLCrEZc-i93c,5554
|
1786
|
+
vellum_ai-1.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1787
|
+
vellum_ai-1.1.0.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
|
1788
|
+
vellum_ai-1.1.0.dist-info/RECORD,,
|
@@ -3,6 +3,7 @@ from vellum.workflows.inputs import BaseInputs
|
|
3
3
|
from vellum.workflows.nodes.displayable.inline_prompt_node.node import InlinePromptNode
|
4
4
|
from vellum.workflows.nodes.displayable.tool_calling_node.node import ToolCallingNode
|
5
5
|
from vellum.workflows.state.base import BaseState
|
6
|
+
from vellum.workflows.types.definition import AuthorizationType, EnvironmentVariableReference, MCPServer
|
6
7
|
from vellum_ee.workflows.display.workflows.get_vellum_workflow_display_class import get_workflow_display
|
7
8
|
|
8
9
|
|
@@ -122,3 +123,95 @@ def test_serialize_node__prompt_inputs__mixed_values():
|
|
122
123
|
],
|
123
124
|
},
|
124
125
|
}
|
126
|
+
|
127
|
+
|
128
|
+
def test_serialize_node__tool_calling_node__mcp_server_api_key():
|
129
|
+
# GIVEN a tool calling node with an mcp server
|
130
|
+
class MyToolCallingNode(ToolCallingNode):
|
131
|
+
functions = [
|
132
|
+
MCPServer(
|
133
|
+
name="my-mcp-server",
|
134
|
+
url="https://my-mcp-server.com",
|
135
|
+
authorization_type=AuthorizationType.API_KEY,
|
136
|
+
api_key_header_key="my-api-key-header-key",
|
137
|
+
api_key_header_value=EnvironmentVariableReference(name="my-api-key-header-value"),
|
138
|
+
)
|
139
|
+
]
|
140
|
+
|
141
|
+
# AND a workflow with the tool calling node
|
142
|
+
class Workflow(BaseWorkflow):
|
143
|
+
graph = MyToolCallingNode
|
144
|
+
|
145
|
+
# WHEN the workflow is serialized
|
146
|
+
workflow_display = get_workflow_display(workflow_class=Workflow)
|
147
|
+
serialized_workflow: dict = workflow_display.serialize()
|
148
|
+
|
149
|
+
# THEN the node should properly serialize the mcp server
|
150
|
+
my_tool_calling_node = next(
|
151
|
+
node
|
152
|
+
for node in serialized_workflow["workflow_raw_data"]["nodes"]
|
153
|
+
if node["id"] == str(MyToolCallingNode.__id__)
|
154
|
+
)
|
155
|
+
|
156
|
+
functions_attribute = next(
|
157
|
+
attribute for attribute in my_tool_calling_node["attributes"] if attribute["name"] == "functions"
|
158
|
+
)
|
159
|
+
|
160
|
+
assert functions_attribute == {
|
161
|
+
"id": "6c0f7d4f-3c8a-4201-b588-8398d3c97480",
|
162
|
+
"name": "functions",
|
163
|
+
"value": {
|
164
|
+
"type": "ARRAY_REFERENCE",
|
165
|
+
"items": [
|
166
|
+
{
|
167
|
+
"type": "DICTIONARY_REFERENCE",
|
168
|
+
"entries": [
|
169
|
+
{
|
170
|
+
"id": "bcf2713b-19fc-4b4b-8ff5-b45c8e63c665",
|
171
|
+
"key": "type",
|
172
|
+
"value": {"type": "CONSTANT_VALUE", "value": {"type": "STRING", "value": "MCP_SERVER"}},
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"id": "4e00439e-ce6f-4e0a-be4c-0fc05990ec44",
|
176
|
+
"key": "name",
|
177
|
+
"value": {"type": "CONSTANT_VALUE", "value": {"type": "STRING", "value": "my-mcp-server"}},
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"id": "9a3dcca9-4595-4efb-ada6-c011721f7018",
|
181
|
+
"key": "url",
|
182
|
+
"value": {
|
183
|
+
"type": "CONSTANT_VALUE",
|
184
|
+
"value": {"type": "STRING", "value": "https://my-mcp-server.com"},
|
185
|
+
},
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"id": "21c3a6ce-7607-42a4-92b8-9d7c4061edce",
|
189
|
+
"key": "authorization_type",
|
190
|
+
"value": {"type": "CONSTANT_VALUE", "value": {"type": "STRING", "value": "API_KEY"}},
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"id": "dcf8e8f0-84d2-4ffb-b0e6-218c569015a4",
|
194
|
+
"key": "bearer_token_value",
|
195
|
+
"value": {"type": "CONSTANT_VALUE", "value": {"type": "JSON", "value": None}},
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"id": "fe93f516-42c0-40cf-b476-50bd04857d5f",
|
199
|
+
"key": "api_key_header_key",
|
200
|
+
"value": {
|
201
|
+
"type": "CONSTANT_VALUE",
|
202
|
+
"value": {"type": "STRING", "value": "my-api-key-header-key"},
|
203
|
+
},
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"id": "750ed8ca-3bf3-46be-96f0-2c92d19d2084",
|
207
|
+
"key": "api_key_header_value",
|
208
|
+
"value": {
|
209
|
+
"type": "ENVIRONMENT_VARIABLE",
|
210
|
+
"environment_variable": "my-api-key-header-value",
|
211
|
+
},
|
212
|
+
},
|
213
|
+
],
|
214
|
+
}
|
215
|
+
],
|
216
|
+
},
|
217
|
+
}
|
@@ -53,10 +53,6 @@ def test_serialize_workflow():
|
|
53
53
|
"toolkit": "GITHUB",
|
54
54
|
"action": "GITHUB_CREATE_AN_ISSUE",
|
55
55
|
"description": "Create a new issue in a GitHub repository",
|
56
|
-
"display_name": "Create GitHub Issue",
|
57
|
-
"parameters": None,
|
58
|
-
"version": None,
|
59
|
-
"tags": None,
|
60
56
|
"user_id": None,
|
61
57
|
}
|
62
58
|
|