vellum-ai 1.5.4__py3-none-any.whl → 1.5.6__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 +36 -0
- vellum/client/__init__.py +6 -0
- vellum/client/core/client_wrapper.py +2 -2
- vellum/client/reference.md +497 -11
- vellum/client/resources/__init__.py +4 -0
- vellum/client/resources/integration_auth_configs/__init__.py +4 -0
- vellum/client/resources/integration_auth_configs/client.py +186 -0
- vellum/client/resources/integration_auth_configs/raw_client.py +171 -0
- vellum/client/resources/integration_providers/__init__.py +4 -0
- vellum/client/resources/integration_providers/client.py +279 -0
- vellum/client/resources/integration_providers/raw_client.py +255 -0
- vellum/client/resources/integrations/client.py +226 -28
- vellum/client/resources/integrations/raw_client.py +257 -20
- vellum/client/resources/test_suite_runs/client.py +6 -6
- vellum/client/resources/test_suite_runs/raw_client.py +6 -6
- vellum/client/types/__init__.py +32 -0
- vellum/client/types/components_schemas_composio_integration_exec_config.py +5 -0
- vellum/client/types/components_schemas_slim_composio_tool_definition.py +5 -0
- vellum/client/types/composio_integration_exec_config.py +20 -0
- vellum/client/types/composio_tool_definition.py +4 -1
- vellum/client/types/integration_auth_config_integration.py +23 -0
- vellum/client/types/integration_auth_config_integration_credential.py +19 -0
- vellum/client/types/integration_credential_access_type.py +5 -0
- vellum/client/types/integration_name.py +20 -0
- vellum/client/types/integration_provider.py +5 -0
- vellum/client/types/integration_read.py +30 -0
- vellum/client/types/paginated_slim_integration_auth_config_read_list.py +23 -0
- vellum/client/types/paginated_slim_integration_read_list.py +23 -0
- vellum/client/types/paginated_slim_tool_definition_list.py +23 -0
- vellum/client/types/slim_composio_tool_definition.py +23 -0
- vellum/client/types/slim_integration_auth_config_read.py +29 -0
- vellum/client/types/slim_integration_read.py +25 -0
- vellum/client/types/tool_definition_integration.py +23 -0
- vellum/resources/integration_auth_configs/__init__.py +3 -0
- vellum/resources/integration_auth_configs/client.py +3 -0
- vellum/resources/integration_auth_configs/raw_client.py +3 -0
- vellum/resources/integration_providers/__init__.py +3 -0
- vellum/resources/integration_providers/client.py +3 -0
- vellum/resources/integration_providers/raw_client.py +3 -0
- vellum/types/components_schemas_composio_integration_exec_config.py +3 -0
- vellum/types/components_schemas_slim_composio_tool_definition.py +3 -0
- vellum/types/composio_integration_exec_config.py +3 -0
- vellum/types/integration_auth_config_integration.py +3 -0
- vellum/types/integration_auth_config_integration_credential.py +3 -0
- vellum/types/integration_credential_access_type.py +3 -0
- vellum/types/integration_name.py +3 -0
- vellum/types/integration_provider.py +3 -0
- vellum/types/integration_read.py +3 -0
- vellum/types/paginated_slim_integration_auth_config_read_list.py +3 -0
- vellum/types/paginated_slim_integration_read_list.py +3 -0
- vellum/types/paginated_slim_tool_definition_list.py +3 -0
- vellum/types/slim_composio_tool_definition.py +3 -0
- vellum/types/slim_integration_auth_config_read.py +3 -0
- vellum/types/slim_integration_read.py +3 -0
- vellum/types/tool_definition_integration.py +3 -0
- vellum/workflows/integrations/tests/test_vellum_integration_service.py +26 -19
- vellum/workflows/integrations/vellum_integration_service.py +5 -5
- vellum/workflows/nodes/displayable/tool_calling_node/node.py +2 -4
- vellum/workflows/types/definition.py +1 -1
- vellum/workflows/types/tests/test_definition.py +40 -2
- {vellum_ai-1.5.4.dist-info → vellum_ai-1.5.6.dist-info}/METADATA +1 -1
- {vellum_ai-1.5.4.dist-info → vellum_ai-1.5.6.dist-info}/RECORD +66 -21
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_vellum_integration_serialization.py +68 -0
- {vellum_ai-1.5.4.dist-info → vellum_ai-1.5.6.dist-info}/LICENSE +0 -0
- {vellum_ai-1.5.4.dist-info → vellum_ai-1.5.6.dist-info}/WHEEL +0 -0
- {vellum_ai-1.5.4.dist-info → vellum_ai-1.5.6.dist-info}/entry_points.txt +0 -0
@@ -105,6 +105,7 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling
|
|
105
105
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py,sha256=QhQbijeCnFeX1i3SMjHJg2WVAEt5JEO3dhFRv-mofdA,2458
|
106
106
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_parent_input.py,sha256=__LX4cuzbyZp_1wc-SI8X_J0tnhOkCEmRVUWLKI5aQM,4578
|
107
107
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py,sha256=5yaoN5aM6VZZtsleQcSWpbNyWLE1nTnMF6KbLmCrlc8,10437
|
108
|
+
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_vellum_integration_serialization.py,sha256=A04hk1sQek6fs2Xd9a1ICc_L6uqIr8lx6f_djxbLKjs,2846
|
108
109
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=XIZZr5POo2NLn2uEWm9EC3rejeBMoO4X-JtzTH6mvp4,4074
|
109
110
|
vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py,sha256=pLCyMScV88DTBXRH7jXaXOEA1GBq8NIipCUFwIAWnwI,2771
|
110
111
|
vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=exT7U-axwtYgFylagScflSQLJEND51qIAx2UATju6JM,6023
|
@@ -153,12 +154,12 @@ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50P
|
|
153
154
|
vellum_ee/workflows/tests/test_serialize_module.py,sha256=d4ZpMd3oIxiq-sBXeSQESS6ix6-1P6rdCRFqBEReJIU,2882
|
154
155
|
vellum_ee/workflows/tests/test_server.py,sha256=dXFBraU99Y6cKp2aBhLFXQTScSRcE9WaWjo1z9piqdU,23344
|
155
156
|
vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
|
156
|
-
vellum/__init__.py,sha256=
|
157
|
+
vellum/__init__.py,sha256=i7aah42VTp3735JX69uHUipLZBD8PwX_CXUY_9t-zuY,49356
|
157
158
|
vellum/client/README.md,sha256=flqu57ubZNTfpq60CdLtJC9gp4WEkyjb_n_eZ4OYf9w,6497
|
158
|
-
vellum/client/__init__.py,sha256
|
159
|
+
vellum/client/__init__.py,sha256=rMnKRqL5-356SBc-rfm56MkO87PuAi2mtcfBszcJU1M,74316
|
159
160
|
vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
160
161
|
vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
161
|
-
vellum/client/core/client_wrapper.py,sha256=
|
162
|
+
vellum/client/core/client_wrapper.py,sha256=CWWO5TahiAMy7Eh1vKC4QF2p7u4nS5n0TP1bSmi-_2E,2840
|
162
163
|
vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
163
164
|
vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
164
165
|
vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
@@ -179,8 +180,8 @@ vellum/client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy
|
|
179
180
|
vellum/client/errors/too_many_requests_error.py,sha256=SJJemdgUlQHV_VpxK8UfFNexgZebNT5_MTOeQs6oVgc,397
|
180
181
|
vellum/client/errors/unauthorized_error.py,sha256=waPl5Swiqsk3FQK-Lljzx4KDh4RPZ0wL6BLHjM8onQ8,394
|
181
182
|
vellum/client/raw_client.py,sha256=cmMR0t87iUYvkIE9L4g0dcCmw3uUQNze9rD9CBv5rzs,113481
|
182
|
-
vellum/client/reference.md,sha256=
|
183
|
-
vellum/client/resources/__init__.py,sha256=
|
183
|
+
vellum/client/reference.md,sha256=l8NSUCZwY-su4jNuGrQmx3lSA_OgMUF7ILu0otL6BJA,105250
|
184
|
+
vellum/client/resources/__init__.py,sha256=JlNoSZYFGxLTuzPvmMV1b8IWDYjlDL4BaBbq9TgfGUE,1765
|
184
185
|
vellum/client/resources/ad_hoc/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
185
186
|
vellum/client/resources/ad_hoc/client.py,sha256=v5I_YzJaaPezsE4KVuMSUXJISstKuJ_9-VUeXakIJhw,14353
|
186
187
|
vellum/client/resources/ad_hoc/raw_client.py,sha256=JSbwEoowm41Wm9u4hQNoAIHG_-IX6IYfsBRn2tGZ-gM,24864
|
@@ -209,9 +210,15 @@ vellum/client/resources/folder_entities/client.py,sha256=F60BvZtI4Bnk2h7Z405Jshs
|
|
209
210
|
vellum/client/resources/folder_entities/raw_client.py,sha256=uYTdVE-lpzoPzxnXIKCb_A4N8L1R7R-K0rq_0txtV04,10697
|
210
211
|
vellum/client/resources/folder_entities/types/__init__.py,sha256=i-kAMISROYcwU6XqRceoYrbgOcHZHLTV-xDqw9kBMP8,232
|
211
212
|
vellum/client/resources/folder_entities/types/folder_entities_list_request_entity_status.py,sha256=nK9b9fRSeCfjn2V2Hifl1IbhFeVsNkoeXJ8rCAPADFg,183
|
213
|
+
vellum/client/resources/integration_auth_configs/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
214
|
+
vellum/client/resources/integration_auth_configs/client.py,sha256=ArZ60GpBHppcbSMN8NBh_ljzLiLEjn4oK5GFQyyHWKI,6121
|
215
|
+
vellum/client/resources/integration_auth_configs/raw_client.py,sha256=yFp61mhW8yvvPl7ykmHKQglgWdlaKDSO1uPDwcjKO7M,6756
|
216
|
+
vellum/client/resources/integration_providers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
217
|
+
vellum/client/resources/integration_providers/client.py,sha256=bKAsKGg8oHA7imqaRZf9iGZ4P8cH6iaiwQk2bqrm3nQ,8328
|
218
|
+
vellum/client/resources/integration_providers/raw_client.py,sha256=Pur69Tvy6DDjruIT7zClPT_wn6nBJEKS1_vQaceWRjA,9788
|
212
219
|
vellum/client/resources/integrations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
213
|
-
vellum/client/resources/integrations/client.py,sha256=
|
214
|
-
vellum/client/resources/integrations/raw_client.py,sha256=
|
220
|
+
vellum/client/resources/integrations/client.py,sha256=xvlLcauH-HwKkspe5ziCpxaUJPa2jPYNLbz5oQaWZ58,13125
|
221
|
+
vellum/client/resources/integrations/raw_client.py,sha256=HpRVvA8FDfKyDDTvqNS5MgjdOCrO3Uk6dI_U5FcieUk,19428
|
215
222
|
vellum/client/resources/metric_definitions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
216
223
|
vellum/client/resources/metric_definitions/client.py,sha256=_wp7Ki9DlPSjfmYyyrGEBhoq3IkrFDpxJVPKJEP1yUk,7467
|
217
224
|
vellum/client/resources/metric_definitions/raw_client.py,sha256=aGTcWa2UnI5DkxfFfg9-Uo1kzLN5a7qLaZURIk1MTtA,9083
|
@@ -228,8 +235,8 @@ vellum/client/resources/sandboxes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7
|
|
228
235
|
vellum/client/resources/sandboxes/client.py,sha256=KoS5OLBYqSS9xhfV1iG37F84QfqMiyLPZVtXdiZ7xRk,13661
|
229
236
|
vellum/client/resources/sandboxes/raw_client.py,sha256=sVpEe_0ZPzOQ_gfnbWt2w1Fl5B2Mc-GkgK8dwSq109s,16272
|
230
237
|
vellum/client/resources/test_suite_runs/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
231
|
-
vellum/client/resources/test_suite_runs/client.py,sha256=
|
232
|
-
vellum/client/resources/test_suite_runs/raw_client.py,sha256=
|
238
|
+
vellum/client/resources/test_suite_runs/client.py,sha256=u_fjf7yzusBCqTQ9hmdYpPydONly9S54mPNIiKNIfEE,10935
|
239
|
+
vellum/client/resources/test_suite_runs/raw_client.py,sha256=MZjJRlQAsH6BgzqPqBp5JRo1cN6UIlh9TVh8LRyjJYw,13950
|
233
240
|
vellum/client/resources/test_suites/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
234
241
|
vellum/client/resources/test_suites/client.py,sha256=xo197bXk84jj6gEieRmJuhqBbQ8IB-VMNLki7gdqhlo,20753
|
235
242
|
vellum/client/resources/test_suites/raw_client.py,sha256=XfDqmJa7fngPsHAirTSSNBMHy2O4mKOaNS16IL567L8,22335
|
@@ -258,7 +265,7 @@ vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKei
|
|
258
265
|
vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
|
259
266
|
vellum/client/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
260
267
|
vellum/client/tests/test_utils.py,sha256=zk8z45-2xrm9sZ2hq8PTqY8MXmXtPqMqYK0VBBX0GHg,1176
|
261
|
-
vellum/client/types/__init__.py,sha256=
|
268
|
+
vellum/client/types/__init__.py,sha256=KwWQ6Bw5bxx2PIECWgxnTdbht-saV-fcPFDVNDA9g-g,74697
|
262
269
|
vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
|
263
270
|
vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
|
264
271
|
vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
|
@@ -323,13 +330,16 @@ vellum/client/types/compile_prompt_deployment_expand_meta_request.py,sha256=X97b
|
|
323
330
|
vellum/client/types/compile_prompt_meta.py,sha256=o3fxYObLrmFF__0b8jTl8MGd_tUknNKzivkQxn4zWq0,812
|
324
331
|
vellum/client/types/components_schemas_composio_execute_tool_request.py,sha256=fv9Ot9bhtipqlbNFbLfHyH6SdW3M7F8zbqCoxOb2d8Q,209
|
325
332
|
vellum/client/types/components_schemas_composio_execute_tool_response.py,sha256=KTkBSWiXPl_5DxF5H_4rzrYyT-lK1vw4d5CJM-3n_ZA,213
|
333
|
+
vellum/client/types/components_schemas_composio_integration_exec_config.py,sha256=tzCyrsgwuRPOxaDoS94eqwg7bE9xBywAHt7JhQ0hPco,221
|
326
334
|
vellum/client/types/components_schemas_composio_tool_definition.py,sha256=HH5q1rKal98d3lDhzDIpfxEIAQjhcbVjEAbPLx1Hyow,192
|
327
335
|
vellum/client/types/components_schemas_pdf_search_result_meta_source.py,sha256=WEB3B__R6zLakrJMMn_1z9FIylBcxencQ6JHVPs7HSg,206
|
328
336
|
vellum/client/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=FbgAsvMARYuSub2QQwFEkkbVeYwKkNmVi98nk7CxC-Q,235
|
329
337
|
vellum/client/types/components_schemas_prompt_version_build_config_sandbox.py,sha256=OquKc9g8mgyxmNPKXcEq9E6PCgtKSbNi-RQqp2go9VI,230
|
338
|
+
vellum/client/types/components_schemas_slim_composio_tool_definition.py,sha256=G5HFp7MUwoORgoa8MK5BlgNxunSrX7_WEQBbY-Es3OE,209
|
330
339
|
vellum/client/types/composio_execute_tool_request.py,sha256=HmH2nKizSIWWUK6ENSqIytAJEAE1VTAX4JbGVXcaEhQ,730
|
331
340
|
vellum/client/types/composio_execute_tool_response.py,sha256=XPV1x_S5weq_8WVfM_UGdI48aHJZVLGuS34ZLCNPiW4,728
|
332
|
-
vellum/client/types/
|
341
|
+
vellum/client/types/composio_integration_exec_config.py,sha256=NwTMyx09b3J7-sp6arTJXI7tB4inw2jE5jVwLPAjrGI,586
|
342
|
+
vellum/client/types/composio_tool_definition.py,sha256=-C25uHVWPQWkEHFxnXXCWib7fTxlM7A4lNwqIEtkqNM,922
|
333
343
|
vellum/client/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
|
334
344
|
vellum/client/types/conditional_node_result.py,sha256=nN5fZPgjyWQU_McV3sL_NcgW1V1VWU-KBIFgGTyOZdo,748
|
335
345
|
vellum/client/types/conditional_node_result_data.py,sha256=Ui44n0Vd00O0RKzWb_mjOl8lVuV8XKOFNCYLple8L_8,568
|
@@ -472,6 +482,12 @@ vellum/client/types/initiated_prompt_execution_meta.py,sha256=5sbNQJdyjkHZvkt2Eu
|
|
472
482
|
vellum/client/types/initiated_workflow_node_result_event.py,sha256=bANCbRTVoklNXjs3-nwGA5G_TK1j0FaqdrVHonl5ZLA,1311
|
473
483
|
vellum/client/types/instructor_vectorizer_config.py,sha256=5weLeldZKmA9cWf3Xcoe_Zn9_M9jSlWvxVj9Ml3GgcM,695
|
474
484
|
vellum/client/types/instructor_vectorizer_config_request.py,sha256=B5Wy5FI8utwi4sIvwFTK0evd78pbM9ic9jO6pBM2dFw,702
|
485
|
+
vellum/client/types/integration_auth_config_integration.py,sha256=W3DrzVPwLrqm0wCYVF-sHyQPoKNxoliFgFJWEwW_Yqc,710
|
486
|
+
vellum/client/types/integration_auth_config_integration_credential.py,sha256=lUNuJ1GyFps3M85Mff1C-SAeEacCMkJdmayFfYrTFXA,547
|
487
|
+
vellum/client/types/integration_credential_access_type.py,sha256=sWkuDjW3aD7ApZ1xQ7Bu8g5kCIwqUqzm1TDliUQWeRI,178
|
488
|
+
vellum/client/types/integration_name.py,sha256=SzwAJ2xbIZ94yog1D_Zpd8cH_XEFZG0ygzGdZojEPbo,378
|
489
|
+
vellum/client/types/integration_provider.py,sha256=lIh3yPyPEzmSAu8L4Gsd-iDkmDSNobo0_TB75zMtIXk,129
|
490
|
+
vellum/client/types/integration_read.py,sha256=sUNCS01TIlHPJHEH3ZheIbPi-CplbFQ5XAV1QtOO1Gg,1035
|
475
491
|
vellum/client/types/invoked_port.py,sha256=nw2k-y7NrpcH6T1V96U3F8_pbrsceqBPIz3RQXN8gJY,518
|
476
492
|
vellum/client/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
|
477
493
|
vellum/client/types/jinja_prompt_block.py,sha256=IRWwjk9sGoF49bycXzWP_XYo8fksglZ0hu5geCTystM,903
|
@@ -591,6 +607,9 @@ vellum/client/types/paginated_document_index_read_list.py,sha256=_Qe7afadjpnduPt
|
|
591
607
|
vellum/client/types/paginated_folder_entity_list.py,sha256=KB0N5DinVZaQkFYXInHkvFVnvobBz9LxDsBNp5TVYaU,740
|
592
608
|
vellum/client/types/paginated_slim_deployment_read_list.py,sha256=UYNoxFOaV8HBlM-Fx8i_NMhFBZvQXpaJro6fTgPp1k0,953
|
593
609
|
vellum/client/types/paginated_slim_document_list.py,sha256=xfei22LINEKDXKubCteUhzkWFg-3wJgFkLbGdmTidek,740
|
610
|
+
vellum/client/types/paginated_slim_integration_auth_config_read_list.py,sha256=sVhFJW7fkUeSlnAh3qeDxCje4vQflWlvVp5lPxYqv5I,811
|
611
|
+
vellum/client/types/paginated_slim_integration_read_list.py,sha256=8K8epjr-Z2bTsM0iah1wZjd_lvmoGqkYoDy2OTLru0I,769
|
612
|
+
vellum/client/types/paginated_slim_tool_definition_list.py,sha256=4oCAP6oiPIYUmj4El5y-lW3mDCWEg-YVP9CfTCQ-zmU,843
|
594
613
|
vellum/client/types/paginated_slim_workflow_deployment_list.py,sha256=mIQZ1FT3qQTGG-8eMRvnSAm_u9ixlGk7b80nxoVBxCI,973
|
595
614
|
vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=sYg7pO_vCUoT0xH_a8mQAUWd8A-xEI0EEfmFKbv9U-c,921
|
596
615
|
vellum/client/types/paginated_test_suite_test_case_list.py,sha256=gDVdq10b5u3NEzMZrjpioVDBLMKmHcsRXBi-IX2ZBL8,901
|
@@ -681,9 +700,12 @@ vellum/client/types/sentence_chunker_config.py,sha256=WQGyc0jUiATYhQ7ezbBN06--ul
|
|
681
700
|
vellum/client/types/sentence_chunker_config_request.py,sha256=Da2ANuD4icLxI74emC4z2EEZjeY2k1w9HnEQt2g1AvI,680
|
682
701
|
vellum/client/types/sentence_chunking.py,sha256=MyEImiN0dhWEVFvD76Q6mCqIEjZcyY__Hhu0j9Gjs6Y,747
|
683
702
|
vellum/client/types/sentence_chunking_request.py,sha256=itrdqiKJJ7UKWVGTfj9sJu3kMSThkBF_Qj-3KqFunP4,776
|
703
|
+
vellum/client/types/slim_composio_tool_definition.py,sha256=6biQasvtevBsS9EjJ66GVHAC9G0o54l2VMfHORzc8Ac,718
|
684
704
|
vellum/client/types/slim_deployment_read.py,sha256=lEJ8Fx7QSmqjEK-LcR0y_hX2ywcaPbYjxINwPGy_ofw,1733
|
685
705
|
vellum/client/types/slim_document.py,sha256=aytvaz8SF6MSSEA3iLXP7ZgZOw33CA-_bv2iSj5cH24,2409
|
686
706
|
vellum/client/types/slim_document_document_to_document_index.py,sha256=Ogo8OFjtmcHjDmIynB9vckfjSZxFNhKM-cYpqSfREGI,1515
|
707
|
+
vellum/client/types/slim_integration_auth_config_read.py,sha256=hfC4ABz7g1zc6A30TyyBA-W55TUZRzkFMf0iMjHgBSc,1113
|
708
|
+
vellum/client/types/slim_integration_read.py,sha256=hKc9a85Vi7WNIq6JDPABettHUz-vmV-ViXRsoIpD_MY,754
|
687
709
|
vellum/client/types/slim_release_review.py,sha256=vWNkPXk5wZ_scHsWHz_77PfMZRDn-4qUkqVbCKqY1zQ,747
|
688
710
|
vellum/client/types/slim_workflow_deployment.py,sha256=jIciGPCW9QNtDRdq3w_zUdrrE4cg1LWkcoyGM-L6cs0,2085
|
689
711
|
vellum/client/types/slim_workflow_execution_read.py,sha256=6Ep2iQ6tWTCGxzvAh4t3G_4BjHQ3_JZ9WFdc81XGqkA,2302
|
@@ -807,6 +829,7 @@ vellum/client/types/token_overlapping_window_chunker_config.py,sha256=DusQI1WCr7
|
|
807
829
|
vellum/client/types/token_overlapping_window_chunker_config_request.py,sha256=nxvP5rh8VbvE8AzOFXUBCyNoooDqRS7AmgwkwhCS9ZY,702
|
808
830
|
vellum/client/types/token_overlapping_window_chunking.py,sha256=waAqTJfw2hVCg6OhQ0FsprHJbvlOxTzjtvF8_ZdtPd0,853
|
809
831
|
vellum/client/types/token_overlapping_window_chunking_request.py,sha256=ez-hqu3q-TzqaHsPVvSZ3EY1mqoDeFGz1dnpeEwJByA,882
|
832
|
+
vellum/client/types/tool_definition_integration.py,sha256=7loJ81FWqtjK4nLuIkzWQH0JeY3VUx_rzKQEL_2tzAE,703
|
810
833
|
vellum/client/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
|
811
834
|
vellum/client/types/upload_document_response.py,sha256=C-JP0uAraD8waVwCNRM4FRCRglmv78m532gpy2Q9_Oc,613
|
812
835
|
vellum/client/types/upsert_test_suite_test_case_request.py,sha256=VZGW1_Bw5cvU7RDg7MhT3A9C3ftyeYnAJaDMiil1FuQ,1978
|
@@ -1008,6 +1031,12 @@ vellum/resources/folder_entities/client.py,sha256=kmDQAr_mTAEnBcQD_phRtLBaeJQpjJ
|
|
1008
1031
|
vellum/resources/folder_entities/raw_client.py,sha256=H5WF13_ZzhvHUUhnUj1EvVx8IOwcAe6nkXpiqy4Jyxs,168
|
1009
1032
|
vellum/resources/folder_entities/types/__init__.py,sha256=tRr24soech0seY3EL7iEAxEnqIOpWmXcJ-l95bijcAg,163
|
1010
1033
|
vellum/resources/folder_entities/types/folder_entities_list_request_entity_status.py,sha256=Bv0cgP2-uRPXoBWeRdVzq9fs5yauEIKWF5MU8F-7BFM,206
|
1034
|
+
vellum/resources/integration_auth_configs/__init__.py,sha256=Ul9HyiQF1xU0NZ-BPO-8aGKM-ftVJjdF66skHrRmJV4,166
|
1035
|
+
vellum/resources/integration_auth_configs/client.py,sha256=K_83aSBpdvySGsEuBR5AU0KQWd1swO1XMjBly4BcNos,173
|
1036
|
+
vellum/resources/integration_auth_configs/raw_client.py,sha256=3IoKxwUILfuPFUQXE1Kxw5SItrI6pDH15KABmkR9voI,177
|
1037
|
+
vellum/resources/integration_providers/__init__.py,sha256=SHtPX94sM7lNocNR9XZanQhmI7Nyhx6Gfc01gNENkxE,163
|
1038
|
+
vellum/resources/integration_providers/client.py,sha256=KjUeC9XTofnMYgH2dZ_gMEegK7p5ri-fZtVzOdUlxLk,170
|
1039
|
+
vellum/resources/integration_providers/raw_client.py,sha256=lTbD-LpowEZh9rd7MIKSSY5vQ8j4dgweGtrsXjWZEjU,174
|
1011
1040
|
vellum/resources/integrations/__init__.py,sha256=ikfI2Ca3LPymgoWtY4exWAFYBbj2b33GzSWRHBvAfZA,154
|
1012
1041
|
vellum/resources/integrations/client.py,sha256=5a2m6xe62IpUA5m1GCE3e0tgSowjTEQdX8oqoO7FuCI,161
|
1013
1042
|
vellum/resources/integrations/raw_client.py,sha256=BxXBcu_90M484vA-UnkF1Glg3D96udvhYt8bZ6F_zpk,165
|
@@ -1120,12 +1149,15 @@ vellum/types/compile_prompt_deployment_expand_meta_request.py,sha256=gXZJpYawKJ2
|
|
1120
1149
|
vellum/types/compile_prompt_meta.py,sha256=3WBjvEVnAqbIf-TajGtEWm0D-L_ZHm7MHo5_dD4N8jc,157
|
1121
1150
|
vellum/types/components_schemas_composio_execute_tool_request.py,sha256=hatO7v9DnFYWDPUDVg5q-n9dtDpZJ0xdc6VnOKyFuBI,186
|
1122
1151
|
vellum/types/components_schemas_composio_execute_tool_response.py,sha256=v11RbI6nqeIuPU_zdtGX4BLDhNdLyAYq-g0AB_Pw8pk,187
|
1152
|
+
vellum/types/components_schemas_composio_integration_exec_config.py,sha256=3323af9qVQq7HC3pRYE7481t_skX-ijyvJuTYTCN8eY,189
|
1123
1153
|
vellum/types/components_schemas_composio_tool_definition.py,sha256=s1JSwp98awFQG6rqbb9vqUeSp61Vx1Gz-K-zLhjkeqo,181
|
1124
1154
|
vellum/types/components_schemas_pdf_search_result_meta_source.py,sha256=JuW2DXM7vd33IEpbrFF3NBVucydn_Lb96PqRbO5khsk,186
|
1125
1155
|
vellum/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=SQoJprykGG4h6xFphGMwyMKvtuoHAsv7o_6pBj9yPgI,194
|
1126
1156
|
vellum/types/components_schemas_prompt_version_build_config_sandbox.py,sha256=7uNb2ZzYojSaUy7i8kBFAaqhvgriAjEIkoZhGx7k87k,192
|
1157
|
+
vellum/types/components_schemas_slim_composio_tool_definition.py,sha256=ajJKpw2Oq5wJlo7mw1LiEL_e8eKljLFSotuEUU_OSz0,186
|
1127
1158
|
vellum/types/composio_execute_tool_request.py,sha256=FgUVDTUCnHcXwA7O63I8D38WA-oKTj2CGLH2NvMDI7E,167
|
1128
1159
|
vellum/types/composio_execute_tool_response.py,sha256=P0e6aCKsYN12PKhFGmKlyDlR__kz0tTJLR6EUCdz7cg,168
|
1160
|
+
vellum/types/composio_integration_exec_config.py,sha256=R32c_FJDOvkfHWWT7S76nenrMhAHO12caK-xopbtWZY,170
|
1129
1161
|
vellum/types/composio_tool_definition.py,sha256=a9rPn4OoQdCosJb1Dvb5trALsXprE43G4l30QPxyMGw,162
|
1130
1162
|
vellum/types/condition_combinator.py,sha256=1wNfjIPngHhdUbhMpjNVZqUI8LEu0XIExUX4Rtln1Tg,158
|
1131
1163
|
vellum/types/conditional_node_result.py,sha256=zcfDgqzQWXVcqEQi_ozC_7l2to8Y3uNZ5mFN_uIVDW8,161
|
@@ -1269,6 +1301,12 @@ vellum/types/initiated_prompt_execution_meta.py,sha256=1p5PTDKhyQWGfO02w5XuxsLEW
|
|
1269
1301
|
vellum/types/initiated_workflow_node_result_event.py,sha256=t2ZG_qAz7aHjm881EIOwzcm-Pub2Dyn4CrdNy2nXVsk,174
|
1270
1302
|
vellum/types/instructor_vectorizer_config.py,sha256=-ydrbzjBMhDkV198rN6rEJsxkViplv1xkTTWk6OxP68,166
|
1271
1303
|
vellum/types/instructor_vectorizer_config_request.py,sha256=WVughx2NMndzE7lyE8gph7M_LoaJdHet9IJUH8rUb0Y,174
|
1304
|
+
vellum/types/integration_auth_config_integration.py,sha256=5Eb2oaPbwwFnf05Rr5Q35KhVxw1X-P35g1TjhgOHGb8,173
|
1305
|
+
vellum/types/integration_auth_config_integration_credential.py,sha256=yyz48hxOIF_tlKEgm8ryGsBOhHsQP9QH2-yitPZxcjU,184
|
1306
|
+
vellum/types/integration_credential_access_type.py,sha256=nvvklDHyz-q6lsQJ0jlNYPe_f3LhOoOPmdzqQ6vnBls,172
|
1307
|
+
vellum/types/integration_name.py,sha256=NrAy5QDLUhx4WnED40MTujnjAKzjGxd9lpCrMgC8YZs,154
|
1308
|
+
vellum/types/integration_provider.py,sha256=_34xKlxHRA37I4Mrc1y3MncasgHNAYT_cQbzeobdsJs,158
|
1309
|
+
vellum/types/integration_read.py,sha256=W57b4-R6rK3nDllk4o954UFJVw7oi0f-GNOIta-Gv58,154
|
1272
1310
|
vellum/types/invoked_port.py,sha256=vZUOhbmvydZyxm-dvjh-cVAY4F55Xc7TNEhNLwep7R8,150
|
1273
1311
|
vellum/types/iteration_state_enum.py,sha256=782UXz90fWfEkSxo9iJ1PYXB2UcmV_SgpjqZrI9ZrEc,158
|
1274
1312
|
vellum/types/jinja_prompt_block.py,sha256=PzJdqnRYhHn958T61ycJPJkggbpbuJ12JCBAztKZAj8,156
|
@@ -1388,6 +1426,9 @@ vellum/types/paginated_document_index_read_list.py,sha256=u018kMF9uLr8zcwa_p2nD7
|
|
1388
1426
|
vellum/types/paginated_folder_entity_list.py,sha256=TtdkTgAbbMoBEhqXw754_QehAR2LCMs8Y-oE1__xA1E,166
|
1389
1427
|
vellum/types/paginated_slim_deployment_read_list.py,sha256=mjMtEbesE-L7a0De1_95F7OOIQsf18Uw23wZrAM6QD0,173
|
1390
1428
|
vellum/types/paginated_slim_document_list.py,sha256=os9lnMQZVzL5N281NusQfHc7R_y0-y_LbLslbCop__g,166
|
1429
|
+
vellum/types/paginated_slim_integration_auth_config_read_list.py,sha256=V0z0XlB8yc_gLWy7eHfl8uccE1pP6gR3DoZ4JPt6bec,186
|
1430
|
+
vellum/types/paginated_slim_integration_read_list.py,sha256=nPH8dW3QcZVqq74rhyHrPa_0D0w5ifl1cUmTtgOIAhE,174
|
1431
|
+
vellum/types/paginated_slim_tool_definition_list.py,sha256=oA5StUVXoYK1nxXYKy2b3taVuaG379n4sBywfqh5xS8,173
|
1391
1432
|
vellum/types/paginated_slim_workflow_deployment_list.py,sha256=3QgvxRFqcOw9z-cl0CBaHrREc8pxkPxUYreINh-indg,177
|
1392
1433
|
vellum/types/paginated_test_suite_run_execution_list.py,sha256=XEr928_4w9Rw9_q6dshxPWfXXptLdRlDp-frKIIcdYQ,177
|
1393
1434
|
vellum/types/paginated_test_suite_test_case_list.py,sha256=LoyXDEr2yXrkniJ25HctBWvhqKQ987XItukUwPYUIhQ,173
|
@@ -1478,9 +1519,12 @@ vellum/types/sentence_chunker_config.py,sha256=cxEC-Q_qriDWbqP5qHvQXVAUFKwr-KIQV
|
|
1478
1519
|
vellum/types/sentence_chunker_config_request.py,sha256=JiQoodK93SbNCRfP2Daxg6zKoqmd8nso3k6C-mm3jj8,169
|
1479
1520
|
vellum/types/sentence_chunking.py,sha256=MfuUfa_lhTX3OFCLJig0D7xN9lhLOxvsxw5ywHw1YV0,155
|
1480
1521
|
vellum/types/sentence_chunking_request.py,sha256=f0am6XafUmK3Ok3dEy2cqeeqds63XF9qard0tcIzZJk,163
|
1522
|
+
vellum/types/slim_composio_tool_definition.py,sha256=6TlJZedTt1YYtejhhS18Xo7kCEvXijcQvVWtbShvkLE,167
|
1481
1523
|
vellum/types/slim_deployment_read.py,sha256=grU1w1TDVLwQqbklQaoShBRwIjeurD5ZadeK_ABP-VU,158
|
1482
1524
|
vellum/types/slim_document.py,sha256=yhPuWFL65jMKdCEcMNBDqJZQc1UdYlH7tFJ1nkGwDL0,151
|
1483
1525
|
vellum/types/slim_document_document_to_document_index.py,sha256=3FwldvGhBc0pkccorIE3eMi8hQ0swgCWgKQJ6-jIff0,178
|
1526
|
+
vellum/types/slim_integration_auth_config_read.py,sha256=tb_5E_kBO-qOFNLhPwvwd0a18i4MBzSX3m4XE1EMLJc,171
|
1527
|
+
vellum/types/slim_integration_read.py,sha256=tGDKHJi1p11vji4a8f54LbGkyStcBpnG1OUYYG0IZ0Q,159
|
1484
1528
|
vellum/types/slim_release_review.py,sha256=g8uRHBq4J5XIffToAlHRgclrKQvJ0G1M37nz3gL-JJM,157
|
1485
1529
|
vellum/types/slim_workflow_deployment.py,sha256=wRfaObu07ouUTNln4QZuBiye2uuKh3kPPvz2h9sbmJU,162
|
1486
1530
|
vellum/types/slim_workflow_execution_read.py,sha256=nQcAhL7OJu2ptMGgJsnG6FmNINR-ooJNhIRMVQFXQbI,166
|
@@ -1604,6 +1648,7 @@ vellum/types/token_overlapping_window_chunker_config.py,sha256=NFoh8PAQCFXMnmHJ-
|
|
1604
1648
|
vellum/types/token_overlapping_window_chunker_config_request.py,sha256=C1_P8TQXCRkKD6zcy2O7l2eMaPH_atBMdQOW8ZB-HCg,185
|
1605
1649
|
vellum/types/token_overlapping_window_chunking.py,sha256=fgVxqPWWRIwTyb1_MZxwmjbIMeCzEKBeWFbdk9cw4PU,171
|
1606
1650
|
vellum/types/token_overlapping_window_chunking_request.py,sha256=l5BiDjyL9VcRaBMIhHaOPuIsdXM6TPhR50FgaQqkrWY,179
|
1651
|
+
vellum/types/tool_definition_integration.py,sha256=jFLvIW0du2Lq5P6tB37U6uZGpMJmHtdTBfcrFWp0VIg,165
|
1607
1652
|
vellum/types/unit_enum.py,sha256=SW7UN6x26IlD7NMXPPhF4at6uuJnocW0eWMsPYX6Jjc,147
|
1608
1653
|
vellum/types/upload_document_response.py,sha256=_ZE1uLh5LqYkJiu81SVZ9qR1HMop81tmEPzXV7lVpGM,162
|
1609
1654
|
vellum/types/upsert_test_suite_test_case_request.py,sha256=OXJ7FUI6xZzSP_Fiy0RQcZh7FwptIIiYKwXRcvauJFY,173
|
@@ -1828,8 +1873,8 @@ vellum/workflows/integrations/composio_service.py,sha256=rSliaZtNiBcDSvDxz9k5i1K
|
|
1828
1873
|
vellum/workflows/integrations/mcp_service.py,sha256=9DYb8dg2_kgc1UOu830kxhaFlt9yTbhKPhK3L6kb1t4,9831
|
1829
1874
|
vellum/workflows/integrations/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1830
1875
|
vellum/workflows/integrations/tests/test_mcp_service.py,sha256=q_DYrDkIqI4sQBNgID4YdbM4e9tneLVWY8YmI4R26d8,8859
|
1831
|
-
vellum/workflows/integrations/tests/test_vellum_integration_service.py,sha256=
|
1832
|
-
vellum/workflows/integrations/vellum_integration_service.py,sha256=
|
1876
|
+
vellum/workflows/integrations/tests/test_vellum_integration_service.py,sha256=KlzS86r3nxOqliCUgpuauAGkrR6jNDbytID0_i_MLkc,7970
|
1877
|
+
vellum/workflows/integrations/vellum_integration_service.py,sha256=oLLYS2BqE_9HBpzWcvvkPxqBh09Kilzy7xXX-m-PbTk,3665
|
1833
1878
|
vellum/workflows/logging.py,sha256=_a217XogktV4Ncz6xKFz7WfYmZAzkfVRVuC0rWob8ls,437
|
1834
1879
|
vellum/workflows/nodes/__init__.py,sha256=zymtc3_iW2rFmMR-sayTLuN6ZsAw8VnJweWPsjQk2-Q,1197
|
1835
1880
|
vellum/workflows/nodes/bases/__init__.py,sha256=cniHuz_RXdJ4TQgD8CBzoiKDiPxg62ErdVpCbWICX64,58
|
@@ -1927,7 +1972,7 @@ vellum/workflows/nodes/displayable/tests/test_search_node_error_handling.py,sha2
|
|
1927
1972
|
vellum/workflows/nodes/displayable/tests/test_search_node_wth_text_output.py,sha256=VepO5z1277c1y5N6LLIC31nnWD1aak2m5oPFplfJHHs,6935
|
1928
1973
|
vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=Bjv-wZyFgNaVZb9KEMMZd9lFoLzbPEPjEMpANizMZw4,2413
|
1929
1974
|
vellum/workflows/nodes/displayable/tool_calling_node/__init__.py,sha256=3n0-ysmFKsr40CVxPthc0rfJgqVJeZuUEsCmYudLVRg,117
|
1930
|
-
vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=
|
1975
|
+
vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=RxwBjNMmpRBu2G6fnu37MvqRVxa7ZQzOPtqccCYlCqI,8420
|
1931
1976
|
vellum/workflows/nodes/displayable/tool_calling_node/state.py,sha256=CcBVb_YtwfSSka4ze678k6-qwmzMSfjfVP8_Y95feSo,302
|
1932
1977
|
vellum/workflows/nodes/displayable/tool_calling_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1933
1978
|
vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service.py,sha256=in1fbEz5x1tx3uKv9YXdvOncsHucNL8Ro6Go7lBuuOQ,8962
|
@@ -1989,11 +2034,11 @@ vellum/workflows/tests/test_undefined.py,sha256=zMCVliCXVNLrlC6hEGyOWDnQADJ2g83y
|
|
1989
2034
|
vellum/workflows/types/__init__.py,sha256=KxUTMBGzuRCfiMqzzsykOeVvrrkaZmTTo1a7SLu8gRM,68
|
1990
2035
|
vellum/workflows/types/code_execution_node_wrappers.py,sha256=fewX9bqF_4TZuK-gZYIn12s31-k03vHMGRpvFAPm11Y,3206
|
1991
2036
|
vellum/workflows/types/core.py,sha256=yKm3sE02ult969q80DTmawiwYqodVjcAW-zlaUIgIv4,1495
|
1992
|
-
vellum/workflows/types/definition.py,sha256=
|
2037
|
+
vellum/workflows/types/definition.py,sha256=_6RqnqGm5RGXsoTaDLu2mCHoldfcJY7hpAtBfOgyukk,7677
|
1993
2038
|
vellum/workflows/types/generics.py,sha256=8jptbEx1fnJV0Lhj0MpCJOT6yNiEWeTOYOwrEAb5CRU,1576
|
1994
2039
|
vellum/workflows/types/stack.py,sha256=h7NE0vXR7l9DevFBIzIAk1Zh59K-kECQtDTKOUunwMY,1314
|
1995
2040
|
vellum/workflows/types/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1996
|
-
vellum/workflows/types/tests/test_definition.py,sha256=
|
2041
|
+
vellum/workflows/types/tests/test_definition.py,sha256=vwH11nY7OGpyVOLul_CH6_BPn8D1JyMJtc_ZCkwKi2U,7173
|
1997
2042
|
vellum/workflows/types/tests/test_utils.py,sha256=UnZog59tR577mVwqZRqqWn2fScoOU1H6up0EzS8zYhw,2536
|
1998
2043
|
vellum/workflows/types/utils.py,sha256=mTctHITBybpt4855x32oCKALBEcMNLn-9cCmfEKgJHQ,6498
|
1999
2044
|
vellum/workflows/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -2016,8 +2061,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
|
|
2016
2061
|
vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2017
2062
|
vellum/workflows/workflows/tests/test_base_workflow.py,sha256=Boa-_m9ii2Qsa1RvVM-VYniF7zCpzGgEGy-OnPZkrHg,23941
|
2018
2063
|
vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
|
2019
|
-
vellum_ai-1.5.
|
2020
|
-
vellum_ai-1.5.
|
2021
|
-
vellum_ai-1.5.
|
2022
|
-
vellum_ai-1.5.
|
2023
|
-
vellum_ai-1.5.
|
2064
|
+
vellum_ai-1.5.6.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
|
2065
|
+
vellum_ai-1.5.6.dist-info/METADATA,sha256=RfoxNhrrppYe542ZzWrysREowPpM5RkWQtNgrAFgVBU,5547
|
2066
|
+
vellum_ai-1.5.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
2067
|
+
vellum_ai-1.5.6.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
|
2068
|
+
vellum_ai-1.5.6.dist-info/RECORD,,
|
@@ -0,0 +1,68 @@
|
|
1
|
+
from vellum_ee.workflows.display.workflows.get_vellum_workflow_display_class import get_workflow_display
|
2
|
+
|
3
|
+
from tests.workflows.basic_tool_calling_node_with_vellum_integration_tool.workflow import (
|
4
|
+
BasicToolCallingNodeWithVellumIntegrationToolWorkflow,
|
5
|
+
)
|
6
|
+
|
7
|
+
|
8
|
+
def test_serialize_workflow():
|
9
|
+
# GIVEN a Workflow that uses a tool calling node with a vellum integration tool
|
10
|
+
# WHEN we serialize it
|
11
|
+
workflow_display = get_workflow_display(workflow_class=BasicToolCallingNodeWithVellumIntegrationToolWorkflow)
|
12
|
+
|
13
|
+
serialized_workflow: dict = workflow_display.serialize()
|
14
|
+
|
15
|
+
# THEN we should get a serialized representation of the Workflow
|
16
|
+
assert serialized_workflow.keys() == {
|
17
|
+
"workflow_raw_data",
|
18
|
+
"input_variables",
|
19
|
+
"state_variables",
|
20
|
+
"output_variables",
|
21
|
+
}
|
22
|
+
|
23
|
+
# AND its input variables should be what we expect
|
24
|
+
input_variables = serialized_workflow["input_variables"]
|
25
|
+
assert len(input_variables) == 1
|
26
|
+
assert input_variables[0]["key"] == "query"
|
27
|
+
assert input_variables[0]["type"] == "STRING"
|
28
|
+
|
29
|
+
# AND its output variables should be what we expect
|
30
|
+
output_variables = serialized_workflow["output_variables"]
|
31
|
+
assert len(output_variables) == 2
|
32
|
+
|
33
|
+
# Find the text and chat_history outputs
|
34
|
+
text_output = next(var for var in output_variables if var["key"] == "text")
|
35
|
+
chat_history_output = next(var for var in output_variables if var["key"] == "chat_history")
|
36
|
+
|
37
|
+
assert text_output["type"] == "STRING"
|
38
|
+
assert chat_history_output["type"] == "CHAT_HISTORY"
|
39
|
+
|
40
|
+
# AND its raw data should be what we expect
|
41
|
+
workflow_raw_data = serialized_workflow["workflow_raw_data"]
|
42
|
+
tool_calling_node = workflow_raw_data["nodes"][1]
|
43
|
+
|
44
|
+
# Tool calling nodes serialize as GENERIC nodes
|
45
|
+
assert tool_calling_node["type"] == "GENERIC"
|
46
|
+
assert tool_calling_node["label"] == "Vellum Integration Tool Calling Node"
|
47
|
+
|
48
|
+
# Verify the node base class
|
49
|
+
assert tool_calling_node["base"]["name"] == "ToolCallingNode"
|
50
|
+
|
51
|
+
# Verify the node has the expected attributes with function definitions
|
52
|
+
assert "attributes" in tool_calling_node
|
53
|
+
attributes = tool_calling_node["attributes"]
|
54
|
+
|
55
|
+
# Find the functions attribute
|
56
|
+
functions_attr = next(attr for attr in attributes if attr["name"] == "functions")
|
57
|
+
assert functions_attr["value"]["type"] == "CONSTANT_VALUE"
|
58
|
+
|
59
|
+
# Verify the function definition details
|
60
|
+
functions_value = functions_attr["value"]["value"]["value"]
|
61
|
+
assert len(functions_value) == 1
|
62
|
+
|
63
|
+
function = functions_value[0]
|
64
|
+
assert function["type"] == "VELLUM_INTEGRATION"
|
65
|
+
assert function["provider"] == "COMPOSIO" # VellumIntegrationProviderType.COMPOSIO
|
66
|
+
assert function["integration"] == "GITHUB"
|
67
|
+
assert function["name"] == "create_issue"
|
68
|
+
assert function["description"] == "Create a new issue in a GitHub repository"
|
File without changes
|
File without changes
|
File without changes
|