vellum-ai 1.0.11__py3-none-any.whl → 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. vellum/__init__.py +2 -2
  2. vellum/client/__init__.py +0 -4
  3. vellum/client/core/client_wrapper.py +2 -2
  4. vellum/client/reference.md +2 -3
  5. vellum/client/resources/__init__.py +0 -2
  6. vellum/client/resources/workflow_deployments/client.py +119 -0
  7. vellum/client/types/__init__.py +2 -0
  8. vellum/client/types/api_request_parent_context.py +1 -0
  9. vellum/client/types/external_parent_context.py +36 -0
  10. vellum/client/types/node_execution_fulfilled_event.py +1 -0
  11. vellum/client/types/node_execution_initiated_event.py +1 -0
  12. vellum/client/types/node_execution_paused_event.py +1 -0
  13. vellum/client/types/node_execution_rejected_event.py +1 -0
  14. vellum/client/types/node_execution_resumed_event.py +1 -0
  15. vellum/client/types/node_execution_span.py +1 -0
  16. vellum/client/types/node_execution_span_attributes.py +1 -0
  17. vellum/client/types/node_execution_streaming_event.py +1 -0
  18. vellum/client/types/node_parent_context.py +1 -0
  19. vellum/client/types/parent_context.py +2 -0
  20. vellum/client/types/prompt_deployment_parent_context.py +1 -0
  21. vellum/client/types/slim_workflow_execution_read.py +1 -0
  22. vellum/client/types/span_link.py +1 -0
  23. vellum/client/types/workflow_deployment_event_executions_response.py +1 -0
  24. vellum/client/types/workflow_deployment_parent_context.py +1 -0
  25. vellum/client/types/workflow_event_execution_read.py +1 -0
  26. vellum/client/types/workflow_execution_detail.py +1 -0
  27. vellum/client/types/workflow_execution_fulfilled_event.py +1 -0
  28. vellum/client/types/workflow_execution_initiated_event.py +1 -0
  29. vellum/client/types/workflow_execution_paused_event.py +1 -0
  30. vellum/client/types/workflow_execution_rejected_event.py +1 -0
  31. vellum/client/types/workflow_execution_resumed_event.py +1 -0
  32. vellum/client/types/workflow_execution_snapshotted_event.py +1 -0
  33. vellum/client/types/workflow_execution_span.py +1 -0
  34. vellum/client/types/workflow_execution_span_attributes.py +1 -0
  35. vellum/client/types/workflow_execution_streaming_event.py +1 -0
  36. vellum/client/types/workflow_parent_context.py +1 -0
  37. vellum/client/types/workflow_sandbox_parent_context.py +1 -0
  38. vellum/{resources/release_reviews/__init__.py → types/external_parent_context.py} +1 -1
  39. vellum/workflows/emitters/vellum_emitter.py +3 -2
  40. vellum/workflows/events/types.py +6 -0
  41. vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py +5 -15
  42. vellum/workflows/nodes/displayable/tool_calling_node/node.py +6 -0
  43. vellum/workflows/nodes/displayable/tool_calling_node/utils.py +75 -0
  44. vellum/workflows/state/context.py +13 -2
  45. vellum/workflows/types/definition.py +2 -2
  46. vellum/workflows/types/tests/test_definition.py +2 -3
  47. vellum/workflows/utils/functions.py +1 -1
  48. vellum/workflows/utils/tests/test_functions.py +3 -3
  49. {vellum_ai-1.0.11.dist-info → vellum_ai-1.1.0.dist-info}/METADATA +1 -1
  50. {vellum_ai-1.0.11.dist-info → vellum_ai-1.1.0.dist-info}/RECORD +57 -58
  51. vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +93 -0
  52. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py +98 -0
  53. vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py +1 -1
  54. vellum_ee/workflows/display/utils/expressions.py +1 -1
  55. vellum/client/resources/release_reviews/__init__.py +0 -2
  56. vellum/client/resources/release_reviews/client.py +0 -139
  57. vellum/resources/release_reviews/client.py +0 -3
  58. {vellum_ai-1.0.11.dist-info → vellum_ai-1.1.0.dist-info}/LICENSE +0 -0
  59. {vellum_ai-1.0.11.dist-info → vellum_ai-1.1.0.dist-info}/WHEEL +0 -0
  60. {vellum_ai-1.0.11.dist-info → vellum_ai-1.1.0.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,3 @@
1
- from unittest import mock
2
1
  from uuid import uuid4
3
2
  from typing import Any, Iterator, List
4
3
 
@@ -64,17 +63,8 @@ def test_text_prompt_deployment_node__basic(vellum_client):
64
63
  assert text_output.value == "Hello, world!"
65
64
 
66
65
  # AND we should have made the expected call to stream the prompt execution
67
- vellum_client.execute_prompt_stream.assert_called_once_with(
68
- expand_meta=None,
69
- expand_raw=None,
70
- external_id=None,
71
- inputs=[],
72
- metadata=None,
73
- prompt_deployment_id=None,
74
- prompt_deployment_name="my-deployment",
75
- raw_overrides=None,
76
- release_tag="LATEST",
77
- request_options={
78
- "additional_body_parameters": {"execution_context": {"parent_context": None, "trace_id": mock.ANY}}
79
- },
80
- )
66
+ vellum_client.execute_prompt_stream.assert_called_once()
67
+ _, call_kwargs = vellum_client.execute_prompt_stream.call_args
68
+ exec_ctx = call_kwargs["request_options"]["additional_body_parameters"]["execution_context"]
69
+ assert exec_ctx["parent_context"] is not None
70
+ assert exec_ctx["parent_context"]["type"] == "EXTERNAL"
@@ -15,6 +15,7 @@ from vellum.workflows.nodes.displayable.tool_calling_node.utils import (
15
15
  create_else_node,
16
16
  create_function_node,
17
17
  create_mcp_tool_node,
18
+ create_router_node,
18
19
  create_tool_router_node,
19
20
  get_function_name,
20
21
  get_mcp_tool_name,
@@ -145,6 +146,11 @@ class ToolCallingNode(BaseNode[StateType], Generic[StateType]):
145
146
  max_prompt_iterations=self.max_prompt_iterations,
146
147
  )
147
148
 
149
+ self.router_node = create_router_node(
150
+ functions=self.functions,
151
+ tool_router_node=self.tool_router_node,
152
+ )
153
+
148
154
  self._function_nodes = {}
149
155
  for function in self.functions:
150
156
  if isinstance(function, MCPServer):
@@ -112,6 +112,18 @@ class ToolRouterNode(InlinePromptNode[ToolCallingState]):
112
112
  yield output
113
113
 
114
114
 
115
+ class RouterNode(BaseNode[ToolCallingState]):
116
+ """Router node that handles routing to function nodes based on outputs."""
117
+
118
+ class Trigger(BaseNode.Trigger):
119
+ merge_behavior = MergeBehavior.AWAIT_ATTRIBUTES
120
+
121
+ def run(self) -> Iterator[BaseOutput]:
122
+ # Router node doesn't process outputs or create chat messages
123
+ # It just handles the routing logic via its ports
124
+ yield from []
125
+
126
+
115
127
  class DynamicSubworkflowDeploymentNode(SubworkflowDeploymentNode[ToolCallingState], FunctionCallNodeMixin):
116
128
  """Node that executes a deployment definition with function call output."""
117
129
 
@@ -423,6 +435,69 @@ def create_tool_router_node(
423
435
  return node
424
436
 
425
437
 
438
+ def create_router_node(
439
+ functions: List[Tool],
440
+ tool_router_node: Type[ToolRouterNode],
441
+ ) -> Type[RouterNode]:
442
+ """Create a RouterNode with the same ports as ToolRouterNode."""
443
+
444
+ if functions and len(functions) > 0:
445
+ # Create dynamic ports and convert functions in a single loop
446
+ Ports = type("Ports", (), {})
447
+
448
+ def create_port_condition(fn_name):
449
+ return Port.on_if(
450
+ LazyReference(
451
+ lambda: (
452
+ ToolCallingState.current_prompt_output_index.less_than(
453
+ tool_router_node.Outputs.results.length()
454
+ )
455
+ & tool_router_node.Outputs.results[ToolCallingState.current_prompt_output_index]["type"].equals(
456
+ "FUNCTION_CALL"
457
+ )
458
+ & tool_router_node.Outputs.results[ToolCallingState.current_prompt_output_index]["value"][
459
+ "name"
460
+ ].equals(fn_name)
461
+ )
462
+ )
463
+ )
464
+
465
+ for function in functions:
466
+ if isinstance(function, ComposioToolDefinition):
467
+ function_name = get_function_name(function)
468
+ port = create_port_condition(function_name)
469
+ setattr(Ports, function_name, port)
470
+ elif isinstance(function, MCPServer):
471
+ tool_functions: List[MCPToolDefinition] = hydrate_mcp_tool_definitions(function)
472
+ for tool_function in tool_functions:
473
+ name = get_mcp_tool_name(tool_function)
474
+ port = create_port_condition(name)
475
+ setattr(Ports, name, port)
476
+ else:
477
+ function_name = get_function_name(function)
478
+ port = create_port_condition(function_name)
479
+ setattr(Ports, function_name, port)
480
+
481
+ # Add the else port for when no function conditions match
482
+ setattr(Ports, "default", Port.on_else())
483
+ else:
484
+ # If no functions exist, create a simple Ports class with just a default port
485
+ Ports = type("Ports", (), {"default": Port(default=True)})
486
+
487
+ node = cast(
488
+ Type[RouterNode],
489
+ type(
490
+ "RouterNode",
491
+ (RouterNode,),
492
+ {
493
+ "Ports": Ports,
494
+ "__module__": __name__,
495
+ },
496
+ ),
497
+ )
498
+ return node
499
+
500
+
426
501
  def create_function_node(
427
502
  function: ToolBase,
428
503
  tool_router_node: Type[ToolRouterNode],
@@ -1,9 +1,11 @@
1
1
  from functools import cached_property
2
2
  from queue import Queue
3
+ from uuid import uuid4
3
4
  from typing import TYPE_CHECKING, Dict, List, Optional, Type
4
5
 
5
6
  from vellum import Vellum
6
7
  from vellum.workflows.context import ExecutionContext, get_execution_context
8
+ from vellum.workflows.events.types import ExternalParentContext
7
9
  from vellum.workflows.nodes.mocks import MockNodeExecution, MockNodeExecutionArg
8
10
  from vellum.workflows.outputs.base import BaseOutputs
9
11
  from vellum.workflows.references.constant import ConstantValueReference
@@ -25,8 +27,17 @@ class WorkflowContext:
25
27
  self._event_queue: Optional[Queue["WorkflowEvent"]] = None
26
28
  self._node_output_mocks_map: Dict[Type[BaseOutputs], List[MockNodeExecution]] = {}
27
29
  self._execution_context = get_execution_context()
28
- if not self._execution_context.parent_context and execution_context:
29
- self._execution_context = execution_context
30
+
31
+ if execution_context is not None:
32
+
33
+ self._execution_context.trace_id = execution_context.trace_id
34
+
35
+ if execution_context.parent_context is not None:
36
+ self._execution_context.parent_context = execution_context.parent_context
37
+
38
+ if self._execution_context.parent_context is None:
39
+ self._execution_context.parent_context = ExternalParentContext(span_id=uuid4())
40
+
30
41
  self._generated_files = generated_files
31
42
 
32
43
  @cached_property
@@ -8,7 +8,6 @@ from pydantic import BeforeValidator
8
8
 
9
9
  from vellum.client.core.pydantic_utilities import UniversalBaseModel
10
10
  from vellum.client.types.code_resource_definition import CodeResourceDefinition as ClientCodeResourceDefinition
11
- from vellum.client.types.vellum_secret import VellumSecret
12
11
  from vellum.workflows.constants import AuthorizationType
13
12
  from vellum.workflows.references.environment_variable import EnvironmentVariableReference
14
13
 
@@ -120,12 +119,13 @@ class ComposioToolDefinition(UniversalBaseModel):
120
119
 
121
120
 
122
121
  class MCPServer(UniversalBaseModel):
122
+ type: Literal["MCP_SERVER"] = "MCP_SERVER"
123
123
  name: str
124
124
  url: str
125
125
  authorization_type: AuthorizationType = AuthorizationType.BEARER_TOKEN
126
126
  bearer_token_value: Optional[Union[str, EnvironmentVariableReference]] = None
127
127
  api_key_header_key: Optional[str] = None
128
- api_key_header_value: Optional[Union[str, VellumSecret]] = None
128
+ api_key_header_value: Optional[Union[str, EnvironmentVariableReference]] = None
129
129
 
130
130
  model_config = {"arbitrary_types_allowed": True}
131
131
 
@@ -1,7 +1,6 @@
1
1
  import pytest
2
2
  from uuid import UUID
3
3
 
4
- from vellum.client.types.vellum_secret import VellumSecret
5
4
  from vellum.workflows.constants import AuthorizationType
6
5
  from vellum.workflows.references.environment_variable import EnvironmentVariableReference
7
6
  from vellum.workflows.types.definition import ComposioToolDefinition, DeploymentDefinition, MCPServer, MCPToolDefinition
@@ -98,7 +97,7 @@ def test_mcp_tool_definition_creation_api_key():
98
97
  url="https://api.githubcopilot.com/mcp/",
99
98
  authorization_type=AuthorizationType.API_KEY,
100
99
  api_key_header_key="Authorization",
101
- api_key_header_value=VellumSecret(name="GITHUB_PERSONAL_ACCESS_TOKEN"),
100
+ api_key_header_value=EnvironmentVariableReference(name="GITHUB_PERSONAL_ACCESS_TOKEN"),
102
101
  ),
103
102
  parameters={
104
103
  "type": "object",
@@ -115,7 +114,7 @@ def test_mcp_tool_definition_creation_api_key():
115
114
  assert mcp_tool.server.url == "https://api.githubcopilot.com/mcp/"
116
115
  assert mcp_tool.server.authorization_type == AuthorizationType.API_KEY
117
116
  assert mcp_tool.server.api_key_header_key == "Authorization"
118
- assert isinstance(mcp_tool.server.api_key_header_value, VellumSecret)
117
+ assert isinstance(mcp_tool.server.api_key_header_value, EnvironmentVariableReference)
119
118
  assert mcp_tool.server.api_key_header_value.name == "GITHUB_PERSONAL_ACCESS_TOKEN"
120
119
  assert mcp_tool.parameters == {
121
120
  "type": "object",
@@ -221,7 +221,7 @@ def compile_workflow_deployment_function_definition(
221
221
  deployment = deployment_config["deployment"]
222
222
  release_tag = deployment_config["release_tag"]
223
223
 
224
- workflow_deployment_release = vellum_client.release_reviews.retrieve_workflow_deployment_release(
224
+ workflow_deployment_release = vellum_client.workflow_deployments.retrieve_workflow_deployment_release(
225
225
  deployment, release_tag
226
226
  )
227
227
 
@@ -448,7 +448,7 @@ def test_compile_workflow_deployment_function_definition__just_name():
448
448
  mock_release = Mock()
449
449
  mock_release.workflow_version.input_variables = []
450
450
  mock_release.description = "This is a test deployment"
451
- mock_client.release_reviews.retrieve_workflow_deployment_release.return_value = mock_release
451
+ mock_client.workflow_deployments.retrieve_workflow_deployment_release.return_value = mock_release
452
452
 
453
453
  deployment_config = {"deployment": "my_deployment", "release_tag": "latest"}
454
454
 
@@ -494,7 +494,7 @@ def test_compile_workflow_deployment_function_definition__all_args():
494
494
 
495
495
  mock_release.workflow_version.input_variables = mock_inputs
496
496
  mock_release.description = "This is a test deployment"
497
- mock_client.release_reviews.retrieve_workflow_deployment_release.return_value = mock_release
497
+ mock_client.workflow_deployments.retrieve_workflow_deployment_release.return_value = mock_release
498
498
 
499
499
  deployment_config = {"deployment": "my_deployment", "release_tag": "latest"}
500
500
 
@@ -562,7 +562,7 @@ def test_compile_workflow_deployment_function_definition__defaults():
562
562
 
563
563
  mock_release.workflow_version.input_variables = mock_inputs
564
564
  mock_release.description = "This is a test deployment"
565
- mock_client.release_reviews.retrieve_workflow_deployment_release.return_value = mock_release
565
+ mock_client.workflow_deployments.retrieve_workflow_deployment_release.return_value = mock_release
566
566
 
567
567
  deployment_config = {"deployment": "my_deployment", "release_tag": "latest"}
568
568
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 1.0.11
3
+ Version: 1.1.0
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.9,<4.0
@@ -63,7 +63,7 @@ vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=h93ysol
63
63
  vellum_ee/workflows/display/nodes/vellum/tests/test_search_node.py,sha256=KvByxgbUkVyfPIVxTUBUk6a92JiJMi8eReZWxzfPExU,3864
64
64
  vellum_ee/workflows/display/nodes/vellum/tests/test_subworkflow_deployment_node.py,sha256=BUzHJgjdWnPeZxjFjHfDBKnbFjYjnbXPjc-1hne1B2Y,3965
65
65
  vellum_ee/workflows/display/nodes/vellum/tests/test_templating_node.py,sha256=LSk2gx9TpGXbAqKe8dggQW8yJZqj-Cf0EGJFeGGlEcw,3321
66
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=bSMWCwD-niSx3MQPtgsLXjIf6zynQxZdpmeaOM6H3QA,4580
66
+ vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=FlltEqHE5qdRprlDrSYrnnA1nJVtuVoXof-zOT2EIW0,8646
67
67
  vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=Khjsb53PKpZuyhKoRMgKAL45eGp5hZqXvHmVeQWRw4w,2289
68
68
  vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=rHybfUAWwa0LlstQTNthGb-zYXrUCLADFtn_4SGsbw8,4807
69
69
  vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=z9Omo676RRc7mQjLoL7hjiHhUj0OWVLhrrb97YTN4QA,4086
@@ -96,8 +96,9 @@ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_templating_n
96
96
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_terminal_node_serialization.py,sha256=hDWtKXmGI1CKhTwTNqpu_d5RkE5n7SolMLtgd87KqTI,3856
97
97
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_composio_serialization.py,sha256=AUfULtIangNYkvLH3jd2Ar8X5ulW4tGmezeCfMmXFUU,3697
98
98
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_inline_workflow_serialization.py,sha256=4t1lkN2nsZF6lFqP6QnskUQWJlhasF8C2_f6atzk8ZY,26298
99
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_mcp_serialization.py,sha256=InTdnaFHWO5sRJX41PMZ_rLG8uVxH_loPf1wuahYaNQ,4303
99
100
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_serialization.py,sha256=B0rDsCvO24qPp0gkmj8SdTDY5CxZYkvKwknsKBuAPyA,10017
100
- vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=mova0sPD3evHiHIN1O0VynxlCp-uOcEIKve5Pd_oCDg,4069
101
+ vellum_ee/workflows/display/tests/workflow_serialization/test_basic_tool_calling_node_workflow_deployment_serialization.py,sha256=XIZZr5POo2NLn2uEWm9EC3rejeBMoO4X-JtzTH6mvp4,4074
101
102
  vellum_ee/workflows/display/tests/workflow_serialization/test_basic_try_node_serialization.py,sha256=pLCyMScV88DTBXRH7jXaXOEA1GBq8NIipCUFwIAWnwI,2771
102
103
  vellum_ee/workflows/display/tests/workflow_serialization/test_complex_terminal_node_serialization.py,sha256=J4ouI8KxbMfxQP2Zq_9cWMGYgbjCWmKzjCJEtnSJb0I,5829
103
104
  vellum_ee/workflows/display/tests/workflow_serialization/test_workflow_input_parameterization_error.py,sha256=vAdmn3YTBDpo55znbydQxsgg9ASqHcvsUPwiBR_7wfo,1461
@@ -105,7 +106,7 @@ vellum_ee/workflows/display/types.py,sha256=i4T7ElU5b5h-nA1i3scmEhO1BqmNDc4eJDHa
105
106
  vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
107
  vellum_ee/workflows/display/utils/auto_layout.py,sha256=f4GiLn_LazweupfqTpubcdtdfE_vrOcmZudSsnYIY9E,3906
107
108
  vellum_ee/workflows/display/utils/exceptions.py,sha256=LSwwxCYNxFkf5XMUcFkaZKpQ13OSrI7y_bpEUwbKVk0,169
108
- vellum_ee/workflows/display/utils/expressions.py,sha256=YZjd6wrOkmmnTe5LstKaVaBqmR8Q8XS81QzSFwkLtN0,16324
109
+ vellum_ee/workflows/display/utils/expressions.py,sha256=UvRnkwfKTtE6ZbxG3vNzFtOoWg4s5s7dUWte4-M-D5E,16329
109
110
  vellum_ee/workflows/display/utils/registry.py,sha256=fWIm5Jj-10gNFjgn34iBu4RWv3Vd15ijtSN0V97bpW8,1513
110
111
  vellum_ee/workflows/display/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
112
  vellum_ee/workflows/display/utils/tests/test_auto_layout.py,sha256=vfXI769418s9vda5Gb5NFBH747WMOwSgHRXeLCTLVm8,2356
@@ -140,12 +141,12 @@ vellum_ee/workflows/tests/test_display_meta.py,sha256=PkXJVnMZs9GNooDkd59n4YTBAX
140
141
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=EVrCRAP0lpvd0GIDlg2tnGfJzDNooNDXPfGFPLAqmbI,1870
141
142
  vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
142
143
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
143
- vellum/__init__.py,sha256=tD6Fm-ml3pDVFPucRvSr5p0uRoEodHXxs6FHATqQU5o,43103
144
+ vellum/__init__.py,sha256=d6HOicr5YrsgNg6BQStVucKavziG1CbwoLaQ7MaQAQ0,43115
144
145
  vellum/client/README.md,sha256=Dle5iytCXxP1pNeNd7uZyhFo0rl7tp7vU7s8gmi10OQ,4863
145
- vellum/client/__init__.py,sha256=KmkyOgReuTsjmXF3WC_dPQ9QqJgYrB3Sr8_LcSUIQyI,125258
146
+ vellum/client/__init__.py,sha256=yBO_QGwT5eVEZ0zvk4Mfg7W8AdgAnulf5lIMAX2bX9I,124936
146
147
  vellum/client/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
147
148
  vellum/client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
148
- vellum/client/core/client_wrapper.py,sha256=GLUu-tM9O4VyvaRt1Uz-BgKMqUFNR3H4hdD14V7NGqM,2385
149
+ vellum/client/core/client_wrapper.py,sha256=PWK7ac7kf5xvOGz7Xxgf6TnsYNIlkBWEOFQQObsCKBk,2383
149
150
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
150
151
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
151
152
  vellum/client/core/http_client.py,sha256=cKs2w0ybDBk1wHQf-fTALm_MmvaMe3cZKcYJxqmCxkE,19539
@@ -161,8 +162,8 @@ vellum/client/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcs
161
162
  vellum/client/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
162
163
  vellum/client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
163
164
  vellum/client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
164
- vellum/client/reference.md,sha256=XI2rD7nVPOwmVSp8K46bKD3OsCT9lrhg-0wrpZY-RW8,93524
165
- vellum/client/resources/__init__.py,sha256=z0K2LxPPq_GmM1TmLmfm5VPfVaWW-s3rOmTeD2N5A8E,1607
165
+ vellum/client/reference.md,sha256=TZd5N6v2KJipoB_aeTw9HG6-S-8RNtgUgecaaCiTIs4,93521
166
+ vellum/client/resources/__init__.py,sha256=Hyb51zNnMEHvW5fu448E_9ZD3-ZYRqNIqt6LgNAoa2M,1563
166
167
  vellum/client/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
167
168
  vellum/client/resources/ad_hoc/client.py,sha256=iPKL9L3BpQhiGhjCD20Q99dHZrDnkfKKxMExVOoMkGU,28001
168
169
  vellum/client/resources/container_images/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -190,8 +191,6 @@ vellum/client/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKT
190
191
  vellum/client/resources/organizations/client.py,sha256=5Y4Umjlpm24zgvG_PYHqJqpvjmEwG5kH-CM5L4ZguCE,3763
191
192
  vellum/client/resources/prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
192
193
  vellum/client/resources/prompts/client.py,sha256=Ai2179Qeq3H3f7HjeAZ_kjsk6-LryLE6QOEa5wfgnVk,15812
193
- vellum/client/resources/release_reviews/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
194
- vellum/client/resources/release_reviews/client.py,sha256=nlTpT--FT3D8pDnTyZtjV2QcGZ-4MB1LuM6KfkCmlXM,5182
195
194
  vellum/client/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
196
195
  vellum/client/resources/sandboxes/client.py,sha256=EVhx8n8Lc_YL0Aw7fAsPHr0ZngfjgSWT2eheo9DE36c,18018
197
196
  vellum/client/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -199,7 +198,7 @@ vellum/client/resources/test_suite_runs/client.py,sha256=jrZtWgZKyOLHnEScn6AmCWT
199
198
  vellum/client/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
200
199
  vellum/client/resources/test_suites/client.py,sha256=yFwr8HVOSKihJRtoHekNUDkNZejeYSuf5m4-EHomUuc,27929
201
200
  vellum/client/resources/workflow_deployments/__init__.py,sha256=_duH6m1CDWcfqX6DTBNjO3ar4Xrl-f5PozMaTcT4Kow,251
202
- vellum/client/resources/workflow_deployments/client.py,sha256=_a6MsQ2Dyv5uDsRYXjj6NAHYdMb290TDqpTand5akhE,36202
201
+ vellum/client/resources/workflow_deployments/client.py,sha256=GdMpaIRKqx34ZdpZcC2Q6xVMhz8S0ySmDun0WPv0hOY,40689
203
202
  vellum/client/resources/workflow_deployments/types/__init__.py,sha256=W7DKJ1nduwhRckYLvH7wHLdaGH9MXHTZkxwG7FdTngY,340
204
203
  vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
205
204
  vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
@@ -215,7 +214,7 @@ vellum/client/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
215
214
  vellum/client/resources/workspace_secrets/client.py,sha256=l1FOj0f-IB5_oQ7iWiHopFK3lDXBqiaIc9g10W9PHFU,8381
216
215
  vellum/client/resources/workspaces/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
217
216
  vellum/client/resources/workspaces/client.py,sha256=61eFS8USOtHf4cFoT3dZmAMs6KGAVPbXjAolws2ftsQ,3683
218
- vellum/client/types/__init__.py,sha256=rmRNYcVM3VMP28jEp-ChnFQKPgHJxSLoA_07CSL_jyc,65257
217
+ vellum/client/types/__init__.py,sha256=Wp-Fc2cUyL0RbGDsbjT0V2Pf6YtUYgRajgXspQzE6Cg,65345
219
218
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
220
219
  vellum/client/types/ad_hoc_expand_meta.py,sha256=1gv-NCsy_6xBYupLvZH979yf2VMdxAU-l0y0ynMKZaw,1331
221
220
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=oDG60TpwK1YNSKhRsBbiP2O3ZF9PKR-M9chGIfKw4R4,1004
@@ -225,7 +224,7 @@ vellum/client/types/ad_hoc_streaming_prompt_execution_meta.py,sha256=OVSyUL81lpk
225
224
  vellum/client/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
226
225
  vellum/client/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
227
226
  vellum/client/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
228
- vellum/client/types/api_request_parent_context.py,sha256=7137NWvk4Lyx4jKZU1GhQYBneuSe34ObCuY4h2jXhoc,1389
227
+ vellum/client/types/api_request_parent_context.py,sha256=IQOUkgF3zT3LXk8u6wO7b7_U_UJEVkvr-JhUBaSPScs,1462
229
228
  vellum/client/types/api_version_enum.py,sha256=PObXD86PDEuoxBpLg2pIv_xEeHbN99r2tgAKnCiu5hk,166
230
229
  vellum/client/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
231
230
  vellum/client/types/array_chat_message_content_item.py,sha256=udxHZTZLQ1Ekg6X1D616a61crYxlQDz8QU6-CAHznrQ,625
@@ -336,6 +335,7 @@ vellum/client/types/execution_string_vellum_value.py,sha256=4w0ottwB5F2NL3uEXBBg
336
335
  vellum/client/types/execution_thinking_vellum_value.py,sha256=5WGuCVue3OMAdM881fDUFGjwOuWhImT6ALQq1qHyTks,866
337
336
  vellum/client/types/execution_vellum_value.py,sha256=gJ4UWA4KKzWGJZpEZGQV8Efqh27PmyWz6RZSsbtNux8,1088
338
337
  vellum/client/types/external_input_descriptor.py,sha256=ErOW2OfFMz1FDGmVY6NgiUBPsleaWhdJBekwFp4ru7o,805
338
+ vellum/client/types/external_parent_context.py,sha256=LoHBtOzuUtgFpc9iIGNuXihYzsUPOk46IJiHzJ2azr4,1457
339
339
  vellum/client/types/external_test_case_execution.py,sha256=TkO1CQcEI8LA7sdYJfAqhbdkj27sXEkF8VL7zBeDBM4,877
340
340
  vellum/client/types/external_test_case_execution_request.py,sha256=xd80GZg4FbZP6FZRIhZL9V1uFetI3bcCj-wzanco5tQ,921
341
341
  vellum/client/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py,sha256=XhNEBWd5qzFiXTestFPTusjxYfqW8j_kHBebCMfa58M,719
@@ -453,19 +453,19 @@ vellum/client/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2Zyb
453
453
  vellum/client/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
454
454
  vellum/client/types/new_member_join_behavior_enum.py,sha256=s9Z_6JKM6R4gPNtIJYCe84_DNBHucj6dHOx6bdFPoLo,258
455
455
  vellum/client/types/node_execution_fulfilled_body.py,sha256=lK9XgCT0d94DByMfMyMdBaLa2CvxLQ10f71y6hBic5c,885
456
- vellum/client/types/node_execution_fulfilled_event.py,sha256=4Ou_EWOsjFcglW9uJ8aIru2IXV3AbObFNoFkC3iveiM,1527
456
+ vellum/client/types/node_execution_fulfilled_event.py,sha256=Lr8Qrv4cG5R429L2e3EgeD59kRxt83eoGkGxUCWP7jo,1586
457
457
  vellum/client/types/node_execution_initiated_body.py,sha256=SFHnxmbHC_NWDyIjIkT8JPuTsaRpYIywQsTDUReqvkQ,737
458
- vellum/client/types/node_execution_initiated_event.py,sha256=yCiG2rwSS-9bXsO9yPtWjBH1WBc1zLl0GCnEiJ531ss,1527
458
+ vellum/client/types/node_execution_initiated_event.py,sha256=k0KlQr3yDEb-i89vcbFtwhPlvSlrGcd4s1F8KmsKbSw,1586
459
459
  vellum/client/types/node_execution_paused_body.py,sha256=JwGYfmQ1g9jCDM36wLgM6xkYo1YY7M4VIvCowzaNb5A,676
460
- vellum/client/types/node_execution_paused_event.py,sha256=p23Xp8y76ovoX1oF_gK7zmuNpbUEpTg-nf9nywlhMTc,1509
460
+ vellum/client/types/node_execution_paused_event.py,sha256=5J6elW6BKE-ctFSn--NpNB1P7B_dlP3_Grk1W2gSPx4,1568
461
461
  vellum/client/types/node_execution_rejected_body.py,sha256=lJhWcRzQHFyps5CZd3umO-_zKSdI0z7uf2anLKC8WtE,749
462
- vellum/client/types/node_execution_rejected_event.py,sha256=GJslSO6_7eyQrbUpXQ-7Ymtr-_VzqBRoivraoxHLblI,1521
462
+ vellum/client/types/node_execution_rejected_event.py,sha256=VeV01W7lciDFgpU8mhFXUBoteo7QMwCEzYnCygyMhys,1580
463
463
  vellum/client/types/node_execution_resumed_body.py,sha256=wJqWB_6VWY8BPMNWonr5bsgtmRjD3MyIqeV8jqKEYRQ,677
464
- vellum/client/types/node_execution_resumed_event.py,sha256=-m3RIaN7TG8-4LZQpf80xZ3CR0fBwePUe8BHBUqQ89Q,1515
465
- vellum/client/types/node_execution_span.py,sha256=0JXHo4ervh_sN0WAcdDB0vmpl692zTvgVDk6EOAIUcI,1413
466
- vellum/client/types/node_execution_span_attributes.py,sha256=yYVg7Hn-LhhDEQktnLCsZOPjxgd8jwks314MQB0Js8M,573
464
+ vellum/client/types/node_execution_resumed_event.py,sha256=PIO3wl3UO7KQ3urklcylBHgVhyGkK0Z6b9RCF8ow1wM,1574
465
+ vellum/client/types/node_execution_span.py,sha256=meP9DXOHJ7ALejhvH_PjFuuUwCzmoI-tWbv0DBX1kc4,1472
466
+ vellum/client/types/node_execution_span_attributes.py,sha256=0EcAiUQpLCDHCussSr0eHsh41FFGoeR_EWW1akdb-pc,588
467
467
  vellum/client/types/node_execution_streaming_body.py,sha256=cTFTydzZ0-iI08T2XMcQWuIkkcCvqttGkksroSagF34,738
468
- vellum/client/types/node_execution_streaming_event.py,sha256=g6wtvcDBhffiE4-NBzE_vv_u5ViKz9SsLWMfvkTPoBY,1527
468
+ vellum/client/types/node_execution_streaming_event.py,sha256=I0o8FK4uyu3S6KAgc_XoRhyURcBpSv8Ptl77iVut7p8,1586
469
469
  vellum/client/types/node_input_compiled_array_value.py,sha256=-N3NJYE8uSJwjKCS8QzlZUWr87GZQ-U20ODv6u9vs1U,783
470
470
  vellum/client/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
471
471
  vellum/client/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
@@ -486,7 +486,7 @@ vellum/client/types/node_output_compiled_search_results_value.py,sha256=oHKSncqd
486
486
  vellum/client/types/node_output_compiled_string_value.py,sha256=pR_ku51KL_gwplMCiy6oT4sARnKP_0gZsTcLbVtOk_Y,880
487
487
  vellum/client/types/node_output_compiled_thinking_value.py,sha256=j6IRT9A7f58wUyv0dAFY9ata7Tl391gXwn_wbDmxkAI,953
488
488
  vellum/client/types/node_output_compiled_value.py,sha256=GbIKZyrGmqj_dYLiL0eAVZdQnfQhZd-BYsQnGdyI6tY,1181
489
- vellum/client/types/node_parent_context.py,sha256=DV93VENs_ZrVHRZJw6Nw2h7bRU48UUDxjezcAUgjmns,1518
489
+ vellum/client/types/node_parent_context.py,sha256=CC5UIWBjYwAs5hxCI2Q12wGjZZGzHGbuv6kADd_uKCM,1591
490
490
  vellum/client/types/normalized_log_probs.py,sha256=XNfwhKgK9vPlJQh9dcup2Rl5mTlmV154rrIRsf3dYx8,706
491
491
  vellum/client/types/normalized_token_log_probs.py,sha256=C0VHuRQbbcCFzQ9fJNbNjXAc2aUMUT5MxIt929-KMEA,714
492
492
  vellum/client/types/number_input.py,sha256=e5hNmwXv-rBfkJ-SdwbJzU6UKY0ej2m6jO7uEKJ_n4M,739
@@ -512,7 +512,7 @@ vellum/client/types/paginated_test_suite_run_execution_list.py,sha256=u29sjMewYP
512
512
  vellum/client/types/paginated_test_suite_test_case_list.py,sha256=1CDDtqfWyoYPQCP_f6746Yimd1dkqPiX0lTqK6X91Gw,799
513
513
  vellum/client/types/paginated_workflow_release_tag_read_list.py,sha256=dH24ESWyAMVtyHsBkxG8kJ9oORY04Wn3IN-7jvV7Lu4,818
514
514
  vellum/client/types/paginated_workflow_sandbox_example_list.py,sha256=rCivuKp5fzVV8PdRwyiet7bEmLxX_1hv8N0vn0xaT70,817
515
- vellum/client/types/parent_context.py,sha256=b9oAuC8P7mw5Ii_7sF93m-xOspp9NVGn2dZJwrttgZM,811
515
+ vellum/client/types/parent_context.py,sha256=_Hg2z2tuWsTFh-hcDhFoDh5oBNf8CYCgaB_ezyec5V0,903
516
516
  vellum/client/types/pdf_search_result_meta_source.py,sha256=EMVhqdN1bwE6Ujdx4VhlmKQtJvitN-57kY8oZPxh9dI,1126
517
517
  vellum/client/types/pdf_search_result_meta_source_request.py,sha256=nUhaD2Kw1paGC6O_ICVNu3R0e1SVgTshRTkGNgmcjXo,1133
518
518
  vellum/client/types/plain_text_prompt_block.py,sha256=cqEN-B4mcvMw_9lBN7FQG8pk9b5LBJ9xpM6PTgkGiqs,930
@@ -522,7 +522,7 @@ vellum/client/types/prompt_block.py,sha256=quAME4X2doCO_DQ-U7v0Py-ZZy1Z5qypVVq2f
522
522
  vellum/client/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
523
523
  vellum/client/types/prompt_deployment_expand_meta_request.py,sha256=agsiAaHB6lDoZPlnfJ2nmhB4Ud4EiJJTX05YmduyCPo,1910
524
524
  vellum/client/types/prompt_deployment_input_request.py,sha256=KrT4-Ew2VvTWXEkYQz2oyHn5EDOgrMW7FzRFaPH3ARg,353
525
- vellum/client/types/prompt_deployment_parent_context.py,sha256=xlZKf3_FU0lB5YPb1q0s79DNbz0d51laAgIJTIO2J-s,1693
525
+ vellum/client/types/prompt_deployment_parent_context.py,sha256=tq803ZjiUiHmXUUMIEh0WaKwoDL9jEK1XpAjOEZfhYg,1766
526
526
  vellum/client/types/prompt_deployment_release.py,sha256=H6sluuxANsoaX6gA9lw76lJkTECuxFofSeetKF00ze0,1346
527
527
  vellum/client/types/prompt_deployment_release_prompt_deployment.py,sha256=tj8g0qEJyAuijxRBUV6nO2IITEorqVY-C37oqiWg6Po,582
528
528
  vellum/client/types/prompt_deployment_release_prompt_version.py,sha256=MRiTZ13hMHbhFCJ859CkT231_zFcWo2b_0kDs2G4RWQ,849
@@ -592,8 +592,8 @@ vellum/client/types/slim_document.py,sha256=HJiymYPvRxfxhBUkD8epW0hQ2Vt9PQtv398Q
592
592
  vellum/client/types/slim_document_document_to_document_index.py,sha256=0LThZhOgIE2kSmIWH9s59_6pEzGRWpx5qS5BBuWXdLk,1551
593
593
  vellum/client/types/slim_release_review.py,sha256=7DXmD1AVa_Wj7e0qiR7GUN9cSqwkk1JloYmp_3oluQQ,783
594
594
  vellum/client/types/slim_workflow_deployment.py,sha256=Js-ycMFZ8-kNFPsd4bZew9nI_eN2M_58LzDHeCjkfTg,2009
595
- vellum/client/types/slim_workflow_execution_read.py,sha256=Opm1HTYVMz_D2USQCB-5ZoJ4EjKKfrDhoXc0hETldVM,1936
596
- vellum/client/types/span_link.py,sha256=2NISI8V94W0MeIdos7aSKFmpVJgEEunuSEnKlWTUH5c,1353
595
+ vellum/client/types/slim_workflow_execution_read.py,sha256=f1GAN4ejtd6kmtYD15cnXceUCpAX1Zs-Y3NhNXrDPCc,1995
596
+ vellum/client/types/span_link.py,sha256=hcfj0VJVorSdh6lVrFGqTImo7Ax_3iLdc79Vb5Dz2xE,1426
597
597
  vellum/client/types/span_link_type_enum.py,sha256=NaBXnHnOKMZvgHfjhwJJNqM4wuTOxtGkMIXjN2hU-6A,130
598
598
  vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
599
599
  vellum/client/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
@@ -737,40 +737,40 @@ vellum/client/types/vellum_variable.py,sha256=BDcccISJsycsrW3E5A5RTIOfxS_83ofkle
737
737
  vellum/client/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
738
738
  vellum/client/types/vellum_variable_type.py,sha256=epYV-PY0NkvUntKzgzqelWMq9Dzmh7Y32c19GB_2mh0,411
739
739
  vellum/client/types/vellum_workflow_execution_event.py,sha256=H8rP3_6a6LTvemoHfsmI2THpTRf8PYrZQcjoeTzf-44,934
740
- vellum/client/types/workflow_deployment_event_executions_response.py,sha256=_X9hfsfpCf7DaQpfg83AAcbadZxEVi1NKNf2PZ7PRY8,1190
740
+ vellum/client/types/workflow_deployment_event_executions_response.py,sha256=arcWX7d-qrfFc5-_AkbqdSJAsxXakESJaHkg_xTrsZs,1249
741
741
  vellum/client/types/workflow_deployment_history_item.py,sha256=w5yqAtmYWw8kTljYEVBa8-fLxKsrBA8Img7IC3GjZG4,1226
742
- vellum/client/types/workflow_deployment_parent_context.py,sha256=QwGpZnSNX6RCfkjbxmfln8QefrP8lFHkZ1DAC-oj9-Q,1699
742
+ vellum/client/types/workflow_deployment_parent_context.py,sha256=P4-KVpe2TY0MHPqu9pmAAvgCGyWimEwE9AOZA_F_vnk,1772
743
743
  vellum/client/types/workflow_deployment_read.py,sha256=mxsi0mAGWfld_p6Q48kkmC7fqcMALZOFf4QmCwVBGEk,2183
744
744
  vellum/client/types/workflow_deployment_release.py,sha256=pBFhfudeWCxl2P1HYP74t8N49zjy3aRGT8dK5NnuJZg,1423
745
745
  vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=irWt901SImKChLayz7_52C1W7JldKiQHweqkjuMUoNQ,586
746
746
  vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=V1Eb3goBX2lle851LkhR1tbCFa0z_O-yhMuQWCN6c-g,773
747
747
  vellum/client/types/workflow_error.py,sha256=EQajkEmLS64T0wYm0goHQl0rT7Lguurk8pLwkhjsgAI,282
748
748
  vellum/client/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
749
- vellum/client/types/workflow_event_execution_read.py,sha256=a4Nv1UmNlMqDPqGrZLpyy3nNRtc1UqXmzXkeApSfstY,2089
749
+ vellum/client/types/workflow_event_execution_read.py,sha256=rDUpW-R5vwrEekZg0eF65mf5QPIPeYHfKiZ1lUD4kuc,2148
750
750
  vellum/client/types/workflow_execution_actual.py,sha256=RC5t5wfnbHJ0jvSV_rk3OK38u1v30T7nFlQNk4IVYs0,867
751
751
  vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
752
752
  vellum/client/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB2bTznTMFExSZdBhTkmelf1h4Q,1931
753
753
  vellum/client/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
754
- vellum/client/types/workflow_execution_detail.py,sha256=jSBc43AUmQMSt4QwHV6yk-ywBRty2VSQl1LHeHgR7lg,1796
754
+ vellum/client/types/workflow_execution_detail.py,sha256=74Yd8OE8oL3Q3EoripiaEYX6qV9X0qRfavnyyUpan1Y,1855
755
755
  vellum/client/types/workflow_execution_event_error_code.py,sha256=QzRLZ0dteptDmt3n5_vw26zGgDrpvcR4vRa_mtl2sMI,495
756
756
  vellum/client/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
757
757
  vellum/client/types/workflow_execution_fulfilled_body.py,sha256=4M9fQdJy7nH5Y1HLq9VVlfTNW4F9jlj4k5SWty9fFqQ,746
758
- vellum/client/types/workflow_execution_fulfilled_event.py,sha256=VQeCqNTz9sqrURV5tyALqAojHvUZvlzXOqMGnF3l2vg,1551
758
+ vellum/client/types/workflow_execution_fulfilled_event.py,sha256=BtL6AumKq-SbFywf2Bacwc8KQM69HzVwFGT8RtpzGPs,1610
759
759
  vellum/client/types/workflow_execution_initiated_body.py,sha256=12ihPWA3nsLNC-RNEdhgz52l1RHH5dB6yls9vtiU9N4,745
760
- vellum/client/types/workflow_execution_initiated_event.py,sha256=HvCwZch9G3HOsgFdGsoWZ6maPItaqGhen7z1_zs4pZQ,1551
760
+ vellum/client/types/workflow_execution_initiated_event.py,sha256=JWZw6O1ne3A71ypiirHKegKa5BSyf1Ff9eSnrPOcEcE,1610
761
761
  vellum/client/types/workflow_execution_node_result_event.py,sha256=MexutJjIhlHJJSQIu2n1OLZC4FRotj9u1ixZgSNaI3M,936
762
762
  vellum/client/types/workflow_execution_paused_body.py,sha256=35Q7Bs671cjHKJfQT0reZ7bsuKG3oaiBsb_QytjIWUU,805
763
- vellum/client/types/workflow_execution_paused_event.py,sha256=Kz4TcGKceBZm_8yyRIHRzQRKBLAmP6KpC0T5C-6WSK0,1533
763
+ vellum/client/types/workflow_execution_paused_event.py,sha256=dfEkgjBGio_39PXUHWtt4TXa4k7TpxohXKHfMNBRQGA,1592
764
764
  vellum/client/types/workflow_execution_rejected_body.py,sha256=9lrF3CdU3MaXMcaNP5UzEQGAnTW9hpcHA38zvzh3zgk,757
765
- vellum/client/types/workflow_execution_rejected_event.py,sha256=oRn01Ck_bIJ9r6EczukInEaquL-Ga0y4OxV-3VEnlgQ,1545
765
+ vellum/client/types/workflow_execution_rejected_event.py,sha256=36XmXblohxRlGc20TQErGuBHqf0i4bbIVs3jJGFIxBg,1604
766
766
  vellum/client/types/workflow_execution_resumed_body.py,sha256=j8lwN0Bj3A3J4G9Nr2GoJ8ae28vNXnRNUemKgeBT7M8,685
767
- vellum/client/types/workflow_execution_resumed_event.py,sha256=LMoYSYPnCbBQpTT-Idj__mVxCcfFTJU28WvrJ3FVlwA,1539
767
+ vellum/client/types/workflow_execution_resumed_event.py,sha256=xbWssZ9QE8Tm_6EDoFfQf4flZE6BOF7EcsM92ACRxWk,1598
768
768
  vellum/client/types/workflow_execution_snapshotted_body.py,sha256=TByTfAwY20jS7tItCDl-4KAKCmvpycNN22pjJGoBFc4,746
769
- vellum/client/types/workflow_execution_snapshotted_event.py,sha256=vrMhdUiIua9gCOJtc-YGb94BWPQ0QvQ5J2rqltRYtZo,1563
770
- vellum/client/types/workflow_execution_span.py,sha256=3vHEx3k31fLacQaV2iMT-vibjw6CQgLTw4ecqqvSI1o,1449
771
- vellum/client/types/workflow_execution_span_attributes.py,sha256=SRW7mD-6uS8eA57EU6q2thBqSFfJSH4tXI9H3szZwYQ,575
769
+ vellum/client/types/workflow_execution_snapshotted_event.py,sha256=vvv23rPQhYgsqRsuzn-6oF27aCvQb7QD93KlrIyTy3k,1622
770
+ vellum/client/types/workflow_execution_span.py,sha256=V-8FEpa_lauHoDDSo53yYx2iJ-qdRwnUpqgEDS-CFJU,1508
771
+ vellum/client/types/workflow_execution_span_attributes.py,sha256=9AQLo7aP2B3czLTGwwWb2BVBv-8wh85QyFvvw4PyJ4Y,596
772
772
  vellum/client/types/workflow_execution_streaming_body.py,sha256=phni9pJKkFGsQ5IcS4ogtG1EjBzpdBiYpN9CPbkjxH8,746
773
- vellum/client/types/workflow_execution_streaming_event.py,sha256=_xazehYJ5ZwTDc5cC7rpX7nDir_4glPOnx9c9ZPod1g,1551
773
+ vellum/client/types/workflow_execution_streaming_event.py,sha256=EJHp5qG7fx66U5jQkoCuVXHGHcs68oRaTkrnTZLDZAQ,1610
774
774
  vellum/client/types/workflow_execution_usage_calculation_error.py,sha256=O44pAaA3pOpn6dqxfsAFx4QnXeVfIggGWbgmTzQV4Ms,754
775
775
  vellum/client/types/workflow_execution_usage_calculation_error_code_enum.py,sha256=O8CGCaWKuhnRjmQXTsw4gQn5hfDFiKED8bJYzP8R0LM,258
776
776
  vellum/client/types/workflow_execution_usage_result.py,sha256=wZdRqzG_Lwi8gqDHGEU6ayx3pvO9oe8hIPzDDePELz8,928
@@ -791,7 +791,7 @@ vellum/client/types/workflow_output_json.py,sha256=MiCF-mq121YKZmYeaVpb3Tgh4XYqW
791
791
  vellum/client/types/workflow_output_number.py,sha256=p8APNBpl6c3e3dxCFvZtL0jyKOmu9s6LkY3vgXwhTMw,812
792
792
  vellum/client/types/workflow_output_search_results.py,sha256=r3RRGVVrH2H9NAuxA7qmG8lponyeLHHhCx6AUiMYWzc,903
793
793
  vellum/client/types/workflow_output_string.py,sha256=_jclzbQ-Wlf-7FEVTWXhs9h5FWfj4xGpiODZBOzT43w,810
794
- vellum/client/types/workflow_parent_context.py,sha256=jlJQhRdlsO5A_9O2_9ZzvsezYSnaWaLkUz7AcKWJ6sM,1512
794
+ vellum/client/types/workflow_parent_context.py,sha256=kU4OWCIlJLLRn4BVapEKprtrCxdj-uNiKdUZob515-0,1585
795
795
  vellum/client/types/workflow_push_deployment_config_request.py,sha256=pG6bZtlw7S0TcXtNRQNa7y_2NodZe7dp5SchIrgRUVU,745
796
796
  vellum/client/types/workflow_push_exec_config.py,sha256=6TaVMVqhSOz4DnY46l8axPDtytSioXDl9nHvFXSxH1g,94
797
797
  vellum/client/types/workflow_push_response.py,sha256=1vUSZmZ1GK1242dAkNwJnJI0rL3pBT3_0HOLLjdiutw,724
@@ -813,7 +813,7 @@ vellum/client/types/workflow_result_event_output_data_number.py,sha256=OZYYUF3ay
813
813
  vellum/client/types/workflow_result_event_output_data_search_results.py,sha256=U34IK7ZvBG70ZBO4SEqbaNzIrV9Zn1NXabNh3M9v_hg,1172
814
814
  vellum/client/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb_7UU0-UspeN4pUdINCcCrD64W74,1228
815
815
  vellum/client/types/workflow_sandbox_example.py,sha256=XsKa7JvPFm0no8nh_q1DojwMd1ko8kV_xn3omFr4kW4,760
816
- vellum/client/types/workflow_sandbox_parent_context.py,sha256=C-2xW40XkbuzYxvsKetqYMiaoX3qNNXELFxQeqEP6Ow,1473
816
+ vellum/client/types/workflow_sandbox_parent_context.py,sha256=X8PEnywiPOjksLe28QyNrrexnfoPrSHZ360UNUcQbHw,1546
817
817
  vellum/client/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
818
818
  vellum/client/types/workspace_read.py,sha256=ocPtWvOwadqkU3z21bJgE4JeLYTAkOqBlKkc9lDDFFg,697
819
819
  vellum/client/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
@@ -887,8 +887,6 @@ vellum/resources/organizations/__init__.py,sha256=FD1umjszsErkQIAI6aZ7Lv_T6iN5Ia
887
887
  vellum/resources/organizations/client.py,sha256=68HAX4pswpJDH0-Yjc3teoloSJBUGRv8O1V8tCqFSuk,162
888
888
  vellum/resources/prompts/__init__.py,sha256=CtN_jI0nc0C3yqxUPR1uWs5Mvxhlce5c-d8E96GVt4g,149
889
889
  vellum/resources/prompts/client.py,sha256=9S00NNuuiz41m6-kOL6KCxu9bnYMORrXrXVWfFEeW5o,156
890
- vellum/resources/release_reviews/__init__.py,sha256=KchzMayHdTI-aK1Q1ZorHyET_DMV9Sx_0NyJGTeXU7o,157
891
- vellum/resources/release_reviews/client.py,sha256=UMJSHGN2g-TPB4MajT0VBAP9eG5pQajxZbi9UZhIZxA,164
892
890
  vellum/resources/sandboxes/__init__.py,sha256=sycp4Bgvj9GzBGjiXhtmKFjOdBsIoDfMFaQrvDK_lGo,151
893
891
  vellum/resources/sandboxes/client.py,sha256=PBpYOg43HN-9B4YKtPqmE1aFag39ypLc5UWSxixUJjo,158
894
892
  vellum/resources/test_suite_runs/__init__.py,sha256=PfRYjodfN_rYZlUTiBnVXxdwQNcdmI-qT6MCqubd3ug,157
@@ -1033,6 +1031,7 @@ vellum/types/execution_string_vellum_value.py,sha256=MY47d3IJQj9PPThKsCZUFS8y80f
1033
1031
  vellum/types/execution_thinking_vellum_value.py,sha256=Mx9C-vjS0LCGK60CARSyuDI2bHPJFA9AOoSKSfnICG0,169
1034
1032
  vellum/types/execution_vellum_value.py,sha256=VRe64r540rkdVWjWijd7Y5JsYM_9zw09QUUuorKHeXU,160
1035
1033
  vellum/types/external_input_descriptor.py,sha256=-r6xPo7-1Ioq4XZ2nwcrg8OBoyVItKr-BeXspJwDWDQ,163
1034
+ vellum/types/external_parent_context.py,sha256=Oc7XB55q9HyKXFpwwoRR6EBS_bSskq4NDHAx1F38Da8,161
1036
1035
  vellum/types/external_test_case_execution.py,sha256=Av4H59SBBCZ9CZtT-eKD3n05lgljTqdtSZSjtsDpbc4,166
1037
1036
  vellum/types/external_test_case_execution_request.py,sha256=oJx3JSLU9aponZ53dY78ymcSZbQbHpAwnch9aq0F7ws,174
1038
1037
  vellum/types/fast_embed_vectorizer_baai_bge_small_en_v_15.py,sha256=NG9MjraDr4m6gdIo-tuD9Rtc9qGAWBuwk8duZxjoIg0,182
@@ -1538,7 +1537,7 @@ vellum/workflows/edges/__init__.py,sha256=wSkmAnz9xyi4vZwtDbKxwlplt2skD7n3NsxkvR
1538
1537
  vellum/workflows/edges/edge.py,sha256=N0SnY3gKVuxImPAdCbPMPlHJIXbkQ3fwq_LbJRvVMFc,677
1539
1538
  vellum/workflows/emitters/__init__.py,sha256=d9QFOI3eVg6rzpSFLvrjkDYXWikf1tcp3ruTRa2Boyc,143
1540
1539
  vellum/workflows/emitters/base.py,sha256=Tcp13VMB-GMwEJdl-6XTPckspdOdwpMgBx22-PcQxds,892
1541
- vellum/workflows/emitters/vellum_emitter.py,sha256=VRJgyEs6RnikwlPBUu1s7BD8flVeuM3QgTeQLUnaDuE,5051
1540
+ vellum/workflows/emitters/vellum_emitter.py,sha256=xiVlqe3B5fTR-e48nuneeodN1tkrBt0QQa0o9JHdyWg,5077
1542
1541
  vellum/workflows/environment/__init__.py,sha256=TJz0m9dwIs6YOwCTeuN0HHsU-ecyjc1OJXx4AFy83EQ,121
1543
1542
  vellum/workflows/environment/environment.py,sha256=Ck3RPKXJvtMGx_toqYQQQF-ZwXm5ijVwJpEPTeIJ4_Q,471
1544
1543
  vellum/workflows/errors/__init__.py,sha256=tWGPu5xyAU8gRb8_bl0fL7OfU3wxQ9UH6qVwy4X4P_Q,113
@@ -1549,7 +1548,7 @@ vellum/workflows/events/node.py,sha256=n3JdlCmeZ6tFTu_x5tu1oSCe5EBE8B1Cy3CzSWK5B
1549
1548
  vellum/workflows/events/stream.py,sha256=xhXJTZirFi0xad5neAQNogrIQ4h47fpnKbVC3vCM5Js,889
1550
1549
  vellum/workflows/events/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1551
1550
  vellum/workflows/events/tests/test_event.py,sha256=elg5j3MOdWQe-JjshopqVwd716Jrvtr9P_V2JUGZC60,17866
1552
- vellum/workflows/events/types.py,sha256=jc6vEcydzYETfK3u2Cx1BfUDmYh3Jxa86sdsrrQ5oBc,4659
1551
+ vellum/workflows/events/types.py,sha256=3cv2r3e57yto7M4Nlobtyz9GO4bXubj4TMHSFvdECP8,4840
1553
1552
  vellum/workflows/events/workflow.py,sha256=cR2aG6A-JqvLMKFqonDhKjSg496qldEtuks4BXXMTrY,7768
1554
1553
  vellum/workflows/exceptions.py,sha256=NiBiR3ggfmPxBVqD-H1SqmjI-7mIn0EStSN1BqApvCM,1213
1555
1554
  vellum/workflows/expressions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1701,15 +1700,15 @@ vellum/workflows/nodes/displayable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
1701
1700
  vellum/workflows/nodes/displayable/tests/test_inline_text_prompt_node.py,sha256=MHuIolSsrY9ziwoXWsye3XOODncL9DLZOkNYzQMLhRw,4696
1702
1701
  vellum/workflows/nodes/displayable/tests/test_search_node_error_handling.py,sha256=8aw8hDFL0ZXThvAa7yxrJN026EYGD4-Q1si3Phu9-_0,6307
1703
1702
  vellum/workflows/nodes/displayable/tests/test_search_node_wth_text_output.py,sha256=VepO5z1277c1y5N6LLIC31nnWD1aak2m5oPFplfJHHs,6935
1704
- vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=dc3EEn1sOICpr3GdS8eyeFtExaGwWWcw9eHSdkRhQJU,2584
1703
+ vellum/workflows/nodes/displayable/tests/test_text_prompt_deployment_node.py,sha256=Bjv-wZyFgNaVZb9KEMMZd9lFoLzbPEPjEMpANizMZw4,2413
1705
1704
  vellum/workflows/nodes/displayable/tool_calling_node/__init__.py,sha256=3n0-ysmFKsr40CVxPthc0rfJgqVJeZuUEsCmYudLVRg,117
1706
- vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=RFoMIr4CVy50fjuXAFphwfW1oXeZo7s-JY4Bqvlphn0,7460
1705
+ vellum/workflows/nodes/displayable/tool_calling_node/node.py,sha256=D6rWPeaIoYXVu3-WarzmyAXHqt1pcKheOEOB2iUoSHY,7632
1707
1706
  vellum/workflows/nodes/displayable/tool_calling_node/state.py,sha256=CcBVb_YtwfSSka4ze678k6-qwmzMSfjfVP8_Y95feSo,302
1708
1707
  vellum/workflows/nodes/displayable/tool_calling_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1709
1708
  vellum/workflows/nodes/displayable/tool_calling_node/tests/test_composio_service.py,sha256=in1fbEz5x1tx3uKv9YXdvOncsHucNL8Ro6Go7lBuuOQ,8962
1710
1709
  vellum/workflows/nodes/displayable/tool_calling_node/tests/test_node.py,sha256=1QwfUOS26pesN6Ckqfm-RVlOSyjuF945vKC20AXedKw,8458
1711
1710
  vellum/workflows/nodes/displayable/tool_calling_node/tests/test_utils.py,sha256=om4FztVQ33jFZK_lbusi6khOM7zgzNCHlUcEb5-r6pU,8361
1712
- vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=7B_8FY5xEjra3A3k6kcABnrgobqieCKNCEA6ijKKaW8,21284
1711
+ vellum/workflows/nodes/displayable/tool_calling_node/utils.py,sha256=MpsZHPiT8NtKwY27fqI29sj6ChiOaVHXZ8mKbhYo778,24134
1713
1712
  vellum/workflows/nodes/experimental/README.md,sha256=eF6DfIL8t-HbF9-mcofOMymKrraiBHDLKTlnBa51ZiE,284
1714
1713
  vellum/workflows/nodes/experimental/__init__.py,sha256=jCQgvZEknXKfuNhGSOou4XPfrPqZ1_XBj5F0n0fgiWM,106
1715
1714
  vellum/workflows/nodes/experimental/openai_chat_completion_node/__init__.py,sha256=lsyD9laR9p7kx5-BXGH2gUTM242UhKy8SMV0SR6S2iE,90
@@ -1745,7 +1744,7 @@ vellum/workflows/runner/runner.py,sha256=t9Y3k82YjeML-Z7f1W2sj_1nAjJEpsnJUComDBe
1745
1744
  vellum/workflows/sandbox.py,sha256=GVJzVjMuYzOBnSrboB0_6MMRZWBluAyQ2o7syeaeBd0,2235
1746
1745
  vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
1747
1746
  vellum/workflows/state/base.py,sha256=m9fCqbZn21GshCVCjJTD1dPZEQjFrsMXqlg7tM9fIwM,24283
1748
- vellum/workflows/state/context.py,sha256=KOAI1wEGn8dGmhmAemJaf4SZbitP3jpIBcwKfznQaRE,3076
1747
+ vellum/workflows/state/context.py,sha256=IsiNCYRVpAyhvrC2l5h9pNkrptuU_wOD-cHRiTAMGrg,3453
1749
1748
  vellum/workflows/state/delta.py,sha256=7h8wR10lRCm15SykaPj-gSEvvsMjCwYLPsOx3nsvBQg,440
1750
1749
  vellum/workflows/state/encoder.py,sha256=sV80h-lAo66isD2ezK1_YLzj75Aa5dAtF2YA1c3BYKo,2883
1751
1750
  vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
@@ -1757,19 +1756,19 @@ vellum/workflows/tests/test_undefined.py,sha256=zMCVliCXVNLrlC6hEGyOWDnQADJ2g83y
1757
1756
  vellum/workflows/types/__init__.py,sha256=KxUTMBGzuRCfiMqzzsykOeVvrrkaZmTTo1a7SLu8gRM,68
1758
1757
  vellum/workflows/types/code_execution_node_wrappers.py,sha256=3MNIoFZKzVzNS5qFLVuDwMV17QJw72zo7NRf52yMq5A,3074
1759
1758
  vellum/workflows/types/core.py,sha256=TggDVs2lVya33xvu374EDhMC1b7RRlAAs0zWLaF46BA,1385
1760
- vellum/workflows/types/definition.py,sha256=ee55MvZs4scFgI7y3ykIcP_5kSTqb4ojNrtGmnvISTw,4437
1759
+ vellum/workflows/types/definition.py,sha256=coGFuaPCF04z4Oj-Y5hLO7pql8yc2p5eF_AqFZPyhKg,4441
1761
1760
  vellum/workflows/types/generics.py,sha256=8jptbEx1fnJV0Lhj0MpCJOT6yNiEWeTOYOwrEAb5CRU,1576
1762
1761
  vellum/workflows/types/stack.py,sha256=h7NE0vXR7l9DevFBIzIAk1Zh59K-kECQtDTKOUunwMY,1314
1763
1762
  vellum/workflows/types/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1764
- vellum/workflows/types/tests/test_definition.py,sha256=AM2uaADSWb6QUAP_CwjeSuNayBjoZ_yQWjYefw0mbGI,5045
1763
+ vellum/workflows/types/tests/test_definition.py,sha256=EgZ0Gm1Z-05cnf85uvNzWQPdYeCU7mSHKbaa5uRvKJo,5018
1765
1764
  vellum/workflows/types/tests/test_utils.py,sha256=UnZog59tR577mVwqZRqqWn2fScoOU1H6up0EzS8zYhw,2536
1766
1765
  vellum/workflows/types/utils.py,sha256=mTctHITBybpt4855x32oCKALBEcMNLn-9cCmfEKgJHQ,6498
1767
1766
  vellum/workflows/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1768
- vellum/workflows/utils/functions.py,sha256=ksvyxPWTbsldlXSlqh20e_1hl9GHipWwggYLfp3NRiE,8735
1767
+ vellum/workflows/utils/functions.py,sha256=YsTcwCWqjcnH_ZHOHB9www3khoKqYcJ5e55pnqKsF9c,8740
1769
1768
  vellum/workflows/utils/names.py,sha256=QLUqfJ1tmSEeUwBKTTiv_Qk3QGbInC2RSmlXfGXc8Wo,380
1770
1769
  vellum/workflows/utils/pydantic_schema.py,sha256=eR_bBtY-T0pttJP-ARwagSdCOnwPUtiT3cegm2lzDTQ,1310
1771
1770
  vellum/workflows/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1772
- vellum/workflows/utils/tests/test_functions.py,sha256=uaxjsIdtTQdz3r0ACbBegDx-5LMAYyVsI83VgxUlE8o,23520
1771
+ vellum/workflows/utils/tests/test_functions.py,sha256=U-znUtUz3RFfW3SKYzpBqj2wlv5fsuMZ6RXImrLGAgE,23535
1773
1772
  vellum/workflows/utils/tests/test_names.py,sha256=aOqpyvMsOEK_9mg_-yaNxQDW7QQfwqsYs37PseyLhxw,402
1774
1773
  vellum/workflows/utils/tests/test_uuids.py,sha256=i77ABQ0M3S-aFLzDXHJq_yr5FPkJEWCMBn1HJ3DObrE,437
1775
1774
  vellum/workflows/utils/tests/test_vellum_variables.py,sha256=vbnKgm41aB5OXlO-ZIPbhQ6xDiZkT8KMxCLqz4zocWY,1791
@@ -1782,8 +1781,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
1782
1781
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1783
1782
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=ptMntHzVyy8ZuzNgeTuk7hREgKQ5UBdgq8VJFSGaW4Y,20832
1784
1783
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1785
- vellum_ai-1.0.11.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1786
- vellum_ai-1.0.11.dist-info/METADATA,sha256=8M0wZ1WdaD1OxRcbUt8a0g6566qeU-QnXRHQ6heBKiU,5555
1787
- vellum_ai-1.0.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1788
- vellum_ai-1.0.11.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1789
- vellum_ai-1.0.11.dist-info/RECORD,,
1784
+ vellum_ai-1.1.0.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1785
+ vellum_ai-1.1.0.dist-info/METADATA,sha256=NGVFe0bSI0ylZuAJ9mIbIndZowHT3U6lLCrEZc-i93c,5554
1786
+ vellum_ai-1.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1787
+ vellum_ai-1.1.0.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1788
+ vellum_ai-1.1.0.dist-info/RECORD,,