vellum-ai 1.4.2__py3-none-any.whl → 1.5.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 +14 -0
- vellum/client/__init__.py +3 -0
- vellum/client/core/client_wrapper.py +2 -2
- vellum/client/reference.md +160 -0
- vellum/client/resources/__init__.py +2 -0
- vellum/client/resources/integrations/__init__.py +4 -0
- vellum/client/resources/integrations/client.py +260 -0
- vellum/client/resources/integrations/raw_client.py +267 -0
- vellum/client/types/__init__.py +12 -0
- vellum/client/types/components_schemas_composio_execute_tool_request.py +5 -0
- vellum/client/types/components_schemas_composio_execute_tool_response.py +5 -0
- vellum/client/types/components_schemas_composio_tool_definition.py +5 -0
- vellum/client/types/composio_execute_tool_request.py +24 -0
- vellum/client/types/composio_execute_tool_response.py +24 -0
- vellum/client/types/composio_tool_definition.py +26 -0
- vellum/client/types/vellum_error_code_enum.py +2 -0
- vellum/client/types/vellum_sdk_error.py +1 -0
- vellum/client/types/workflow_event_error.py +1 -0
- vellum/resources/integrations/__init__.py +3 -0
- vellum/resources/integrations/client.py +3 -0
- vellum/resources/integrations/raw_client.py +3 -0
- vellum/types/components_schemas_composio_execute_tool_request.py +3 -0
- vellum/types/components_schemas_composio_execute_tool_response.py +3 -0
- vellum/types/components_schemas_composio_tool_definition.py +3 -0
- vellum/types/composio_execute_tool_request.py +3 -0
- vellum/types/composio_execute_tool_response.py +3 -0
- vellum/types/composio_tool_definition.py +3 -0
- vellum/workflows/runner/runner.py +132 -110
- vellum/workflows/utils/functions.py +6 -1
- vellum/workflows/utils/tests/test_functions.py +40 -0
- vellum/workflows/workflows/base.py +19 -5
- vellum/workflows/workflows/tests/test_base_workflow.py +54 -0
- {vellum_ai-1.4.2.dist-info → vellum_ai-1.5.0.dist-info}/METADATA +1 -1
- {vellum_ai-1.4.2.dist-info → vellum_ai-1.5.0.dist-info}/RECORD +39 -19
- vellum_ai-1.5.0.dist-info/entry_points.txt +4 -0
- vellum_ee/assets/node-definitions.json +483 -0
- vellum_ee/scripts/generate_node_definitions.py +89 -0
- vellum_ai-1.4.2.dist-info/entry_points.txt +0 -3
- {vellum_ai-1.4.2.dist-info → vellum_ai-1.5.0.dist-info}/LICENSE +0 -0
- {vellum_ai-1.4.2.dist-info → vellum_ai-1.5.0.dist-info}/WHEEL +0 -0
@@ -22,7 +22,9 @@ vellum_cli/tests/test_ping.py,sha256=b3aQLd-N59_8w2rRiWqwpB1rlHaKEYVbAj1Y3hi7A-g
|
|
22
22
|
vellum_cli/tests/test_pull.py,sha256=e2XHzcHIx9k-FyuNAl7wMSNsSSebPGyP6U05JGcddFs,49447
|
23
23
|
vellum_cli/tests/test_push.py,sha256=2MjkNKr_9Guv5Exjsm3L1BeVXmPkKUcCSiKnp90HgW4,41996
|
24
24
|
vellum_ee/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
+
vellum_ee/assets/node-definitions.json,sha256=YfgSAcyd4BaWhvPvdbc4DZwwFOVo6h-HM01LwZck5QQ,13714
|
25
26
|
vellum_ee/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
+
vellum_ee/scripts/generate_node_definitions.py,sha256=M9qivE4pgw0kvibUJWOfzLXxt8-dDwOCykDHyoICLWc,3260
|
26
28
|
vellum_ee/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
29
|
vellum_ee/workflows/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
30
|
vellum_ee/workflows/display/base.py,sha256=R3f2T8FlZrXn2FawAmpVuLB3fKFWw11mCUulWAyIKA0,1912
|
@@ -151,12 +153,12 @@ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50P
|
|
151
153
|
vellum_ee/workflows/tests/test_serialize_module.py,sha256=d4ZpMd3oIxiq-sBXeSQESS6ix6-1P6rdCRFqBEReJIU,2882
|
152
154
|
vellum_ee/workflows/tests/test_server.py,sha256=dXFBraU99Y6cKp2aBhLFXQTScSRcE9WaWjo1z9piqdU,23344
|
153
155
|
vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
|
154
|
-
vellum/__init__.py,sha256=
|
156
|
+
vellum/__init__.py,sha256=QWxRjUIOceGP7ARsXZVhWrwJDrbtyoZmXeAtJ8uud5A,47952
|
155
157
|
vellum/client/README.md,sha256=flqu57ubZNTfpq60CdLtJC9gp4WEkyjb_n_eZ4OYf9w,6497
|
156
|
-
vellum/client/__init__.py,sha256
|
158
|
+
vellum/client/__init__.py,sha256=-dZaD_0KtlkpQ-pULNNWcarC5xXlGMcGc2nBKLIyRlA,73661
|
157
159
|
vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
158
160
|
vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
159
|
-
vellum/client/core/client_wrapper.py,sha256=
|
161
|
+
vellum/client/core/client_wrapper.py,sha256=cO25TU0TufiIBZd06DQ-_8VD5bU9HSgF7mVd-L4zVaU,2840
|
160
162
|
vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
161
163
|
vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
162
164
|
vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
@@ -177,8 +179,8 @@ vellum/client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy
|
|
177
179
|
vellum/client/errors/too_many_requests_error.py,sha256=SJJemdgUlQHV_VpxK8UfFNexgZebNT5_MTOeQs6oVgc,397
|
178
180
|
vellum/client/errors/unauthorized_error.py,sha256=waPl5Swiqsk3FQK-Lljzx4KDh4RPZ0wL6BLHjM8onQ8,394
|
179
181
|
vellum/client/raw_client.py,sha256=cmMR0t87iUYvkIE9L4g0dcCmw3uUQNze9rD9CBv5rzs,113481
|
180
|
-
vellum/client/reference.md,sha256=
|
181
|
-
vellum/client/resources/__init__.py,sha256=
|
182
|
+
vellum/client/reference.md,sha256=Cmp2G_L5Xrw2y_R6NzOhJj4w8e1qdkM8bhHURgkY9yo,98843
|
183
|
+
vellum/client/resources/__init__.py,sha256=AlEiBj5gJLcaAJhAa-X1vtES-uujc6c83p6_C55U6FE,1647
|
182
184
|
vellum/client/resources/ad_hoc/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
183
185
|
vellum/client/resources/ad_hoc/client.py,sha256=v5I_YzJaaPezsE4KVuMSUXJISstKuJ_9-VUeXakIJhw,14353
|
184
186
|
vellum/client/resources/ad_hoc/raw_client.py,sha256=JSbwEoowm41Wm9u4hQNoAIHG_-IX6IYfsBRn2tGZ-gM,24864
|
@@ -207,6 +209,9 @@ vellum/client/resources/folder_entities/client.py,sha256=F60BvZtI4Bnk2h7Z405Jshs
|
|
207
209
|
vellum/client/resources/folder_entities/raw_client.py,sha256=uYTdVE-lpzoPzxnXIKCb_A4N8L1R7R-K0rq_0txtV04,10697
|
208
210
|
vellum/client/resources/folder_entities/types/__init__.py,sha256=i-kAMISROYcwU6XqRceoYrbgOcHZHLTV-xDqw9kBMP8,232
|
209
211
|
vellum/client/resources/folder_entities/types/folder_entities_list_request_entity_status.py,sha256=nK9b9fRSeCfjn2V2Hifl1IbhFeVsNkoeXJ8rCAPADFg,183
|
212
|
+
vellum/client/resources/integrations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
213
|
+
vellum/client/resources/integrations/client.py,sha256=UI5qbZj_NLXhJQanlP5tzTOmDH6QbhuiY-U-D-I3lo0,7446
|
214
|
+
vellum/client/resources/integrations/raw_client.py,sha256=4mMX2Gd-lVCSURSgAZKvJNYc3jbGzhuU4JTABbLvpt0,10354
|
210
215
|
vellum/client/resources/metric_definitions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
211
216
|
vellum/client/resources/metric_definitions/client.py,sha256=_wp7Ki9DlPSjfmYyyrGEBhoq3IkrFDpxJVPKJEP1yUk,7467
|
212
217
|
vellum/client/resources/metric_definitions/raw_client.py,sha256=aGTcWa2UnI5DkxfFfg9-Uo1kzLN5a7qLaZURIk1MTtA,9083
|
@@ -253,7 +258,7 @@ vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKei
|
|
253
258
|
vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
|
254
259
|
vellum/client/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
255
260
|
vellum/client/tests/test_utils.py,sha256=zk8z45-2xrm9sZ2hq8PTqY8MXmXtPqMqYK0VBBX0GHg,1176
|
256
|
-
vellum/client/types/__init__.py,sha256=
|
261
|
+
vellum/client/types/__init__.py,sha256=n4NG8ONAsDGYTCAfh1BtPvO7DGKyov_L_fMKkGPshqA,72678
|
257
262
|
vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
|
258
263
|
vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
|
259
264
|
vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
|
@@ -316,9 +321,15 @@ vellum/client/types/code_executor_secret_input.py,sha256=JxSS5NQ7r9_a7QFnbuKmoZ-
|
|
316
321
|
vellum/client/types/code_resource_definition.py,sha256=0btqhVJWnRDkqFsOeud_d7JK0MN8UUwVe5xU3fIsrkw,799
|
317
322
|
vellum/client/types/compile_prompt_deployment_expand_meta_request.py,sha256=X97bEMMHKTt40ptQ5Vx_In-U6IavugEWghJ9ZYR20ko,1100
|
318
323
|
vellum/client/types/compile_prompt_meta.py,sha256=o3fxYObLrmFF__0b8jTl8MGd_tUknNKzivkQxn4zWq0,812
|
324
|
+
vellum/client/types/components_schemas_composio_execute_tool_request.py,sha256=fv9Ot9bhtipqlbNFbLfHyH6SdW3M7F8zbqCoxOb2d8Q,209
|
325
|
+
vellum/client/types/components_schemas_composio_execute_tool_response.py,sha256=KTkBSWiXPl_5DxF5H_4rzrYyT-lK1vw4d5CJM-3n_ZA,213
|
326
|
+
vellum/client/types/components_schemas_composio_tool_definition.py,sha256=HH5q1rKal98d3lDhzDIpfxEIAQjhcbVjEAbPLx1Hyow,192
|
319
327
|
vellum/client/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R6zLakrJMMn_1z9FIylBcxencQ6JHVPs7HSg,206
|
320
328
|
vellum/client/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=FbgAsvMARYuSub2QQwFEkkbVeYwKkNmVi98nk7CxC-Q,235
|
321
329
|
vellum/client/types/components_schemas_prompt_version_build_config_sandbox.py,sha256=OquKc9g8mgyxmNPKXcEq9E6PCgtKSbNi-RQqp2go9VI,230
|
330
|
+
vellum/client/types/composio_execute_tool_request.py,sha256=HmH2nKizSIWWUK6ENSqIytAJEAE1VTAX4JbGVXcaEhQ,730
|
331
|
+
vellum/client/types/composio_execute_tool_response.py,sha256=XPV1x_S5weq_8WVfM_UGdI48aHJZVLGuS34ZLCNPiW4,728
|
332
|
+
vellum/client/types/composio_tool_definition.py,sha256=iImgyGyXTkft-wr6F92xOep77NVT5nJtEsGT7adMQpE,737
|
322
333
|
vellum/client/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
|
323
334
|
vellum/client/types/conditional_node_result.py,sha256=nN5fZPgjyWQU_McV3sL_NcgW1V1VWU-KBIFgGTyOZdo,748
|
324
335
|
vellum/client/types/conditional_node_result_data.py,sha256=Ui44n0Vd00O0RKzWb_mjOl8lVuV8XKOFNCYLple8L_8,568
|
@@ -804,12 +815,12 @@ vellum/client/types/vellum_code_resource_definition.py,sha256=XdueTR342BDjevZ3kt
|
|
804
815
|
vellum/client/types/vellum_document.py,sha256=qwXqMS2Eud2a5KmF8QHhU_vJzDX0g5cesrCpmBqREsA,604
|
805
816
|
vellum/client/types/vellum_document_request.py,sha256=P9vA7ZDNeaHNlMqyzfl-ZD4bpdf-xA5mH8R1QuOAmOY,611
|
806
817
|
vellum/client/types/vellum_error.py,sha256=G4WSD-w_skoDDnsAt-TtImt-hZT-Sc8LjHvERBUVnhE,691
|
807
|
-
vellum/client/types/vellum_error_code_enum.py,sha256=
|
818
|
+
vellum/client/types/vellum_error_code_enum.py,sha256=_Z1p2ExKwGLmNU5Hq-8MZ328LStQWbevipjYkBF-GSU,402
|
808
819
|
vellum/client/types/vellum_error_request.py,sha256=7l4Ux6wj3C9BdSXUPBrtxECsAirmvaLU42Y23VqncBU,698
|
809
820
|
vellum/client/types/vellum_image.py,sha256=LAGUYBDsT0bmMOqgbaeCTCy2w4zAeHEyUIgPtmdjjJ4,601
|
810
821
|
vellum/client/types/vellum_image_request.py,sha256=6DoI2AdJIG8NShHSslpHvsFUw5PwIMconjlHSipOP5Q,608
|
811
822
|
vellum/client/types/vellum_node_execution_event.py,sha256=-MXat2wAZx4sx3JRp7gwJIOInPNwPMDpZmXtP8NC3O8,736
|
812
|
-
vellum/client/types/vellum_sdk_error.py,sha256=
|
823
|
+
vellum/client/types/vellum_sdk_error.py,sha256=oURNuw5zH4HqV6Ygw0MgVWH2DcuxekWvS_ZXA8tU31I,704
|
813
824
|
vellum/client/types/vellum_sdk_error_code_enum.py,sha256=a2K6XJvl72tNn82zyx5QpzYGgLfYWVBKY-o8jeDqKoM,504
|
814
825
|
vellum/client/types/vellum_secret.py,sha256=04WlBWphqiJSUKM2NeJE32IDt-ZpVO_LOXkpXvBh3f0,519
|
815
826
|
vellum/client/types/vellum_span.py,sha256=dmZOBXlDeXx4eLvBJBiOp07xuyjhisgXgnvYFSmctYE,259
|
@@ -840,7 +851,7 @@ vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=Zm
|
|
840
851
|
vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=VbVrwsDHapwPSsGEt8OM9Gjs31esIqkp8ta5zrZvPTw,885
|
841
852
|
vellum/client/types/workflow_error.py,sha256=iDMQ3Wx7E8lf6BYtBTGpeIxG46iF9mjzTpjxyJVTXgM,283
|
842
853
|
vellum/client/types/workflow_event.py,sha256=M_ra0CjUffCPqPRFJM_oR1IY4egHDGa0tY1HAoA8j5k,1532
|
843
|
-
vellum/client/types/workflow_event_error.py,sha256=
|
854
|
+
vellum/client/types/workflow_event_error.py,sha256=qNqSGvPOLODPTiaWmsUKyTx9W91JDIm9r9s05zsTsfg,779
|
844
855
|
vellum/client/types/workflow_event_execution_read.py,sha256=DRB19CN0E3r3t1mtfNLhaxiVtPKh5nJLYkCwVtomM7w,2456
|
845
856
|
vellum/client/types/workflow_execution_actual.py,sha256=QJn7xXOtSJT30se2KdOyAYVJKjU53uhdvpjcMDIz1eM,962
|
846
857
|
vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=E3Vt4l6PpE24_teWe3Kfu_4z1sbosaz_Uk1iUI9cZ-s,1957
|
@@ -995,6 +1006,9 @@ vellum/resources/folder_entities/client.py,sha256=kmDQAr_mTAEnBcQD_phRtLBaeJQpjJ
|
|
995
1006
|
vellum/resources/folder_entities/raw_client.py,sha256=H5WF13_ZzhvHUUhnUj1EvVx8IOwcAe6nkXpiqy4Jyxs,168
|
996
1007
|
vellum/resources/folder_entities/types/__init__.py,sha256=tRr24soech0seY3EL7iEAxEnqIOpWmXcJ-l95bijcAg,163
|
997
1008
|
vellum/resources/folder_entities/types/folder_entities_list_request_entity_status.py,sha256=Bv0cgP2-uRPXoBWeRdVzq9fs5yauEIKWF5MU8F-7BFM,206
|
1009
|
+
vellum/resources/integrations/__init__.py,sha256=ikfI2Ca3LPymgoWtY4exWAFYBbj2b33GzSWRHBvAfZA,154
|
1010
|
+
vellum/resources/integrations/client.py,sha256=5a2m6xe62IpUA5m1GCE3e0tgSowjTEQdX8oqoO7FuCI,161
|
1011
|
+
vellum/resources/integrations/raw_client.py,sha256=BxXBcu_90M484vA-UnkF1Glg3D96udvhYt8bZ6F_zpk,165
|
998
1012
|
vellum/resources/metric_definitions/__init__.py,sha256=T4lyfF6WVYl3dkj3v728lLzTNuP0JShdbckbQbQmUOw,160
|
999
1013
|
vellum/resources/metric_definitions/client.py,sha256=W25D_q4KLdd2tfSGd1oQt84lNqWVmuF67p4WS5BOkk0,167
|
1000
1014
|
vellum/resources/metric_definitions/raw_client.py,sha256=4Hi_eqnXoUZMopD40PScurP8iMi-FyJuXOlPzX3f-EI,171
|
@@ -1102,9 +1116,15 @@ vellum/types/code_executor_secret_input.py,sha256=k4F3TvZ0bm_vawTFOlFWjSwVML7t1U
|
|
1102
1116
|
vellum/types/code_resource_definition.py,sha256=TFRKiSa9II7QX7w3LBRK7Spuqm5jU5S3-N7kDASi0kw,162
|
1103
1117
|
vellum/types/compile_prompt_deployment_expand_meta_request.py,sha256=gXZJpYawKJ2z5hAAxaSWGueyRPnUOQ4HsdC8RC_LbJc,183
|
1104
1118
|
vellum/types/compile_prompt_meta.py,sha256=3WBjvEVnAqbIf-TajGtEWm0D-L_ZHm7MHo5_dD4N8jc,157
|
1119
|
+
vellum/types/components_schemas_composio_execute_tool_request.py,sha256=hatO7v9DnFYWDPUDVg5q-n9dtDpZJ0xdc6VnOKyFuBI,186
|
1120
|
+
vellum/types/components_schemas_composio_execute_tool_response.py,sha256=v11RbI6nqeIuPU_zdtGX4BLDhNdLyAYq-g0AB_Pw8pk,187
|
1121
|
+
vellum/types/components_schemas_composio_tool_definition.py,sha256=s1JSwp98awFQG6rqbb9vqUeSp61Vx1Gz-K-zLhjkeqo,181
|
1105
1122
|
vellum/types/components_schemas_pdf_search_result_meta_source.py,sha256=JuW2DXM7vd33IEpbrFF3NBVucydn_Lb96PqRbO5khsk,186
|
1106
1123
|
vellum/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=SQoJprykGG4h6xFphGMwyMKvtuoHAsv7o_6pBj9yPgI,194
|
1107
1124
|
vellum/types/components_schemas_prompt_version_build_config_sandbox.py,sha256=7uNb2ZzYojSaUy7i8kBFAaqhvgriAjEIkoZhGx7k87k,192
|
1125
|
+
vellum/types/composio_execute_tool_request.py,sha256=FgUVDTUCnHcXwA7O63I8D38WA-oKTj2CGLH2NvMDI7E,167
|
1126
|
+
vellum/types/composio_execute_tool_response.py,sha256=P0e6aCKsYN12PKhFGmKlyDlR__kz0tTJLR6EUCdz7cg,168
|
1127
|
+
vellum/types/composio_tool_definition.py,sha256=a9rPn4OoQdCosJb1Dvb5trALsXprE43G4l30QPxyMGw,162
|
1108
1128
|
vellum/types/condition_combinator.py,sha256=1wNfjIPngHhdUbhMpjNVZqUI8LEu0XIExUX4Rtln1Tg,158
|
1109
1129
|
vellum/types/conditional_node_result.py,sha256=zcfDgqzQWXVcqEQi_ozC_7l2to8Y3uNZ5mFN_uIVDW8,161
|
1110
1130
|
vellum/types/conditional_node_result_data.py,sha256=z7Mtn_iKkan2jrGc2Q7fx-anx3ijHSSqnZwAb1w4ouk,166
|
@@ -1945,7 +1965,7 @@ vellum/workflows/resolvers/resolver.py,sha256=yK-oY0HDsFJcjlNKAm3vpsPKRIFerIh59F
|
|
1945
1965
|
vellum/workflows/resolvers/tests/test_resolver.py,sha256=jXkJBb9SwtoH__bBN-ECohpyD0aTIB9ErEvtFhuTMQM,9750
|
1946
1966
|
vellum/workflows/resolvers/types.py,sha256=Hndhlk69g6EKLh_LYg5ILepW5U_h_BYNllfzhS9k8p4,237
|
1947
1967
|
vellum/workflows/runner/__init__.py,sha256=i1iG5sAhtpdsrlvwgH6B-m49JsINkiWyPWs8vyT-bqM,72
|
1948
|
-
vellum/workflows/runner/runner.py,sha256=
|
1968
|
+
vellum/workflows/runner/runner.py,sha256=uG2iu_rMwEApUFbhv4BPfD5-RwqASQmL_AAedOZr6eQ,41502
|
1949
1969
|
vellum/workflows/sandbox.py,sha256=mezSZmilR_fwR8164n8CEfzlMeQ55IqfapHp4ftImvQ,3212
|
1950
1970
|
vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
|
1951
1971
|
vellum/workflows/state/base.py,sha256=m9fCqbZn21GshCVCjJTD1dPZEQjFrsMXqlg7tM9fIwM,24283
|
@@ -1970,12 +1990,12 @@ vellum/workflows/types/tests/test_definition.py,sha256=rvDYjdJ1rvAv0qHBN7i7s-_WA
|
|
1970
1990
|
vellum/workflows/types/tests/test_utils.py,sha256=UnZog59tR577mVwqZRqqWn2fScoOU1H6up0EzS8zYhw,2536
|
1971
1991
|
vellum/workflows/types/utils.py,sha256=mTctHITBybpt4855x32oCKALBEcMNLn-9cCmfEKgJHQ,6498
|
1972
1992
|
vellum/workflows/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1973
|
-
vellum/workflows/utils/functions.py,sha256=
|
1993
|
+
vellum/workflows/utils/functions.py,sha256=7l23bjd4KmFlf2yo0igut-p3cyQbteY9l_e4sN-u2xY,12857
|
1974
1994
|
vellum/workflows/utils/hmac.py,sha256=JJCczc6pyV6DuE1Oa0QVfYPUN_of3zEYmGFib3OZnrE,1135
|
1975
1995
|
vellum/workflows/utils/names.py,sha256=QtHquoaGqRseu5gg2OcVGI2d_CMcEOvjb9KspwH4C-A,552
|
1976
1996
|
vellum/workflows/utils/pydantic_schema.py,sha256=eR_bBtY-T0pttJP-ARwagSdCOnwPUtiT3cegm2lzDTQ,1310
|
1977
1997
|
vellum/workflows/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1978
|
-
vellum/workflows/utils/tests/test_functions.py,sha256=
|
1998
|
+
vellum/workflows/utils/tests/test_functions.py,sha256=J_WEyVX1yE3lUhoX8etgkbPuwQOWHf-tpIQbKYcLKho,25360
|
1979
1999
|
vellum/workflows/utils/tests/test_names.py,sha256=DnRRnuORxQXx9ESegCzkxiWcHy2_bBi7lXgbFi3FZK8,757
|
1980
2000
|
vellum/workflows/utils/tests/test_uuids.py,sha256=i77ABQ0M3S-aFLzDXHJq_yr5FPkJEWCMBn1HJ3DObrE,437
|
1981
2001
|
vellum/workflows/utils/tests/test_vellum_variables.py,sha256=X7b-bbN3bFRx0WG31bowcaOgsXxEPYnh2sgpsqgKIsQ,2096
|
@@ -1984,13 +2004,13 @@ vellum/workflows/utils/vellum_variables.py,sha256=Tgv09yYROgq8QZbrKKIOEdg0IQ8Vfg
|
|
1984
2004
|
vellum/workflows/utils/zip.py,sha256=HVg_YZLmBOTXKaDV3Xhaf3V6sYnfqqZXQ8CpuafkbPY,1181
|
1985
2005
|
vellum/workflows/vellum_client.py,sha256=3iDR7VV_NgLSm1iZQCKDvrmfEaX1bOJiU15QrxyHpv0,1237
|
1986
2006
|
vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
|
1987
|
-
vellum/workflows/workflows/base.py,sha256=
|
2007
|
+
vellum/workflows/workflows/base.py,sha256=lj3Uk-nR7wagxvUsUOUt765X_uE6D9K_xPctmkeeRE8,29162
|
1988
2008
|
vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
|
1989
2009
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1990
|
-
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=
|
2010
|
+
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=MhUaK-JobNUxr-X_Xxql8cL3hN5lK6_qxCinaD9tusk,22365
|
1991
2011
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
1992
|
-
vellum_ai-1.
|
1993
|
-
vellum_ai-1.
|
1994
|
-
vellum_ai-1.
|
1995
|
-
vellum_ai-1.
|
1996
|
-
vellum_ai-1.
|
2012
|
+
vellum_ai-1.5.0.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
2013
|
+
vellum_ai-1.5.0.dist-info/METADATA,sha256=luIwi3Ciwo9BBiNE95CTBU4em3pHdYWJrzr7Fgd-bec,5547
|
2014
|
+
vellum_ai-1.5.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
2015
|
+
vellum_ai-1.5.0.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
|
2016
|
+
vellum_ai-1.5.0.dist-info/RECORD,,
|
@@ -0,0 +1,483 @@
|
|
1
|
+
{
|
2
|
+
"nodes": [
|
3
|
+
{
|
4
|
+
"id": "5d3c60ce-7acf-4d8b-a68d-65cc0b561ac5",
|
5
|
+
"display_data": {
|
6
|
+
"position": {
|
7
|
+
"x": 0.0,
|
8
|
+
"y": 0.0
|
9
|
+
},
|
10
|
+
"comment": {
|
11
|
+
"value": "\n Used to conditionally determine which port to invoke next. This node exists to be backwards compatible with\n Vellum's Conditional Node, and for most cases, you should extend `BaseNode.Ports` directly.\n ",
|
12
|
+
"expanded": true
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"base": {
|
16
|
+
"name": "BaseNode",
|
17
|
+
"module": [
|
18
|
+
"vellum",
|
19
|
+
"workflows",
|
20
|
+
"nodes",
|
21
|
+
"bases",
|
22
|
+
"base"
|
23
|
+
]
|
24
|
+
},
|
25
|
+
"definition": {
|
26
|
+
"name": "ConditionalNode",
|
27
|
+
"module": [
|
28
|
+
"vellum",
|
29
|
+
"workflows",
|
30
|
+
"nodes",
|
31
|
+
"displayable",
|
32
|
+
"conditional_node",
|
33
|
+
"node"
|
34
|
+
]
|
35
|
+
},
|
36
|
+
"trigger": {
|
37
|
+
"id": "2b5617b4-5cc0-4f9a-9369-24982e2cd8c0",
|
38
|
+
"merge_behavior": "AWAIT_ANY"
|
39
|
+
},
|
40
|
+
"ports": []
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"id": "92e401f1-110f-4edc-8bb0-cad879e1ea08",
|
44
|
+
"display_data": {
|
45
|
+
"position": {
|
46
|
+
"x": 0.0,
|
47
|
+
"y": 0.0
|
48
|
+
},
|
49
|
+
"comment": {
|
50
|
+
"value": "\n Used to raise an error to reject the surrounding Workflow.\n\n error: Union[str, VellumError] - The error to raise.\n ",
|
51
|
+
"expanded": true
|
52
|
+
}
|
53
|
+
},
|
54
|
+
"base": {
|
55
|
+
"name": "BaseNode",
|
56
|
+
"module": [
|
57
|
+
"vellum",
|
58
|
+
"workflows",
|
59
|
+
"nodes",
|
60
|
+
"bases",
|
61
|
+
"base"
|
62
|
+
]
|
63
|
+
},
|
64
|
+
"definition": {
|
65
|
+
"name": "ErrorNode",
|
66
|
+
"module": [
|
67
|
+
"vellum",
|
68
|
+
"workflows",
|
69
|
+
"nodes",
|
70
|
+
"core",
|
71
|
+
"error_node",
|
72
|
+
"node"
|
73
|
+
]
|
74
|
+
},
|
75
|
+
"trigger": {
|
76
|
+
"id": "c1b30829-76af-4d99-bf83-b030c551a7cf",
|
77
|
+
"merge_behavior": "AWAIT_ATTRIBUTES"
|
78
|
+
},
|
79
|
+
"ports": []
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"id": "16b8d82d-458d-48d9-b57e-a447b19f311a",
|
83
|
+
"display_data": {
|
84
|
+
"position": {
|
85
|
+
"x": 0.0,
|
86
|
+
"y": 0.0
|
87
|
+
},
|
88
|
+
"comment": {
|
89
|
+
"value": "\n A no-op Node purely used to display a note in the Vellum UI.\n ",
|
90
|
+
"expanded": true
|
91
|
+
}
|
92
|
+
},
|
93
|
+
"base": {
|
94
|
+
"name": "BaseNode",
|
95
|
+
"module": [
|
96
|
+
"vellum",
|
97
|
+
"workflows",
|
98
|
+
"nodes",
|
99
|
+
"bases",
|
100
|
+
"base"
|
101
|
+
]
|
102
|
+
},
|
103
|
+
"definition": {
|
104
|
+
"name": "NoteNode",
|
105
|
+
"module": [
|
106
|
+
"vellum",
|
107
|
+
"workflows",
|
108
|
+
"nodes",
|
109
|
+
"displayable",
|
110
|
+
"note_node",
|
111
|
+
"node"
|
112
|
+
]
|
113
|
+
},
|
114
|
+
"trigger": {
|
115
|
+
"id": "2b6907b0-1adc-41e7-9d5b-3c6ccd9b973a",
|
116
|
+
"merge_behavior": "AWAIT_ANY"
|
117
|
+
},
|
118
|
+
"ports": [
|
119
|
+
{
|
120
|
+
"id": "22dac74c-7ad6-4a6f-97ae-0034124721ce",
|
121
|
+
"name": "default",
|
122
|
+
"type": "DEFAULT"
|
123
|
+
}
|
124
|
+
]
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"id": "035842e0-34ed-43af-97de-a706e40912ae",
|
128
|
+
"label": "Tool Calling Node",
|
129
|
+
"display_data": {
|
130
|
+
"position": {
|
131
|
+
"x": 0.0,
|
132
|
+
"y": 0.0
|
133
|
+
},
|
134
|
+
"comment": {
|
135
|
+
"value": "\n A Node that dynamically invokes the provided functions to the underlying Prompt\n\n Attributes:\n ml_model: str - The model to use for tool calling (e.g., \"gpt-4o-mini\")\n blocks: List[PromptBlock] - The prompt blocks to use (same format as InlinePromptNode)\n functions: List[Tool] - The functions that can be called\n prompt_inputs: Optional[EntityInputsInterface] - Mapping of input variable names to values\n parameters: PromptParameters - The parameters for the Prompt\n max_prompt_iterations: Optional[int] - Maximum number of prompt iterations before stopping\n ",
|
136
|
+
"expanded": true
|
137
|
+
}
|
138
|
+
},
|
139
|
+
"base": {
|
140
|
+
"name": "BaseNode",
|
141
|
+
"module": [
|
142
|
+
"vellum",
|
143
|
+
"workflows",
|
144
|
+
"nodes",
|
145
|
+
"bases",
|
146
|
+
"base"
|
147
|
+
]
|
148
|
+
},
|
149
|
+
"definition": {
|
150
|
+
"name": "ToolCallingNode",
|
151
|
+
"module": [
|
152
|
+
"vellum",
|
153
|
+
"workflows",
|
154
|
+
"nodes",
|
155
|
+
"displayable",
|
156
|
+
"tool_calling_node",
|
157
|
+
"node"
|
158
|
+
]
|
159
|
+
},
|
160
|
+
"trigger": {
|
161
|
+
"id": "f9b4a4ce-68ae-45f4-9e29-38b588abdf97",
|
162
|
+
"merge_behavior": "AWAIT_ATTRIBUTES"
|
163
|
+
},
|
164
|
+
"ports": [
|
165
|
+
{
|
166
|
+
"id": "72157fce-fc16-44d8-a00d-506738a20730",
|
167
|
+
"name": "default",
|
168
|
+
"type": "DEFAULT"
|
169
|
+
}
|
170
|
+
],
|
171
|
+
"attributes": [
|
172
|
+
{
|
173
|
+
"id": "df3761db-067a-4fe9-9fc3-ba270786fcf6",
|
174
|
+
"name": "ml_model",
|
175
|
+
"value": {
|
176
|
+
"type": "CONSTANT_VALUE",
|
177
|
+
"value": {
|
178
|
+
"type": "STRING",
|
179
|
+
"value": "gpt-4o-mini"
|
180
|
+
}
|
181
|
+
}
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"id": "66133945-f7fd-43bb-8b46-0761e2b58241",
|
185
|
+
"name": "blocks",
|
186
|
+
"value": {
|
187
|
+
"type": "CONSTANT_VALUE",
|
188
|
+
"value": {
|
189
|
+
"type": "JSON",
|
190
|
+
"value": []
|
191
|
+
}
|
192
|
+
}
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"id": "0079b429-3b1c-4f7c-9ccf-185ace4dcbb2",
|
196
|
+
"name": "functions",
|
197
|
+
"value": {
|
198
|
+
"type": "CONSTANT_VALUE",
|
199
|
+
"value": {
|
200
|
+
"type": "JSON",
|
201
|
+
"value": []
|
202
|
+
}
|
203
|
+
}
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"id": "ebda56e6-2ace-472c-a106-36cb69264e96",
|
207
|
+
"name": "prompt_inputs",
|
208
|
+
"value": {
|
209
|
+
"type": "CONSTANT_VALUE",
|
210
|
+
"value": {
|
211
|
+
"type": "JSON",
|
212
|
+
"value": null
|
213
|
+
}
|
214
|
+
}
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"id": "2534a586-5b37-41f3-a9a4-8162b8538df4",
|
218
|
+
"name": "parameters",
|
219
|
+
"value": {
|
220
|
+
"type": "CONSTANT_VALUE",
|
221
|
+
"value": {
|
222
|
+
"type": "JSON",
|
223
|
+
"value": {
|
224
|
+
"stop": [],
|
225
|
+
"temperature": 0.0,
|
226
|
+
"max_tokens": 4096.0,
|
227
|
+
"top_p": 1.0,
|
228
|
+
"top_k": 0.0,
|
229
|
+
"frequency_penalty": 0.0,
|
230
|
+
"presence_penalty": 0.0,
|
231
|
+
"logit_bias": null,
|
232
|
+
"custom_parameters": null
|
233
|
+
}
|
234
|
+
}
|
235
|
+
}
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"id": "118ef72a-0767-4659-8ddf-58a071f95988",
|
239
|
+
"name": "max_prompt_iterations",
|
240
|
+
"value": {
|
241
|
+
"type": "CONSTANT_VALUE",
|
242
|
+
"value": {
|
243
|
+
"type": "NUMBER",
|
244
|
+
"value": 5.0
|
245
|
+
}
|
246
|
+
}
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"id": "d7ef5296-1e48-4d05-b97a-77f16d46fd50",
|
250
|
+
"name": "settings",
|
251
|
+
"value": {
|
252
|
+
"type": "CONSTANT_VALUE",
|
253
|
+
"value": {
|
254
|
+
"type": "JSON",
|
255
|
+
"value": null
|
256
|
+
}
|
257
|
+
}
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"outputs": [
|
261
|
+
{
|
262
|
+
"id": "c18a8725-21e1-4736-a77c-76d0fc035176",
|
263
|
+
"name": "text",
|
264
|
+
"type": "STRING",
|
265
|
+
"value": null
|
266
|
+
},
|
267
|
+
{
|
268
|
+
"id": "5a9ad073-c670-43d2-9198-a08e9fdda7ad",
|
269
|
+
"name": "chat_history",
|
270
|
+
"type": "CHAT_HISTORY",
|
271
|
+
"value": null
|
272
|
+
}
|
273
|
+
]
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"id": "187ed9ed-ca2b-49e4-943d-ee8da5fad973",
|
277
|
+
"label": "Web Search Node",
|
278
|
+
"display_data": {
|
279
|
+
"position": {
|
280
|
+
"x": 0.0,
|
281
|
+
"y": 0.0
|
282
|
+
},
|
283
|
+
"comment": {
|
284
|
+
"value": "\n Used to perform web search using SerpAPI.\n\n query: str - The search query to execute\n api_key: str - SerpAPI authentication key\n num_results: int - Number of search results to return (default: 10)\n location: Optional[str] - Geographic location filter for search\n ",
|
285
|
+
"expanded": true
|
286
|
+
}
|
287
|
+
},
|
288
|
+
"base": {
|
289
|
+
"name": "BaseNode",
|
290
|
+
"module": [
|
291
|
+
"vellum",
|
292
|
+
"workflows",
|
293
|
+
"nodes",
|
294
|
+
"bases",
|
295
|
+
"base"
|
296
|
+
]
|
297
|
+
},
|
298
|
+
"definition": {
|
299
|
+
"name": "WebSearchNode",
|
300
|
+
"module": [
|
301
|
+
"vellum",
|
302
|
+
"workflows",
|
303
|
+
"nodes",
|
304
|
+
"displayable",
|
305
|
+
"web_search_node",
|
306
|
+
"node"
|
307
|
+
]
|
308
|
+
},
|
309
|
+
"trigger": {
|
310
|
+
"id": "036c7a0c-fff3-44f7-b49b-429d8f44f212",
|
311
|
+
"merge_behavior": "AWAIT_ATTRIBUTES"
|
312
|
+
},
|
313
|
+
"ports": [
|
314
|
+
{
|
315
|
+
"id": "ef824748-d00d-41e7-b7b4-d0edc536c3af",
|
316
|
+
"name": "default",
|
317
|
+
"type": "DEFAULT"
|
318
|
+
}
|
319
|
+
],
|
320
|
+
"attributes": [
|
321
|
+
{
|
322
|
+
"id": "b5ba3c60-e02c-46c8-b470-d86c4f8f42af",
|
323
|
+
"name": "query",
|
324
|
+
"value": {
|
325
|
+
"type": "CONSTANT_VALUE",
|
326
|
+
"value": {
|
327
|
+
"type": "STRING",
|
328
|
+
"value": ""
|
329
|
+
}
|
330
|
+
}
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"id": "222408bc-7dae-4bb8-9aba-a1ac36bdc759",
|
334
|
+
"name": "api_key",
|
335
|
+
"value": {
|
336
|
+
"type": "CONSTANT_VALUE",
|
337
|
+
"value": {
|
338
|
+
"type": "JSON",
|
339
|
+
"value": null
|
340
|
+
}
|
341
|
+
}
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"id": "795a0bbc-bb98-4bc8-a9d9-88b0cb796d23",
|
345
|
+
"name": "num_results",
|
346
|
+
"value": {
|
347
|
+
"type": "CONSTANT_VALUE",
|
348
|
+
"value": {
|
349
|
+
"type": "NUMBER",
|
350
|
+
"value": 10.0
|
351
|
+
}
|
352
|
+
}
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"id": "e1648557-ca03-4a81-ab5b-86495284b325",
|
356
|
+
"name": "location",
|
357
|
+
"value": {
|
358
|
+
"type": "CONSTANT_VALUE",
|
359
|
+
"value": {
|
360
|
+
"type": "JSON",
|
361
|
+
"value": null
|
362
|
+
}
|
363
|
+
}
|
364
|
+
}
|
365
|
+
],
|
366
|
+
"outputs": [
|
367
|
+
{
|
368
|
+
"id": "704a4ba3-1afe-482d-876a-91dcdbe90fb7",
|
369
|
+
"name": "text",
|
370
|
+
"type": "STRING",
|
371
|
+
"value": null
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"id": "574b2ebe-f250-4024-b517-3cd47704c70e",
|
375
|
+
"name": "urls",
|
376
|
+
"type": "JSON",
|
377
|
+
"value": null
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"id": "9798a067-3589-4a2a-a811-6019873cbbfe",
|
381
|
+
"name": "results",
|
382
|
+
"type": "JSON",
|
383
|
+
"value": null
|
384
|
+
}
|
385
|
+
]
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"id": "bf31cc42-b5e4-4191-a453-7191743ac200",
|
389
|
+
"display_data": {
|
390
|
+
"position": {
|
391
|
+
"x": 0.0,
|
392
|
+
"y": 0.0
|
393
|
+
},
|
394
|
+
"comment": {
|
395
|
+
"value": "\n Used to directly reference the output of another node.\n This provides backward compatibility with Vellum's Final Output Node.\n ",
|
396
|
+
"expanded": true
|
397
|
+
}
|
398
|
+
},
|
399
|
+
"base": {
|
400
|
+
"name": "BaseNode",
|
401
|
+
"module": [
|
402
|
+
"vellum",
|
403
|
+
"workflows",
|
404
|
+
"nodes",
|
405
|
+
"bases",
|
406
|
+
"base"
|
407
|
+
]
|
408
|
+
},
|
409
|
+
"definition": {
|
410
|
+
"name": "FinalOutputNode",
|
411
|
+
"module": [
|
412
|
+
"vellum",
|
413
|
+
"workflows",
|
414
|
+
"nodes",
|
415
|
+
"displayable",
|
416
|
+
"final_output_node",
|
417
|
+
"node"
|
418
|
+
]
|
419
|
+
},
|
420
|
+
"trigger": {
|
421
|
+
"id": "0b2da045-2a4c-4939-8b5c-661652c759d4",
|
422
|
+
"merge_behavior": "AWAIT_ANY"
|
423
|
+
},
|
424
|
+
"ports": [],
|
425
|
+
"outputs": [
|
426
|
+
{
|
427
|
+
"id": "7f41909e-9ce1-4fde-ba77-a13dda301ece",
|
428
|
+
"name": "value",
|
429
|
+
"type": "STRING",
|
430
|
+
"value": {
|
431
|
+
"__undefined__": true
|
432
|
+
}
|
433
|
+
}
|
434
|
+
]
|
435
|
+
}
|
436
|
+
],
|
437
|
+
"errors": [
|
438
|
+
{
|
439
|
+
"node": "APINode",
|
440
|
+
"error": "APINode.Outputs.text"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"node": "CodeExecutionNode",
|
444
|
+
"error": "vellum.workflows.nodes.displayable.code_execution_node.node.CodeExecutionNode.Ports.default"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"node": "InlinePromptNode",
|
448
|
+
"error": "vellum.workflows.nodes.displayable.inline_prompt_node.node.InlinePromptNode.Ports.default"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"node": "InlineSubworkflowNode",
|
452
|
+
"error": "'NoneType' object has no attribute 'get_inputs_class'"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"node": "GuardrailNode",
|
456
|
+
"error": "vellum.workflows.nodes.displayable.guardrail_node.node.GuardrailNode.Ports.default"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"node": "MapNode",
|
460
|
+
"error": "Expected NodeReference items to have an instance"
|
461
|
+
},
|
462
|
+
{
|
463
|
+
"node": "MergeNode",
|
464
|
+
"error": "vellum.workflows.nodes.displayable.merge_node.node.MergeNode.Ports.default"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"node": "SubworkflowDeploymentNode",
|
468
|
+
"error": "headers: {'server': 'gunicorn', 'date': 'Mon, 22 Sep 2025 14:24:17 GMT', 'content-type': 'application/json', 'allow': 'GET, PUT, PATCH, DELETE, HEAD, OPTIONS', 'x-frame-options': 'DENY', 'content-length': '28', 'vary': 'Accept-Language, Origin', 'content-language': 'en', 'strict-transport-security': 'max-age=60; includeSubDomains; preload', 'x-content-type-options': 'nosniff', 'referrer-policy': 'same-origin', 'cross-origin-opener-policy': 'same-origin', 'via': '1.1 google', 'alt-svc': 'h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000'}, status_code: 403, body: {'detail': 'Invalid API key'}"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"node": "PromptDeploymentNode",
|
472
|
+
"error": "headers: {'server': 'gunicorn', 'date': 'Mon, 22 Sep 2025 14:24:17 GMT', 'content-type': 'application/json', 'allow': 'GET, PUT, PATCH, DELETE, HEAD, OPTIONS', 'x-frame-options': 'DENY', 'content-length': '28', 'vary': 'Accept-Language, Origin', 'content-language': 'en', 'strict-transport-security': 'max-age=60; includeSubDomains; preload', 'x-content-type-options': 'nosniff', 'referrer-policy': 'same-origin', 'cross-origin-opener-policy': 'same-origin', 'via': '1.1 google', 'alt-svc': 'h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000'}, status_code: 403, body: {'detail': 'Invalid API key'}"
|
473
|
+
},
|
474
|
+
{
|
475
|
+
"node": "SearchNode",
|
476
|
+
"error": "Expected NodeReference query to have an instance"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"node": "TemplatingNode",
|
480
|
+
"error": "TemplatingNode.Outputs.result"
|
481
|
+
}
|
482
|
+
]
|
483
|
+
}
|