vellum-ai 0.14.37__py3-none-any.whl → 0.14.38__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. vellum/__init__.py +8 -0
  2. vellum/client/core/client_wrapper.py +1 -1
  3. vellum/client/reference.md +6272 -0
  4. vellum/client/types/__init__.py +8 -0
  5. vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py +2 -0
  6. vellum/client/types/fulfilled_prompt_execution_meta.py +2 -0
  7. vellum/client/types/test_suite_run_exec_config_request.py +4 -0
  8. vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py +27 -0
  9. vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py +29 -0
  10. vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py +22 -0
  11. vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py +29 -0
  12. vellum/plugins/pydantic.py +1 -1
  13. vellum/types/test_suite_run_prompt_sandbox_exec_config_data_request.py +3 -0
  14. vellum/types/test_suite_run_prompt_sandbox_exec_config_request.py +3 -0
  15. vellum/types/test_suite_run_workflow_sandbox_exec_config_data_request.py +3 -0
  16. vellum/types/test_suite_run_workflow_sandbox_exec_config_request.py +3 -0
  17. vellum/workflows/events/node.py +2 -1
  18. vellum/workflows/events/types.py +3 -40
  19. vellum/workflows/events/workflow.py +2 -1
  20. vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py +94 -3
  21. vellum/workflows/nodes/displayable/conftest.py +2 -6
  22. vellum/workflows/nodes/displayable/guardrail_node/node.py +1 -1
  23. vellum/workflows/nodes/displayable/guardrail_node/tests/__init__.py +0 -0
  24. vellum/workflows/nodes/displayable/guardrail_node/tests/test_node.py +50 -0
  25. vellum/workflows/nodes/displayable/prompt_deployment_node/tests/test_node.py +297 -0
  26. vellum/workflows/runner/runner.py +44 -43
  27. vellum/workflows/state/base.py +149 -45
  28. vellum/workflows/types/definition.py +71 -0
  29. vellum/workflows/types/generics.py +34 -1
  30. vellum/workflows/workflows/base.py +20 -3
  31. vellum/workflows/workflows/tests/test_base_workflow.py +232 -1
  32. {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/METADATA +1 -1
  33. {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/RECORD +37 -25
  34. vellum_ee/workflows/display/vellum.py +0 -5
  35. {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/LICENSE +0 -0
  36. {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/WHEEL +0 -0
  37. {vellum_ai-0.14.37.dist-info → vellum_ai-0.14.38.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,5 @@
1
1
  import pytest
2
+ from uuid import uuid4
2
3
 
3
4
  from vellum.workflows.edges.edge import Edge
4
5
  from vellum.workflows.inputs.base import BaseInputs
@@ -9,6 +10,14 @@ from vellum.workflows.state.base import BaseState
9
10
  from vellum.workflows.workflows.base import BaseWorkflow
10
11
 
11
12
 
13
+ class GlobalTestWorkflow(BaseWorkflow):
14
+ """
15
+ Used as part of `test_base_workflow__deserialize_state_with_invalid_workflow_definition` below.
16
+ """
17
+
18
+ pass
19
+
20
+
12
21
  def test_base_workflow__inherit_base_outputs():
13
22
  class MyNode(BaseNode):
14
23
  class Outputs(BaseNode.Outputs):
@@ -336,13 +345,34 @@ def test_base_workflow__deserialize_state():
336
345
  graph = NodeA
337
346
 
338
347
  # WHEN we deserialize the state
348
+ last_span_id = str(uuid4())
339
349
  state = TestWorkflow.deserialize_state(
340
350
  {
341
351
  "bar": "My state bar",
342
352
  "meta": {
353
+ "id": "b70a5a4f-8253-4a38-aeaf-0700b4783a78",
354
+ "trace_id": "9dcfb309-81e9-4b75-9b21-edd31cf9685f",
355
+ "span_id": "1c2e310c-3624-4f4f-b7ac-1e429de29bbf",
356
+ "updated_ts": "2025-04-14T19:22:18.504902",
357
+ "external_inputs": {},
343
358
  "node_outputs": {
344
359
  "test_base_workflow__deserialize_state.<locals>.NodeA.Outputs.foo": "My node A output foo"
345
- }
360
+ },
361
+ "node_execution_cache": {
362
+ "dependencies_invoked": {
363
+ last_span_id: ["test_base_workflow__deserialize_state.<locals>.NodeA"],
364
+ },
365
+ "node_executions_initiated": {
366
+ "test_base_workflow__deserialize_state.<locals>.NodeA": [last_span_id],
367
+ },
368
+ "node_executions_fulfilled": {
369
+ "test_base_workflow__deserialize_state.<locals>.NodeA": [last_span_id],
370
+ },
371
+ "node_executions_queued": {
372
+ "test_base_workflow__deserialize_state.<locals>.NodeA": [],
373
+ },
374
+ },
375
+ "parent": None,
346
376
  },
347
377
  },
348
378
  workflow_inputs=Inputs(baz="My input baz"),
@@ -353,3 +383,204 @@ def test_base_workflow__deserialize_state():
353
383
  assert state.meta.node_outputs == {NodeA.Outputs.foo: "My node A output foo"}
354
384
  assert isinstance(state.meta.workflow_inputs, Inputs)
355
385
  assert state.meta.workflow_inputs.baz == "My input baz"
386
+
387
+ # AND the node execution cache should deserialize
388
+ assert state.meta.node_execution_cache
389
+
390
+
391
+ def test_base_workflow__deserialize_state_with_optional_inputs():
392
+
393
+ # GIVEN a state definition
394
+ class State(BaseState):
395
+ bar: str
396
+
397
+ # AND an inputs definition with an optional field
398
+ class Inputs(BaseInputs):
399
+ baz: str = "My default baz"
400
+
401
+ # AND a node
402
+ class NodeA(BaseNode):
403
+ class Outputs(BaseNode.Outputs):
404
+ foo: str
405
+
406
+ # AND a workflow that uses all three
407
+ class TestWorkflow(BaseWorkflow[Inputs, State]):
408
+ graph = NodeA
409
+
410
+ # WHEN we deserialize the state
411
+ state = TestWorkflow.deserialize_state(
412
+ {
413
+ "bar": "My state bar",
414
+ "meta": {
415
+ "node_outputs": {},
416
+ "parent": None,
417
+ },
418
+ },
419
+ )
420
+
421
+ # THEN the state should be correct
422
+ assert state.bar == "My state bar"
423
+ assert isinstance(state.meta.workflow_inputs, Inputs)
424
+ assert state.meta.workflow_inputs.baz == "My default baz"
425
+
426
+
427
+ def test_base_workflow__deserialize_nested_state():
428
+ # GIVEN a state definition
429
+ class State(BaseState):
430
+ foo: str
431
+
432
+ # AND a nested state definition
433
+ class NestedState(BaseState):
434
+ bar: str
435
+
436
+ # AND an inner node
437
+ class InnerNode(BaseNode):
438
+ class Outputs(BaseNode.Outputs):
439
+ baz: str
440
+
441
+ # AND a subworkflow definition with the nested state and inner node
442
+ class InnerWorkflow(BaseWorkflow[BaseInputs, NestedState]):
443
+ graph = InnerNode
444
+
445
+ # AND a subworkflow node
446
+ class OuterNode(InlineSubworkflowNode[State, BaseInputs, NestedState]):
447
+ subworkflow = InnerWorkflow
448
+
449
+ class Outputs(InlineSubworkflowNode.Outputs):
450
+ qux: str
451
+
452
+ # AND a workflow that uses the outer state and subworkflow node
453
+ class TestWorkflow(BaseWorkflow[BaseInputs, State]):
454
+ graph = OuterNode
455
+
456
+ # WHEN we deserialize the nested state
457
+ inner_node_output_definition = "test_base_workflow__deserialize_nested_state.<locals>.InnerNode.Outputs.baz"
458
+ outer_node_output_definition = "test_base_workflow__deserialize_nested_state.<locals>.OuterNode.Outputs.qux"
459
+ state = InnerWorkflow.deserialize_state(
460
+ {
461
+ "bar": "My nested state bar",
462
+ "meta": {
463
+ "workflow_definition": {
464
+ "id": str(InnerWorkflow.__id__),
465
+ "name": "test_base_workflow__deserialize_nested_state.<locals>.InnerWorkflow",
466
+ "module": ["vellum", "workflows", "workflows", "tests", "test_base_workflow"],
467
+ },
468
+ "node_outputs": {inner_node_output_definition: "My inner node output baz"},
469
+ "parent": {
470
+ "foo": "My outer state foo",
471
+ "meta": {
472
+ "node_outputs": {outer_node_output_definition: "My outer node output qux"},
473
+ "workflow_definition": {
474
+ "id": str(TestWorkflow.__id__),
475
+ "name": "test_base_workflow__deserialize_nested_state.<locals>.TestWorkflow",
476
+ "module": ["vellum", "workflows", "workflows", "tests", "test_base_workflow"],
477
+ },
478
+ },
479
+ },
480
+ },
481
+ },
482
+ )
483
+
484
+ # THEN the state should be correct
485
+ assert state.bar == "My nested state bar"
486
+ assert state.meta.node_outputs == {InnerNode.Outputs.baz: "My inner node output baz"}
487
+ assert state.meta.workflow_definition == InnerWorkflow
488
+
489
+ # AND the parent state should be correct
490
+ assert isinstance(state.meta.parent, State)
491
+ assert state.meta.parent.foo == "My outer state foo"
492
+ assert state.meta.parent.meta.node_outputs == {OuterNode.Outputs.qux: "My outer node output qux"}
493
+ assert state.meta.parent.meta.workflow_definition == TestWorkflow
494
+
495
+
496
+ def test_base_workflow__deserialize_state_with_none():
497
+
498
+ # GIVEN a state definition
499
+ class State(BaseState):
500
+ bar: str
501
+
502
+ # AND an inputs definition
503
+ class Inputs(BaseInputs):
504
+ baz: str
505
+
506
+ # AND a node
507
+ class NodeA(BaseNode):
508
+ class Outputs(BaseNode.Outputs):
509
+ foo: str
510
+
511
+ # AND a workflow that uses all three
512
+ class TestWorkflow(BaseWorkflow[Inputs, State]):
513
+ graph = NodeA
514
+
515
+ # WHEN we deserialize None
516
+ state = TestWorkflow.deserialize_state(None)
517
+
518
+ # THEN we should get back None
519
+ assert state is None
520
+
521
+
522
+ @pytest.mark.parametrize(
523
+ "raw_workflow_definition",
524
+ [
525
+ {
526
+ "name": "test_base_workflow__deserialize_state_with_invalid_workflow_definition.<locals>.TestWorkflow",
527
+ "module": ["invalid", "module", "path"],
528
+ },
529
+ {
530
+ "name": "test_base_workflow__deserialize_state_with_invalid_workflow_definition.<locals>.InvalidWorkflow",
531
+ "module": ["vellum", "workflows", "workflows", "tests", "test_base_workflow"],
532
+ },
533
+ {
534
+ "name": "invalid_local_function_name.<locals>.TestWorkflow",
535
+ "module": ["vellum", "workflows", "workflows", "tests", "test_base_workflow"],
536
+ },
537
+ {
538
+ "name": "GlobalTestWorkflow",
539
+ "module": ["invalid", "module", "path"],
540
+ },
541
+ {
542
+ "name": "InlineSubworkflowNode",
543
+ "module": ["vellum", "workflows", "workflows", "tests", "test_base_workflow"],
544
+ },
545
+ {
546
+ "name": "InvalidWorkflow",
547
+ "module": ["vellum", "workflows", "workflows", "tests", "test_base_workflow"],
548
+ },
549
+ ],
550
+ ids=[
551
+ "invalid_module_path_with_locals",
552
+ "invalid_local_name",
553
+ "invalid_local_container",
554
+ "invalid_global_module",
555
+ "invalid_global_name",
556
+ "missing_global_name",
557
+ ],
558
+ )
559
+ def test_base_workflow__deserialize_state_with_invalid_workflow_definition(raw_workflow_definition):
560
+
561
+ # GIVEN a state definition
562
+ class State(BaseState):
563
+ bar = "My default bar"
564
+
565
+ # AND a workflow
566
+ class TestWorkflow(BaseWorkflow[BaseInputs, State]):
567
+ pass
568
+
569
+ # WHEN we deserialize a state with an invalid module path
570
+ state = TestWorkflow.deserialize_state(
571
+ {
572
+ "meta": {
573
+ "workflow_definition": {
574
+ "id": str(TestWorkflow.__id__),
575
+ **raw_workflow_definition,
576
+ },
577
+ },
578
+ },
579
+ )
580
+
581
+ # THEN we should get back the default state
582
+ assert isinstance(state, State)
583
+ assert state.bar == "My default bar"
584
+
585
+ # AND the workflow definition should be BaseWorkflow
586
+ assert state.meta.workflow_definition == BaseWorkflow
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.14.37
3
+ Version: 0.14.38
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.9,<4.0
@@ -94,7 +94,7 @@ vellum_ee/workflows/display/types.py,sha256=nERYzMC-TqoQuRN8QtF2ZLr-56G7XgXJqLtn
94
94
  vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
95
  vellum_ee/workflows/display/utils/expressions.py,sha256=2u2o8Fqr-2C45FII01ej5rt6i8n2EEGiliXugK7buVw,1210
96
96
  vellum_ee/workflows/display/utils/vellum.py,sha256=Pzmg9Xiq-hRaYxbOSDaJhIAQ4A0apQN6dURn_h5DnWI,9364
97
- vellum_ee/workflows/display/vellum.py,sha256=niAiU3KVvkCd3Jp8esRxgvP0fhivu5ENNQzxeT-NKys,3664
97
+ vellum_ee/workflows/display/vellum.py,sha256=o7mq_vk2Yapu9DDKRz5l76h8EmCAypWGQYe6pryrbB8,3576
98
98
  vellum_ee/workflows/display/workflows/__init__.py,sha256=kapXsC67VJcgSuiBMa86FdePG5A9kMB5Pi4Uy1O2ob4,207
99
99
  vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=UbUalLL_CDFIEnqN-uFv8Ms06AMxDmQPx9HQ1oocBno,20979
100
100
  vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py,sha256=kp0u8LN_2IwshLrhMImhpZx1hRyAcD5gXY-kDuuaGMQ,1269
@@ -124,12 +124,12 @@ vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIP
124
124
  vellum_ee/workflows/tests/test_display_meta.py,sha256=C25dErwghPNXio49pvSRxyOuc96srH6eYEwTAWdE2zY,2258
125
125
  vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
126
126
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
127
- vellum/__init__.py,sha256=hl6RSGwdQetF5BV0k-8eGbGDVhdnZDpYX7MQXpZ4c-0,41308
127
+ vellum/__init__.py,sha256=430zRtvdyz4CCMrfuVGV376v3E2yT_mIjZun7qe5qek,41724
128
128
  vellum/client/README.md,sha256=JkCJjmMZl4jrPj46pkmL9dpK4gSzQQmP5I7z4aME4LY,4749
129
129
  vellum/client/__init__.py,sha256=Z-JHK2jGxhtTtmkLeOaUGGJWIUNYGNVBLvUewC6lp6w,118148
130
130
  vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
131
131
  vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
132
- vellum/client/core/client_wrapper.py,sha256=O2ona-RY5QBlx_tQsGG9B7ftfYuk-y7iQ0vJD7hL9Z4,1869
132
+ vellum/client/core/client_wrapper.py,sha256=AgCSD62C0H6UZT5KMnqofnXDVF4tqxpuR550TMlFN0Q,1869
133
133
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
134
134
  vellum/client/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
135
135
  vellum/client/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
@@ -145,6 +145,7 @@ vellum/client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcs
145
145
  vellum/client/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
146
146
  vellum/client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
147
147
  vellum/client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
148
+ vellum/client/reference.md,sha256=iTxdizCeS4bP5BFv_sR6BUI0gzHA8cMkA9KHpQq0ZD4,88081
148
149
  vellum/client/resources/__init__.py,sha256=XgQao4rJxyYu71j64RFIsshz4op9GE8-i-C5GCv-KVE,1555
149
150
  vellum/client/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
150
151
  vellum/client/resources/ad_hoc/client.py,sha256=_liorv4AsoJ55kVu0a5oWB3Qeff0iUKXqoHEIyDWLxc,14173
@@ -196,10 +197,10 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
196
197
  vellum/client/resources/workspace_secrets/client.py,sha256=h7UzXLyTttPq1t-JZGMg1BWxypxJvBGUdqg7KGT7MK4,8027
197
198
  vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
198
199
  vellum/client/resources/workspaces/client.py,sha256=RthwzN1o-Jxwg5yyNNodavFyNUSxfLoTv26w3mRR5g8,3595
199
- vellum/client/types/__init__.py,sha256=vfEaeh8-2xzhzeFo8j-OnbmezsjCd4EJS4zhxuw_JbE,62505
200
+ vellum/client/types/__init__.py,sha256=IIfGVNuXgBGmwm0-_BIpFzo9VQAGABBLytDlZwKkNyA,63167
200
201
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
201
202
  vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
202
- vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
203
+ vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=oDG60TpwK1YNSKhRsBbiP2O3ZF9PKR-M9chGIfKw4R4,1004
203
204
  vellum/client/types/ad_hoc_initiated_prompt_execution_meta.py,sha256=gOHP4kmnVCJJkTpfRPOgkFB70mhz5ySg_c2qRffDGWQ,785
204
205
  vellum/client/types/ad_hoc_rejected_prompt_execution_meta.py,sha256=Yo3TNjemHUfxU9R3EMzAGh-ey9pSClpEX7uGgGZiXDg,849
205
206
  vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=OVSyUL81lpkbXdxnQmPD6qPIxrErEDAgDofQ9lGWLXk,741
@@ -330,7 +331,7 @@ vellum/client/types/fulfilled_ad_hoc_execute_prompt_event.py,sha256=19rFjVrzobaa
330
331
  vellum/client/types/fulfilled_execute_prompt_event.py,sha256=E-iBwlMWvwQyRfzqPlgtX8KurE3IYsTRd5vWjXtbOmk,994
331
332
  vellum/client/types/fulfilled_execute_prompt_response.py,sha256=nKhDk2ZloCuE0uijX5XOE63_cq8PBo4UWs4hK4e3jUE,1227
332
333
  vellum/client/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=kYlTOfJd9SydVSmJ8dr8pdLh7RHOwcFv5UzBYgKlyTw,1147
333
- vellum/client/types/fulfilled_prompt_execution_meta.py,sha256=sMWAMqJCh8n_NBtRSM4muiAqKne_W-NCxJVzKy9Q1Ec,934
334
+ vellum/client/types/fulfilled_prompt_execution_meta.py,sha256=yUn1X3zqfvh60U6Kd3Z9YUxcNU0LyjfLPMKbwLTo7AU,999
334
335
  vellum/client/types/fulfilled_workflow_node_result_event.py,sha256=dYZUcyl_nFRFpBA_imaHkp9F7dLi59z2ESq4R7do9mo,1403
335
336
  vellum/client/types/function_call.py,sha256=3f19emMu06jHo3DlO4pQb_bC7NjKCLjWdLq3gndiCqg,713
336
337
  vellum/client/types/function_call_chat_message_content.py,sha256=qXbrMQeXn_CLjfDzQvv9llmae2wvpoTlUSQWdfMvf-k,831
@@ -613,7 +614,7 @@ vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data.py,sh
613
614
  vellum/client/types/test_suite_run_deployment_release_tag_exec_config_data_request.py,sha256=cUr9LN4YLxkyMXI3wwemmKZtvxSi9K79kPJrmRyknKc,935
614
615
  vellum/client/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256=fyBRNbErOr1ixYs84JbvqM9yPEH1D-LDsfGVhIgsdZ4,1192
615
616
  vellum/client/types/test_suite_run_exec_config.py,sha256=CwsiCKjkRb2S9YJdQYRtnKU87CzbimPyswBwRriv004,879
616
- vellum/client/types/test_suite_run_exec_config_request.py,sha256=bXR2LXwc6T7WtgVa0HCkJuDg1H1TFB01CpCdb-hoqWc,1014
617
+ vellum/client/types/test_suite_run_exec_config_request.py,sha256=GNeLff_kZSWa8gTOc-uGdbea0cF3ESZn5cniCtWon6A,1328
617
618
  vellum/client/types/test_suite_run_execution.py,sha256=x0tjfFMSEl5hr1ZAh9r-2m3gQCbhKNZBGu5_6ANLgiU,1091
618
619
  vellum/client/types/test_suite_run_execution_array_output.py,sha256=fnGLAXY6NC8uJKK2500lsRXDvugjfIBJiDAfWDg1sUo,1101
619
620
  vellum/client/types/test_suite_run_execution_chat_history_output.py,sha256=tzeWqczo04aXl-ALhfOHYEabrgOIqmG7E-nA5-l3dME,879
@@ -636,6 +637,8 @@ vellum/client/types/test_suite_run_metric_json_output.py,sha256=DI3mJR5kpi8Hm2n6
636
637
  vellum/client/types/test_suite_run_metric_number_output.py,sha256=8pddeSds6Rrn0xGqyvgPsG1hr1tu6eOiQAp8kkM_aBk,739
637
638
  vellum/client/types/test_suite_run_metric_output.py,sha256=z9A4_ZT9_NIHWHkFZakaf_SMn3Y13WRJ_lWzTCzXZ_U,691
638
639
  vellum/client/types/test_suite_run_metric_string_output.py,sha256=YXerGfpvJdBtKrzgutSqEfG-N6cZoeOL59qZ5k6DwQA,737
640
+ vellum/client/types/test_suite_run_prompt_sandbox_exec_config_data_request.py,sha256=FrUaFEfdZq4lyGaC_ZQpq0EyXB7_nRF865h13F-_ihs,870
641
+ vellum/client/types/test_suite_run_prompt_sandbox_exec_config_request.py,sha256=E2W0Ec6Yy6NGHzG-sPe8bYw09g3L_H7TQhh_2I9UNLc,1135
639
642
  vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config.py,sha256=NUJXSSLxOxVAGOoQj74m5UqjCTCCeEIgbWGP6kM2Fck,1200
640
643
  vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data.py,sha256=IdlTWDda1061PwsHaoGDyB7-2lBVSus7Z8agcdmSOYE,905
641
644
  vellum/client/types/test_suite_run_prompt_sandbox_history_item_exec_config_data_request.py,sha256=0XxaQKR-pb__We2EDSoiKTcz3v-nKodIYtnwFXFQ_GM,912
@@ -647,6 +650,8 @@ vellum/client/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=0A
647
650
  vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=Omps96mVTbhyg8ZknhAdtAC4TU4J1OG_Y2yqwlovNbU,941
648
651
  vellum/client/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=n3rbUAmoqjn-U-C6GJL-zVJJf0n_J-6rLIeH0tm3Ixg,948
649
652
  vellum/client/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=tEknB5YPt5zLKTkXnsuWaPRkFPHpIDQImREmlONfMIo,1182
653
+ vellum/client/types/test_suite_run_workflow_sandbox_exec_config_data_request.py,sha256=Ay_JkgQmptHJbgbWoLQcr-c8pYFfsMqRCM0xxIdmQ3I,707
654
+ vellum/client/types/test_suite_run_workflow_sandbox_exec_config_request.py,sha256=mmNKQA6Qv0MMZkpS96NBdhZGBRYbUs2vQXCURnsCmw0,1149
650
655
  vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config.py,sha256=2scqgAbRo6j7cYV2NZO1VMio5WOwJG_97IxXVqC4G18,1214
651
656
  vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data.py,sha256=FPIw8GlWh5cH6af2_Y7wS98j_Zi9O0G1JIMBsej__i0,915
652
657
  vellum/client/types/test_suite_run_workflow_sandbox_history_item_exec_config_data_request.py,sha256=Q8aYzR-AJ18_s7KJfBZeb8jbFxhZVfk1qQvhO7ShGH0,922
@@ -803,7 +808,7 @@ vellum/evaluations/utils/env.py,sha256=Xj_nxsoU5ox06EOTjRopR4lrigQI6Le6qbWGltYoE
803
808
  vellum/evaluations/utils/exceptions.py,sha256=dXMAkzqbHV_AP5FjjbegPlfUE0zQDlpA3qOsoOJUxfg,49
804
809
  vellum/evaluations/utils/paginator.py,sha256=rEED_BJAXAM6tM1yMwHePNzszjq_tTq4NbQvi1jWQ_Q,697
805
810
  vellum/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
806
- vellum/plugins/pydantic.py,sha256=_kx82JIA050R67QAimgR7NQTuweSP7xLGW4qHLIepo4,3609
811
+ vellum/plugins/pydantic.py,sha256=j4ApZ5WyaoCX6v54qNoShhMFyft_uKWTkyAFz5wbcgg,3619
807
812
  vellum/plugins/utils.py,sha256=cPmxE9R2CK1bki2jKE8rB-G9zMf2pzHjSPDHFPXwd3Q,878
808
813
  vellum/plugins/vellum_mypy.py,sha256=QTuMSq6PiZW1dyTUZ5Bf1d4XkgFj0TKAgZLP8f4UgL4,27914
809
814
  vellum/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1305,6 +1310,8 @@ vellum/types/test_suite_run_metric_json_output.py,sha256=mZIXhFS0IoauRhNhwtO_nBe
1305
1310
  vellum/types/test_suite_run_metric_number_output.py,sha256=FRat-EjmPl4eyK307tPnQ8U3prAPsqgXVLdRmYXxaGw,173
1306
1311
  vellum/types/test_suite_run_metric_output.py,sha256=QvexO_ontwejyAQBipmrvTMxJRZrFu5ja_g8HBjDpiI,166
1307
1312
  vellum/types/test_suite_run_metric_string_output.py,sha256=_az-yxsYHgariEfKeFN1UtCyW1rXxCiOsVZj-INNqa8,173
1313
+ vellum/types/test_suite_run_prompt_sandbox_exec_config_data_request.py,sha256=_AVqGprc3VUZwDrnieSETimiJ3lEHxuuQlQEb29yfV4,192
1314
+ vellum/types/test_suite_run_prompt_sandbox_exec_config_request.py,sha256=wDlHjrkMPdexhv5lN4hr0BMprSLKohXjnALJx44N7CE,187
1308
1315
  vellum/types/test_suite_run_prompt_sandbox_history_item_exec_config.py,sha256=aShS-YpR-mxoj59s1pF1qSx7NWSrUSuDC59kXesT33Y,192
1309
1316
  vellum/types/test_suite_run_prompt_sandbox_history_item_exec_config_data.py,sha256=5E1ZUYAwlZBAzyurmLsHMhdQJZmI-_neQU49cyDQH_0,197
1310
1317
  vellum/types/test_suite_run_prompt_sandbox_history_item_exec_config_data_request.py,sha256=7JsZ1nGze0m2o4RvaJOpz6TcqDgCz29HhzzBPGr1eow,205
@@ -1316,6 +1323,8 @@ vellum/types/test_suite_run_workflow_release_tag_exec_config.py,sha256=yc9NhLbDb
1316
1323
  vellum/types/test_suite_run_workflow_release_tag_exec_config_data.py,sha256=g1i2knCRKE7ah_u96zvm1zIi5xfZTQFsGTDtCfMGBcE,190
1317
1324
  vellum/types/test_suite_run_workflow_release_tag_exec_config_data_request.py,sha256=e8JSECW9A0LT6Iv6PyAZOiSTczwg_954MYq4kGjn5DY,198
1318
1325
  vellum/types/test_suite_run_workflow_release_tag_exec_config_request.py,sha256=L2bYpTz9AEDwHXT1Ev9qMHLUStjjwP3iJMyTixdroOU,193
1326
+ vellum/types/test_suite_run_workflow_sandbox_exec_config_data_request.py,sha256=MEUFx67NIvckNSzQ-TY3iZy5p9QlO11tIxBq3G6bbR0,194
1327
+ vellum/types/test_suite_run_workflow_sandbox_exec_config_request.py,sha256=9XlGG4AggN37tpBdzwgniWIWivrbQ537OtLOhEsTGDQ,189
1319
1328
  vellum/types/test_suite_run_workflow_sandbox_history_item_exec_config.py,sha256=PMXrCIw1mn3tvdR-OwYxPToejzu8MNTHubgRwW2Ul68,194
1320
1329
  vellum/types/test_suite_run_workflow_sandbox_history_item_exec_config_data.py,sha256=vdh41Vg4O1UjQi1BsHBaLsfvxSbWbou73VPAGcSOkCc,199
1321
1330
  vellum/types/test_suite_run_workflow_sandbox_history_item_exec_config_data_request.py,sha256=An3z8020xLUVjvjJrW-Rqe_CPRQkuiuq740Z1SXB19Y,207
@@ -1474,11 +1483,11 @@ vellum/workflows/environment/environment.py,sha256=0XhJPBs8YASWmvPx8bkSdCvcbDmzp
1474
1483
  vellum/workflows/errors/__init__.py,sha256=tWGPu5xyAU8gRb8_bl0fL7OfU3wxQ9UH6qVwy4X4P_Q,113
1475
1484
  vellum/workflows/errors/types.py,sha256=tVW7Il9zalnwWzdoDLqYPIvRTOhXIv6FPORZAbU7n5Q,3640
1476
1485
  vellum/workflows/events/__init__.py,sha256=6pxxceJo2dcaRkWtkDAYlUQZ-PHBQSZytIoyuUK48Qw,759
1477
- vellum/workflows/events/node.py,sha256=jbmNHjdp331Q1IRK-AWtAxwF6Lidb9R7__N5rQuilE8,5401
1486
+ vellum/workflows/events/node.py,sha256=TaawUxKaZG8cv_GkiKnJmjOmC4Ic0wMlsxUduF2Rbpw,5446
1478
1487
  vellum/workflows/events/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1479
1488
  vellum/workflows/events/tests/test_event.py,sha256=WRxjOO1470rFH40O56RWjhonIdupW782h_FRAhIQZCQ,17823
1480
- vellum/workflows/events/types.py,sha256=cKXEZEZ4C_O38CH-qiu8nYSMy2DVJ66lQayJO5A-haU,5690
1481
- vellum/workflows/events/workflow.py,sha256=xdqU6WOexaAqzJbU2Zw42o2LJhK7SDPtTFO5REGv17I,7293
1489
+ vellum/workflows/events/types.py,sha256=LwgFlMRbptJvdPtPO1POUtGtbhGw7BSuvgHxNSgS7N8,4652
1490
+ vellum/workflows/events/workflow.py,sha256=WL6RDtlPnTHNGvR6Vk7KQG1AvgnOaBnnmSG8VZnYkKI,7338
1482
1491
  vellum/workflows/exceptions.py,sha256=NiBiR3ggfmPxBVqD-H1SqmjI-7mIn0EStSN1BqApvCM,1213
1483
1492
  vellum/workflows/expressions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1484
1493
  vellum/workflows/expressions/accessor.py,sha256=ItZF7fMLzVTqsdAiaXb5SiDupXmX0X9xbIus1W6hRds,1870
@@ -1565,7 +1574,7 @@ vellum/workflows/nodes/displayable/bases/inline_prompt_node/constants.py,sha256=
1565
1574
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py,sha256=rga24gkK9_STRhFwhBwGL7oHhTTZvLWS_rXHHrp85p4,8386
1566
1575
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1567
1576
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/test_inline_prompt_node.py,sha256=ZCXCZs-_OyPk4nqCpuWY-vw87lg92TDZ2tK_gckJ7mg,10450
1568
- vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py,sha256=14ONjhpgDaLSIthhLnWDKv79rysU2VsZDNakY4kDSzI,5804
1577
+ vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py,sha256=lwH7mfiHcRKFxU1Y9IPQVgb3o5trssuhwlKnA30rTWk,9777
1569
1578
  vellum/workflows/nodes/displayable/bases/search_node.py,sha256=3UtbqY3QO4kzfJHbmUNZGnEEfJmaoiF892u8H6TGjp8,5381
1570
1579
  vellum/workflows/nodes/displayable/bases/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1571
1580
  vellum/workflows/nodes/displayable/bases/tests/test_utils.py,sha256=eqdqbKNRWVMDPevgwLg1i6YK0g4L4bCy-7xCBN5yYZI,3156
@@ -1580,14 +1589,16 @@ vellum/workflows/nodes/displayable/code_execution_node/tests/test_code_execution
1580
1589
  vellum/workflows/nodes/displayable/code_execution_node/utils.py,sha256=G-sc7yOL5g6rLk99X8HAbXNcLxRaqpju9IXq1iUwnQI,4470
1581
1590
  vellum/workflows/nodes/displayable/conditional_node/__init__.py,sha256=AS_EIqFdU1F9t8aLmbZU-rLh9ry6LCJ0uj0D8F0L5Uw,72
1582
1591
  vellum/workflows/nodes/displayable/conditional_node/node.py,sha256=Qjfl33gZ3JEgxBA1EgzSUebboGvsARthIxxcQyvx5Gg,1152
1583
- vellum/workflows/nodes/displayable/conftest.py,sha256=tD_WIiw5WjFqnzgnGLtEZDaMj2XhQ1DptnBTKYeBbI0,5705
1592
+ vellum/workflows/nodes/displayable/conftest.py,sha256=K2kLM2JGAfcrmmd92u8DXInUO5klFdggPWblg5RVcx4,5729
1584
1593
  vellum/workflows/nodes/displayable/final_output_node/__init__.py,sha256=G7VXM4OWpubvSJtVkGmMNeqgb9GkM7qZT838eL18XU4,72
1585
1594
  vellum/workflows/nodes/displayable/final_output_node/node.py,sha256=PuQ0RvtAmoSIZ5En_92tym7gpSMEoiHgwu20-UDbC7o,2368
1586
1595
  vellum/workflows/nodes/displayable/final_output_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1587
1596
  vellum/workflows/nodes/displayable/final_output_node/tests/test_node.py,sha256=E6LQ74qZjY4Xi4avx2qdOCgGhF8pEcNLBh8cqYRkzMI,709
1588
1597
  vellum/workflows/nodes/displayable/guardrail_node/__init__.py,sha256=Ab5eXmOoBhyV4dMWdzh32HLUmnPIBEK_zFCT38C4Fng,68
1589
- vellum/workflows/nodes/displayable/guardrail_node/node.py,sha256=WzwE0CzKK2NLd1C-wHHDlm2C5bUbrPGp7-UpyE_5rkA,5349
1598
+ vellum/workflows/nodes/displayable/guardrail_node/node.py,sha256=d7C6M6aIZ33GyjIxn24Vd-xyWMGtxm6Hs8nszyl4tNU,5356
1590
1599
  vellum/workflows/nodes/displayable/guardrail_node/test_node.py,sha256=KkLog-bjvPaUZUBciMH25lRHA5pDIrmUxNLVWY6oU34,4526
1600
+ vellum/workflows/nodes/displayable/guardrail_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1601
+ vellum/workflows/nodes/displayable/guardrail_node/tests/test_node.py,sha256=X2pd6TI8miYxIa7rgvs1pHTEreyWcf77EyR0_Jsa700,2055
1591
1602
  vellum/workflows/nodes/displayable/inline_prompt_node/__init__.py,sha256=gSUOoEZLlrx35-tQhSAd3An8WDwBqyiQh-sIebLU9wU,74
1592
1603
  vellum/workflows/nodes/displayable/inline_prompt_node/node.py,sha256=8RXZqWMzViUjFfbpmcy1gkSsKnEpci8BGwsuPYv4xMQ,3380
1593
1604
  vellum/workflows/nodes/displayable/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1599,7 +1610,7 @@ vellum/workflows/nodes/displayable/note_node/node.py,sha256=sIN1VBQ7zeT3GhN0kupX
1599
1610
  vellum/workflows/nodes/displayable/prompt_deployment_node/__init__.py,sha256=krX1Hds-TSVYZsx0wJFX4wsAKkEFYOX1ifwRGiIM-EA,82
1600
1611
  vellum/workflows/nodes/displayable/prompt_deployment_node/node.py,sha256=eUiQYdqJTrWhVcUgGAPJYEnRk6S71Yrzu5-c-XcVFs4,3243
1601
1612
  vellum/workflows/nodes/displayable/prompt_deployment_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1602
- vellum/workflows/nodes/displayable/prompt_deployment_node/tests/test_node.py,sha256=nOFiv2s8MyRf6c6aQxJPhN6a0mk1dFL2HI8Gkfc09sk,7288
1613
+ vellum/workflows/nodes/displayable/prompt_deployment_node/tests/test_node.py,sha256=AM-W95ck2GWmG2skC3Lkx1Ng-RUJXg0185J1mdt9sDs,18772
1603
1614
  vellum/workflows/nodes/displayable/search_node/__init__.py,sha256=hpBpvbrDYf43DElRZFLzieSn8weXiwNiiNOJurERQbs,62
1604
1615
  vellum/workflows/nodes/displayable/search_node/node.py,sha256=_VHHuTNN4icZBgc7O5U9SVKrv1zgKipU72fOtxTyrQU,1453
1605
1616
  vellum/workflows/nodes/displayable/search_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1643,10 +1654,10 @@ vellum/workflows/references/workflow_input.py,sha256=lq7BiiLBHQNP-vP2p1TN2QBq0_L
1643
1654
  vellum/workflows/resolvers/__init__.py,sha256=eH6hTvZO4IciDaf_cf7aM2vs-DkBDyJPycOQevJxQnI,82
1644
1655
  vellum/workflows/resolvers/base.py,sha256=WHra9LRtlTuB1jmuNqkfVE2JUgB61Cyntn8f0b0WZg4,411
1645
1656
  vellum/workflows/runner/__init__.py,sha256=i1iG5sAhtpdsrlvwgH6B-m49JsINkiWyPWs8vyT-bqM,72
1646
- vellum/workflows/runner/runner.py,sha256=ww4fjZJBENkB5HJxdj92kTz7k_EyifCeAreupy5qIxs,31813
1657
+ vellum/workflows/runner/runner.py,sha256=94A--MUhXNct3kNMsdZrEKsjNsFo7mBQvx-Ddz3qddI,31949
1647
1658
  vellum/workflows/sandbox.py,sha256=GVJzVjMuYzOBnSrboB0_6MMRZWBluAyQ2o7syeaeBd0,2235
1648
1659
  vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
1649
- vellum/workflows/state/base.py,sha256=uQcWWgW-a0rUbfGnkgm5qtEonP4OkZusDRcKEP7PtPA,16970
1660
+ vellum/workflows/state/base.py,sha256=nLXsa85JSVb-4lFN0i2I1tzJq51zbcPDD12ps-SwRGQ,20894
1650
1661
  vellum/workflows/state/context.py,sha256=KOAI1wEGn8dGmhmAemJaf4SZbitP3jpIBcwKfznQaRE,3076
1651
1662
  vellum/workflows/state/encoder.py,sha256=TnOQojc5lTQ83g9QbpA4UCqShJvutmTMxbpKt-9gNe4,1911
1652
1663
  vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
@@ -1657,7 +1668,8 @@ vellum/workflows/tests/test_sandbox.py,sha256=JKwaluI-lODQo7Ek9sjDstjL_WTdSqUlVi
1657
1668
  vellum/workflows/tests/test_undefined.py,sha256=zMCVliCXVNLrlC6hEGyOWDnQADJ2g83yc5FIM33zuo8,353
1658
1669
  vellum/workflows/types/__init__.py,sha256=KxUTMBGzuRCfiMqzzsykOeVvrrkaZmTTo1a7SLu8gRM,68
1659
1670
  vellum/workflows/types/core.py,sha256=kMQremh_I8egXpiKmtMQbB6e3OczAWiRnnTq5V6xlD0,928
1660
- vellum/workflows/types/generics.py,sha256=9HzFvtcF8qpn1wcsly7er250MMwdS9r-BjSVco9UBj4,584
1671
+ vellum/workflows/types/definition.py,sha256=z81CL_u0FJol-9yUIqoXNTYAARtU8x__c6s-f4rb5c8,2335
1672
+ vellum/workflows/types/generics.py,sha256=tKXz0LwWJGKw1YGudyl9_yFDrRgU6yYV1yJV1Zv-LTw,1430
1661
1673
  vellum/workflows/types/stack.py,sha256=RDSGLkcV612ge8UuAH9TZiEGXxJt0Av2-H5rfzrTVVI,1014
1662
1674
  vellum/workflows/types/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1663
1675
  vellum/workflows/types/tests/test_utils.py,sha256=y2bj4O8-ykPRRRocdD98NdnQz6ydSCoMBp6rECPPqE8,2536
@@ -1674,13 +1686,13 @@ vellum/workflows/utils/uuids.py,sha256=DFzPv9RCvsKhvdTEIQyfSek2A31D6S_QcmeLPbgrg
1674
1686
  vellum/workflows/utils/vellum_variables.py,sha256=UiGlUh0a8vel2FbW3w-xbHxSv_jNutkDdqMVtP_b42A,3385
1675
1687
  vellum/workflows/vellum_client.py,sha256=GxOy3dX6A04xiY69vPv1S4YGuQ_TMxwHi6WRMimQBBE,762
1676
1688
  vellum/workflows/workflows/__init__.py,sha256=KY45TqvavCCvXIkyCFMEc0dc6jTMOUci93U2DUrlZYc,66
1677
- vellum/workflows/workflows/base.py,sha256=ezmWRtgY6mQjU-u_iQchj8qYrw1txE-Q5E4PxWgvvfI,23301
1689
+ vellum/workflows/workflows/base.py,sha256=zdBOFZaCs5jNYrsYsnPtyD58qTne5oOwDLxw42zKwkY,23784
1678
1690
  vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnadGsrSZGa7t7LpJA,2008
1679
1691
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1680
- vellum/workflows/workflows/tests/test_base_workflow.py,sha256=Xbk30MaW8sW6XUNEgIhhJRGvX3sc0aorLh_tY8W2xiQ,9445
1692
+ vellum/workflows/workflows/tests/test_base_workflow.py,sha256=rBLsUsoLdRRQ-JBEfUivV9qVCjdqaiDsCPNyHvqz9fc,17361
1681
1693
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1682
- vellum_ai-0.14.37.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1683
- vellum_ai-0.14.37.dist-info/METADATA,sha256=8eaeLLw8xcvlKlxhZMTGTpog1_azd7KIGDXX1d-mPBg,5484
1684
- vellum_ai-0.14.37.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1685
- vellum_ai-0.14.37.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1686
- vellum_ai-0.14.37.dist-info/RECORD,,
1694
+ vellum_ai-0.14.38.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1695
+ vellum_ai-0.14.38.dist-info/METADATA,sha256=4W7jvgNhHoXv4MdRLeJNEKfyvBGhEkxXrKTVcx-RA9E,5484
1696
+ vellum_ai-0.14.38.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1697
+ vellum_ai-0.14.38.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1698
+ vellum_ai-0.14.38.dist-info/RECORD,,
@@ -19,11 +19,6 @@ from vellum_ee.workflows.display.editor.types import NodeDisplayPosition # noqa
19
19
  from vellum_ee.workflows.display.utils.vellum import NodeInputValuePointerRule
20
20
 
21
21
 
22
- class CodeResourceDefinition(UniversalBaseModel):
23
- name: str
24
- module: List[str]
25
-
26
-
27
22
  @dataclass
28
23
  class WorkflowMetaVellumDisplayOverrides(WorkflowMetaDisplayOverrides):
29
24
  """