vellum-ai 1.2.0__py3-none-any.whl → 1.2.1__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 (46) hide show
  1. vellum/__init__.py +18 -1
  2. vellum/client/__init__.py +3 -0
  3. vellum/client/core/client_wrapper.py +2 -2
  4. vellum/client/errors/__init__.py +10 -1
  5. vellum/client/errors/too_many_requests_error.py +11 -0
  6. vellum/client/errors/unauthorized_error.py +11 -0
  7. vellum/client/reference.md +94 -0
  8. vellum/client/resources/__init__.py +2 -0
  9. vellum/client/resources/events/__init__.py +4 -0
  10. vellum/client/resources/events/client.py +165 -0
  11. vellum/client/resources/events/raw_client.py +207 -0
  12. vellum/client/types/__init__.py +6 -0
  13. vellum/client/types/error_detail_response.py +22 -0
  14. vellum/client/types/event_create_response.py +26 -0
  15. vellum/client/types/execution_thinking_vellum_value.py +1 -1
  16. vellum/client/types/thinking_vellum_value.py +1 -1
  17. vellum/client/types/thinking_vellum_value_request.py +1 -1
  18. vellum/client/types/workflow_event.py +33 -0
  19. vellum/errors/too_many_requests_error.py +3 -0
  20. vellum/errors/unauthorized_error.py +3 -0
  21. vellum/resources/events/__init__.py +3 -0
  22. vellum/resources/events/client.py +3 -0
  23. vellum/resources/events/raw_client.py +3 -0
  24. vellum/types/error_detail_response.py +3 -0
  25. vellum/types/event_create_response.py +3 -0
  26. vellum/types/workflow_event.py +3 -0
  27. vellum/workflows/nodes/displayable/bases/api_node/node.py +4 -0
  28. vellum/workflows/nodes/displayable/bases/api_node/tests/test_node.py +26 -0
  29. vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py +6 -1
  30. vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/test_inline_prompt_node.py +22 -0
  31. vellum/workflows/sandbox.py +6 -3
  32. vellum/workflows/state/encoder.py +19 -1
  33. vellum/workflows/utils/hmac.py +44 -0
  34. {vellum_ai-1.2.0.dist-info → vellum_ai-1.2.1.dist-info}/METADATA +1 -1
  35. {vellum_ai-1.2.0.dist-info → vellum_ai-1.2.1.dist-info}/RECORD +46 -28
  36. vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py +33 -7
  37. vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py +239 -1
  38. vellum_ee/workflows/display/tests/test_base_workflow_display.py +53 -1
  39. vellum_ee/workflows/display/utils/expressions.py +4 -0
  40. vellum_ee/workflows/display/utils/registry.py +46 -0
  41. vellum_ee/workflows/display/workflows/base_workflow_display.py +1 -1
  42. vellum_ee/workflows/tests/test_registry.py +169 -0
  43. vellum_ee/workflows/tests/test_server.py +72 -0
  44. {vellum_ai-1.2.0.dist-info → vellum_ai-1.2.1.dist-info}/LICENSE +0 -0
  45. {vellum_ai-1.2.0.dist-info → vellum_ai-1.2.1.dist-info}/WHEEL +0 -0
  46. {vellum_ai-1.2.0.dist-info → vellum_ai-1.2.1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,22 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+
8
+
9
+ class ErrorDetailResponse(UniversalBaseModel):
10
+ detail: str = pydantic.Field()
11
+ """
12
+ Message informing the user of the error.
13
+ """
14
+
15
+ if IS_PYDANTIC_V2:
16
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
17
+ else:
18
+
19
+ class Config:
20
+ frozen = True
21
+ smart_union = True
22
+ extra = pydantic.Extra.allow
@@ -0,0 +1,26 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+
8
+
9
+ class EventCreateResponse(UniversalBaseModel):
10
+ """
11
+ Response serializer for successful event creation.
12
+ """
13
+
14
+ success: typing.Optional[bool] = pydantic.Field(default=None)
15
+ """
16
+ Indicates whether the event was published successfully.
17
+ """
18
+
19
+ if IS_PYDANTIC_V2:
20
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
21
+ else:
22
+
23
+ class Config:
24
+ frozen = True
25
+ smart_union = True
26
+ extra = pydantic.Extra.allow
@@ -19,7 +19,7 @@ class ExecutionThinkingVellumValue(UniversalBaseModel):
19
19
 
20
20
  name: str
21
21
  type: typing.Literal["THINKING"] = "THINKING"
22
- value: StringVellumValue
22
+ value: typing.Optional[StringVellumValue] = None
23
23
 
24
24
  if IS_PYDANTIC_V2:
25
25
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -13,7 +13,7 @@ class ThinkingVellumValue(UniversalBaseModel):
13
13
  """
14
14
 
15
15
  type: typing.Literal["THINKING"] = "THINKING"
16
- value: StringVellumValue
16
+ value: typing.Optional[StringVellumValue] = None
17
17
 
18
18
  if IS_PYDANTIC_V2:
19
19
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -13,7 +13,7 @@ class ThinkingVellumValueRequest(UniversalBaseModel):
13
13
  """
14
14
 
15
15
  type: typing.Literal["THINKING"] = "THINKING"
16
- value: StringVellumValueRequest
16
+ value: typing.Optional[StringVellumValueRequest] = None
17
17
 
18
18
  if IS_PYDANTIC_V2:
19
19
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -0,0 +1,33 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .node_execution_fulfilled_event import NodeExecutionFulfilledEvent
6
+ from .node_execution_initiated_event import NodeExecutionInitiatedEvent
7
+ from .node_execution_paused_event import NodeExecutionPausedEvent
8
+ from .node_execution_rejected_event import NodeExecutionRejectedEvent
9
+ from .node_execution_resumed_event import NodeExecutionResumedEvent
10
+ from .node_execution_streaming_event import NodeExecutionStreamingEvent
11
+ from .workflow_execution_fulfilled_event import WorkflowExecutionFulfilledEvent
12
+ from .workflow_execution_initiated_event import WorkflowExecutionInitiatedEvent
13
+ from .workflow_execution_paused_event import WorkflowExecutionPausedEvent
14
+ from .workflow_execution_rejected_event import WorkflowExecutionRejectedEvent
15
+ from .workflow_execution_resumed_event import WorkflowExecutionResumedEvent
16
+ from .workflow_execution_snapshotted_event import WorkflowExecutionSnapshottedEvent
17
+ from .workflow_execution_streaming_event import WorkflowExecutionStreamingEvent
18
+
19
+ WorkflowEvent = typing.Union[
20
+ NodeExecutionInitiatedEvent,
21
+ NodeExecutionStreamingEvent,
22
+ NodeExecutionFulfilledEvent,
23
+ NodeExecutionRejectedEvent,
24
+ NodeExecutionPausedEvent,
25
+ NodeExecutionResumedEvent,
26
+ WorkflowExecutionInitiatedEvent,
27
+ WorkflowExecutionStreamingEvent,
28
+ WorkflowExecutionRejectedEvent,
29
+ WorkflowExecutionFulfilledEvent,
30
+ WorkflowExecutionPausedEvent,
31
+ WorkflowExecutionResumedEvent,
32
+ WorkflowExecutionSnapshottedEvent,
33
+ ]
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.errors.too_many_requests_error import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.errors.unauthorized_error import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.resources.events import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.resources.events.client import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.resources.events.raw_client import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.types.error_detail_response import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.types.event_create_response import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.types.workflow_event import *
@@ -14,6 +14,7 @@ from vellum.workflows.nodes.bases import BaseNode
14
14
  from vellum.workflows.outputs import BaseOutputs
15
15
  from vellum.workflows.types.core import Json, MergeBehavior, VellumSecret
16
16
  from vellum.workflows.types.generics import StateType
17
+ from vellum.workflows.utils.hmac import sign_request_with_env_secret
17
18
 
18
19
 
19
20
  class BaseAPINode(BaseNode, Generic[StateType]):
@@ -105,6 +106,9 @@ class BaseAPINode(BaseNode, Generic[StateType]):
105
106
  prepped = Request(method=method, url=url, headers=headers).prepare()
106
107
  except Exception as e:
107
108
  raise NodeException(f"Failed to prepare HTTP request: {e}", code=WorkflowErrorCode.PROVIDER_ERROR)
109
+
110
+ sign_request_with_env_secret(prepped)
111
+
108
112
  try:
109
113
  with Session() as session:
110
114
  response = session.send(prepped, timeout=timeout)
@@ -1,4 +1,6 @@
1
1
  import pytest
2
+ import os
3
+ from unittest.mock import patch
2
4
 
3
5
  from vellum.client.types.execute_api_response import ExecuteApiResponse
4
6
  from vellum.workflows.constants import APIRequestMethod
@@ -122,3 +124,27 @@ def test_api_node_preserves_custom_user_agent_header(requests_mock):
122
124
  assert response_mock.last_request.headers.get("User-Agent") == "Custom-Agent/1.0"
123
125
 
124
126
  assert result.status_code == 200
127
+
128
+
129
+ def test_local_execute_api_with_hmac_secret(requests_mock):
130
+ """Test that _local_execute_api adds HMAC headers when VELLUM_HMAC_SECRET is set."""
131
+
132
+ class TestAPINode(BaseAPINode):
133
+ method = APIRequestMethod.POST
134
+ url = "https://example.com/test"
135
+ json = {"test": "data"}
136
+
137
+ response_mock = requests_mock.post(
138
+ "https://example.com/test",
139
+ json={"result": "success"},
140
+ status_code=200,
141
+ )
142
+
143
+ with patch.dict(os.environ, {"VELLUM_HMAC_SECRET": "test-secret"}):
144
+ node = TestAPINode()
145
+ result = node.run()
146
+
147
+ assert response_mock.last_request
148
+ assert "X-Vellum-Timestamp" in response_mock.last_request.headers
149
+ assert "X-Vellum-Signature" in response_mock.last_request.headers
150
+ assert result.status_code == 200
@@ -122,8 +122,13 @@ class BaseInlinePromptNode(BasePromptNode[StateType], Generic[StateType]):
122
122
  )
123
123
  elif is_workflow_class(function):
124
124
  normalized_functions.append(compile_inline_workflow_function_definition(function))
125
- else:
125
+ elif callable(function):
126
126
  normalized_functions.append(compile_function_definition(function))
127
+ else:
128
+ raise NodeException(
129
+ message=f"`{function}` is not a valid function definition",
130
+ code=WorkflowErrorCode.INVALID_INPUTS,
131
+ )
127
132
 
128
133
  if self.settings and not self.settings.stream_enabled:
129
134
  # This endpoint is returning a single event, so we need to wrap it in a generator
@@ -662,3 +662,25 @@ def test_inline_prompt_node__dict_blocks_error(vellum_adhoc_prompt_client):
662
662
  # THEN the node should raise the correct NodeException
663
663
  assert excinfo.value.code == WorkflowErrorCode.INVALID_INPUTS
664
664
  assert "Failed to compile blocks" == str(excinfo.value)
665
+
666
+
667
+ def test_inline_prompt_node__invalid_function_type():
668
+ """Test that the node raises an error when an invalid function type is passed."""
669
+
670
+ # GIVEN a node that has an invalid function type (not dict or callable)
671
+ class MyInlinePromptNode(InlinePromptNode):
672
+ ml_model = "gpt-4o"
673
+ blocks = []
674
+ prompt_inputs = {}
675
+ functions = ["not_a_function"] # type: ignore
676
+
677
+ # WHEN the node is created
678
+ node = MyInlinePromptNode()
679
+
680
+ # THEN the node should raise a NodeException with the correct error code
681
+ with pytest.raises(NodeException) as excinfo:
682
+ list(node.run())
683
+
684
+ # AND the error should have the correct code and message
685
+ assert excinfo.value.code == WorkflowErrorCode.INVALID_INPUTS
686
+ assert "`not_a_function` is not a valid function definition" == str(excinfo.value)
@@ -16,6 +16,9 @@ class WorkflowSandboxRunner(Generic[WorkflowType]):
16
16
  inputs: Optional[Sequence[BaseInputs]] = None, # DEPRECATED - remove in v2.0.0
17
17
  dataset: Optional[Sequence[BaseInputs]] = None,
18
18
  ):
19
+ dotenv.load_dotenv()
20
+ self._logger = load_logger()
21
+
19
22
  if dataset is not None and inputs is not None:
20
23
  raise ValueError(
21
24
  "Cannot specify both 'dataset' and 'inputs' parameters. " "Use 'dataset' as 'inputs' is deprecated."
@@ -24,6 +27,9 @@ class WorkflowSandboxRunner(Generic[WorkflowType]):
24
27
  if dataset is not None:
25
28
  actual_inputs = dataset
26
29
  elif inputs is not None:
30
+ self._logger.warning(
31
+ "The 'inputs' parameter is deprecated and will be removed in v2.0.0. " "Please use 'dataset' instead."
32
+ )
27
33
  actual_inputs = inputs
28
34
  else:
29
35
  raise ValueError("Either 'dataset' or 'inputs' parameter is required")
@@ -34,9 +40,6 @@ class WorkflowSandboxRunner(Generic[WorkflowType]):
34
40
  self._workflow = workflow
35
41
  self._inputs = actual_inputs
36
42
 
37
- dotenv.load_dotenv()
38
- self._logger = load_logger()
39
-
40
43
  def run(self, index: int = 0):
41
44
  if index < 0:
42
45
  self._logger.warning("Index is less than 0, running first input")
@@ -2,8 +2,10 @@ from dataclasses import asdict, is_dataclass
2
2
  from datetime import datetime
3
3
  import enum
4
4
  import inspect
5
+ from io import StringIO
5
6
  from json import JSONEncoder
6
7
  from queue import Queue
8
+ import sys
7
9
  from uuid import UUID
8
10
  from typing import Any, Callable, Dict, Type
9
11
 
@@ -18,6 +20,22 @@ from vellum.workflows.state.base import BaseState, NodeExecutionCache
18
20
  from vellum.workflows.utils.functions import compile_function_definition
19
21
 
20
22
 
23
+ def virtual_open(file_path: str, mode: str = "r"):
24
+ """
25
+ Open a file, checking VirtualFileFinder instances first before falling back to regular open().
26
+ """
27
+ for finder in sys.meta_path:
28
+ if hasattr(finder, "loader") and hasattr(finder.loader, "_get_code"):
29
+ namespace = finder.loader.namespace
30
+ if file_path.startswith(namespace + "/"):
31
+ relative_path = file_path[len(namespace) + 1 :]
32
+ content = finder.loader._get_code(relative_path)
33
+ if content is not None:
34
+ return StringIO(content)
35
+
36
+ return open(file_path, mode)
37
+
38
+
21
39
  class DefaultStateEncoder(JSONEncoder):
22
40
  encoders: Dict[Type, Callable] = {}
23
41
 
@@ -66,7 +84,7 @@ class DefaultStateEncoder(JSONEncoder):
66
84
  function_definition = compile_function_definition(obj)
67
85
  source_path = inspect.getsourcefile(obj)
68
86
  if source_path is not None:
69
- with open(source_path) as f:
87
+ with virtual_open(source_path) as f:
70
88
  source_code = f.read()
71
89
  else:
72
90
  source_code = f"# Error: Source code not available for {obj.__name__}"
@@ -0,0 +1,44 @@
1
+ import hashlib
2
+ import hmac
3
+ import os
4
+ import time
5
+
6
+ from requests import PreparedRequest
7
+
8
+
9
+ def _sign_request(request: PreparedRequest, secret: str) -> None:
10
+ """
11
+ Sign a request with HMAC using the same pattern as Django implementation.
12
+
13
+ Args:
14
+ request: The prepared request to sign
15
+ secret: The HMAC secret string
16
+ """
17
+ timestamp = str(int(time.time()))
18
+
19
+ body = request.body or b""
20
+ if isinstance(body, str):
21
+ body = body.encode()
22
+
23
+ message = f"{timestamp}\n{request.method}\n{request.url}\n".encode() + body
24
+
25
+ signature = hmac.new(secret.encode("utf-8"), message, hashlib.sha256).hexdigest()
26
+
27
+ hmac_headers = {
28
+ "X-Vellum-Timestamp": timestamp,
29
+ "X-Vellum-Signature": signature,
30
+ }
31
+
32
+ request.headers.update(hmac_headers)
33
+
34
+
35
+ def sign_request_with_env_secret(request: PreparedRequest) -> None:
36
+ """
37
+ Sign a request using VELLUM_HMAC_SECRET environment variable if available.
38
+
39
+ Args:
40
+ request: The prepared request to sign
41
+ """
42
+ hmac_secret = os.environ.get("VELLUM_HMAC_SECRET")
43
+ if hmac_secret:
44
+ _sign_request(request, hmac_secret)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.9,<4.0
@@ -42,7 +42,7 @@ vellum_ee/workflows/display/nodes/vellum/conditional_node.py,sha256=OEw8QRPliL4P
42
42
  vellum_ee/workflows/display/nodes/vellum/error_node.py,sha256=YhMsi2TG1zSR8E7IpxzzSncOyVLcvqTuGa3mr4RqHd8,2364
43
43
  vellum_ee/workflows/display/nodes/vellum/final_output_node.py,sha256=zo-nalsuayMqeb2GwR2OB9SFK3y2U5aG-rtwrsjdasQ,3089
44
44
  vellum_ee/workflows/display/nodes/vellum/guardrail_node.py,sha256=IniO5KvO0Rw9zghFg3RFvbXBTv6Zi1iuQhaA1DLazqU,2331
45
- vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py,sha256=6gbDSw1N74gATXkPvRNSZFd__OncCJP0PPgT-timzwA,11259
45
+ vellum_ee/workflows/display/nodes/vellum/inline_prompt_node.py,sha256=Jzi65uRQ5Y4fpXz5An5Xt-E5MZkc_Uyceuy9zS4Jyuc,12272
46
46
  vellum_ee/workflows/display/nodes/vellum/inline_subworkflow_node.py,sha256=f7MeoxgKrdyb1dSJsvdDtZPlp1J2Pa4njPvN3qHVktA,6028
47
47
  vellum_ee/workflows/display/nodes/vellum/map_node.py,sha256=uaZ2wcZR1J9C9iI0QWAsgNK9IlcuCz1808oxXmiYsLY,3908
48
48
  vellum_ee/workflows/display/nodes/vellum/merge_node.py,sha256=RTP_raQWL8ZKoRKLpxLfpyXzw61TZeTCkTuM1uRLIkI,3274
@@ -64,13 +64,13 @@ vellum_ee/workflows/display/nodes/vellum/tests/test_retry_node.py,sha256=WyqX_g-
64
64
  vellum_ee/workflows/display/nodes/vellum/tests/test_search_node.py,sha256=KvByxgbUkVyfPIVxTUBUk6a92JiJMi8eReZWxzfPExU,3864
65
65
  vellum_ee/workflows/display/nodes/vellum/tests/test_subworkflow_deployment_node.py,sha256=BUzHJgjdWnPeZxjFjHfDBKnbFjYjnbXPjc-1hne1B2Y,3965
66
66
  vellum_ee/workflows/display/nodes/vellum/tests/test_templating_node.py,sha256=LSk2gx9TpGXbAqKe8dggQW8yJZqj-Cf0EGJFeGGlEcw,3321
67
- vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=CPKDOM5Qzk4ETP_onbEmUmEqzNYPru_OgsQG2LAS_Vg,16430
67
+ vellum_ee/workflows/display/nodes/vellum/tests/test_tool_calling_node.py,sha256=o-EpLEtb02X9VKEVpRQ-qzQwmCwuD_ykavP0vmquDaM,24733
68
68
  vellum_ee/workflows/display/nodes/vellum/tests/test_try_node.py,sha256=Khjsb53PKpZuyhKoRMgKAL45eGp5hZqXvHmVeQWRw4w,2289
69
69
  vellum_ee/workflows/display/nodes/vellum/tests/test_utils.py,sha256=rHybfUAWwa0LlstQTNthGb-zYXrUCLADFtn_4SGsbw8,4807
70
70
  vellum_ee/workflows/display/nodes/vellum/try_node.py,sha256=47fOnSCEFnY8th9m2yTYlgnoUuzgyRZdjg-SXwn--lk,4079
71
71
  vellum_ee/workflows/display/nodes/vellum/utils.py,sha256=oICunzyaXPs0tYnW5zH1r93Bx35MSH7mcD-n0DEWRok,4978
72
72
  vellum_ee/workflows/display/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- vellum_ee/workflows/display/tests/test_base_workflow_display.py,sha256=NTtZltrBqA0BlbDvCOJaBWABMmns74StnisA9icBZ8U,10602
73
+ vellum_ee/workflows/display/tests/test_base_workflow_display.py,sha256=l0ljTRBpoTJ5oKL-fNcU5qeruLw2pUvQLOJodg0yYLg,12436
74
74
  vellum_ee/workflows/display/tests/workflow_serialization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
75
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
76
  vellum_ee/workflows/display/tests/workflow_serialization/generic_nodes/conftest.py,sha256=Y-ajeT65b5varmrZCw6L3hir4hJCFq-eO0jZfRcrs7g,1886
@@ -107,14 +107,14 @@ vellum_ee/workflows/display/types.py,sha256=cyZruu4sXAdHjwuFc7dydM4DcFNf-pp_Cmul
107
107
  vellum_ee/workflows/display/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  vellum_ee/workflows/display/utils/auto_layout.py,sha256=f4GiLn_LazweupfqTpubcdtdfE_vrOcmZudSsnYIY9E,3906
109
109
  vellum_ee/workflows/display/utils/exceptions.py,sha256=LSwwxCYNxFkf5XMUcFkaZKpQ13OSrI7y_bpEUwbKVk0,169
110
- vellum_ee/workflows/display/utils/expressions.py,sha256=EPpdnG4esGVjQVYYWJT1G5LWRLhWN_s45LIPQvy_ge4,16772
111
- vellum_ee/workflows/display/utils/registry.py,sha256=fWIm5Jj-10gNFjgn34iBu4RWv3Vd15ijtSN0V97bpW8,1513
110
+ vellum_ee/workflows/display/utils/expressions.py,sha256=yPrUIEQKL5fDwUC9NpVO9yjL6emTOdFJw8VjoZgZ0E0,16942
111
+ vellum_ee/workflows/display/utils/registry.py,sha256=1qXiBTdsnro6FeCX0FGBEK7CIf6wa--Jt50iZ_nEp_M,3460
112
112
  vellum_ee/workflows/display/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
113
  vellum_ee/workflows/display/utils/tests/test_auto_layout.py,sha256=vfXI769418s9vda5Gb5NFBH747WMOwSgHRXeLCTLVm8,2356
114
114
  vellum_ee/workflows/display/utils/vellum.py,sha256=mtoXmSYwR7rvrq-d6CzCW_auaJXTct0Mi1F0xpRCiNQ,5627
115
115
  vellum_ee/workflows/display/vellum.py,sha256=J2mdJZ1sdLW535DDUkq_Vm8Z572vhuxHxVZF9deKSdk,391
116
116
  vellum_ee/workflows/display/workflows/__init__.py,sha256=JTB9ObEV3l4gGGdtfBHwVJtTTKC22uj-a-XjTVwXCyA,148
117
- vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=StflRnfj2GPYyvg3-kZvzPoNkw5a8hpSjlaMQBzEnAY,43035
117
+ vellum_ee/workflows/display/workflows/base_workflow_display.py,sha256=_s7mYr56vdavU-CR1FtOQKQlcSpepVgJia84w2OEOUk,43042
118
118
  vellum_ee/workflows/display/workflows/get_vellum_workflow_display_class.py,sha256=gxz76AeCqgAZ9D2lZeTiZzxY9eMgn3qOSfVgiqYcOh8,2028
119
119
  vellum_ee/workflows/display/workflows/tests/test_workflow_display.py,sha256=pb7BTH-ivRnya1LQU3j-MApWk_m8POpPNOdD0oEK82A,37847
120
120
  vellum_ee/workflows/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -139,15 +139,16 @@ vellum_ee/workflows/tests/local_workflow/nodes/final_output.py,sha256=ZX7zBv87zi
139
139
  vellum_ee/workflows/tests/local_workflow/nodes/templating_node.py,sha256=NQwFN61QkHfI3Vssz-B0NKGfupK8PU0FDSAIAhYBLi0,325
140
140
  vellum_ee/workflows/tests/local_workflow/workflow.py,sha256=A4qOzOPNwePYxWbcAgIPLsmrVS_aVEZEc-wULSv787Q,393
141
141
  vellum_ee/workflows/tests/test_display_meta.py,sha256=PkXJVnMZs9GNooDkd59n4YTBAX3XGPQWeSSVbhehVFM,5112
142
+ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50PllvtAZoI8-uPs,6066
142
143
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=lk-4dVnG2HcxxywBXxDR1ieH8D9RJt4lvchoZhtQPdU,2892
143
- vellum_ee/workflows/tests/test_server.py,sha256=SsOkS6sGO7uGC4mxvk4iv8AtcXs058P9hgFHzTWmpII,14519
144
+ vellum_ee/workflows/tests/test_server.py,sha256=GXpj8vUvVTBrhz1PVtSNzMirXUPmfjBN9O814K6ubsU,16776
144
145
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
145
- vellum/__init__.py,sha256=iqkCA7SoYec2cOIyNBQeu7f0reFyxwR4zlSAYg71ncM,43613
146
+ vellum/__init__.py,sha256=vTfZeCW_quEEi5g80ZVJQxe2OY0yBJH6KFWHWovZjec,43906
146
147
  vellum/client/README.md,sha256=gxc7JlJRBrBZpN5LHa2ORxYTRHFLPnWmnIugN8pmQh4,5600
147
- vellum/client/__init__.py,sha256=NEcLUhKRIK0OGGXTSQbarRaacFkJWFmM5iY4F9lgIDI,72131
148
+ vellum/client/__init__.py,sha256=LOu_TklkJG01SgXIpPWDhOX2QvKDyd2ZbQyr5H0m31I,72349
148
149
  vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
149
150
  vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
150
- vellum/client/core/client_wrapper.py,sha256=TZs53rWMa0VP-FbcYs869Qj_v3-6RgMw_JgLuJoBY0w,2840
151
+ vellum/client/core/client_wrapper.py,sha256=-4PVopevd_kf5mXOiE5dkGXhtyTxM5HwZwEAB6ux010,2840
151
152
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
152
153
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
153
154
  vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -160,14 +161,16 @@ vellum/client/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3
160
161
  vellum/client/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
161
162
  vellum/client/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
162
163
  vellum/client/environment.py,sha256=bcAFjoE9XXd7tiysYS90Os669IJmUMZS2JZ_ZQn0Dpg,498
163
- vellum/client/errors/__init__.py,sha256=i1Cxfwfm2tL1DRuYRbTEXZ5MIhobgDE8zm38gqGSNKY,363
164
+ vellum/client/errors/__init__.py,sha256=k9qLK9o5MR87zxVvClxV27MLGH8x_lbBZlpEAj-0azw,543
164
165
  vellum/client/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
165
166
  vellum/client/errors/forbidden_error.py,sha256=JhKThpM90vF0BEmaBn-8P_0NVYmgJ2BE9kvWmLxU_nA,337
166
167
  vellum/client/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
167
168
  vellum/client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy1UQUp2IOE8,336
169
+ vellum/client/errors/too_many_requests_error.py,sha256=SJJemdgUlQHV_VpxK8UfFNexgZebNT5_MTOeQs6oVgc,397
170
+ vellum/client/errors/unauthorized_error.py,sha256=waPl5Swiqsk3FQK-Lljzx4KDh4RPZ0wL6BLHjM8onQ8,394
168
171
  vellum/client/raw_client.py,sha256=IJNaTvVzigyiqHZ9g-nLZzXsV8P7aRUZHdXV0U3ddn8,112401
169
- vellum/client/reference.md,sha256=EOMv5NjpNIFecOvFluLum54Q7MoZjrPMHM12sgQ4w4Y,93546
170
- vellum/client/resources/__init__.py,sha256=zeXbZomGY-9AxQT2izDp1RXpy1bB894aCnIZuBxjZd8,1583
172
+ vellum/client/reference.md,sha256=B4-sl2IYChO3b-BH2z2NE0sjrcbxm7C4tViEcHoOXQ4,94913
173
+ vellum/client/resources/__init__.py,sha256=R10JFtO6U6QRvNubrmDIjncT7e5q4AiOKjXSK4wFuXc,1609
171
174
  vellum/client/resources/ad_hoc/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
172
175
  vellum/client/resources/ad_hoc/client.py,sha256=AbK_g9HPL2xEBHymwQ9rGO7js7X1YpNYcqPa-PxlsyM,14400
173
176
  vellum/client/resources/ad_hoc/raw_client.py,sha256=2eBoWQyB02LUqe7tF8ZZNJdF97XdeHyVY0N3O6EJIxc,24723
@@ -188,6 +191,9 @@ vellum/client/resources/document_indexes/types/document_indexes_list_request_sta
188
191
  vellum/client/resources/documents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
189
192
  vellum/client/resources/documents/client.py,sha256=1IjqPf-ucvYK4A5CdtGP_0M4y9l1vBUn_Kq1GeqisxU,16791
190
193
  vellum/client/resources/documents/raw_client.py,sha256=-_94wO-A7RoSY9bea1mp1Qskurak9BJNw9IQ1Jz_MTI,25992
194
+ vellum/client/resources/events/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
195
+ vellum/client/resources/events/client.py,sha256=Ha0IBOo33pTu13pyzJ4vK2LJXikV07KmHznuTb3LQtI,4901
196
+ vellum/client/resources/events/raw_client.py,sha256=Y854a-aKV8wnqoXCtvauMINgOnBUe6rqN1A6gQeVBm4,8369
191
197
  vellum/client/resources/folder_entities/__init__.py,sha256=BSfCsUFsB-bXr4AwYaCcEU48j5U61VFxajugpspfDS0,195
192
198
  vellum/client/resources/folder_entities/client.py,sha256=F60BvZtI4Bnk2h7Z405JshsCLx7qh_yXZkqe3rPdpus,9291
193
199
  vellum/client/resources/folder_entities/raw_client.py,sha256=uYTdVE-lpzoPzxnXIKCb_A4N8L1R7R-K0rq_0txtV04,10697
@@ -237,7 +243,7 @@ vellum/client/resources/workspace_secrets/raw_client.py,sha256=ZfiNd1NisolmK07QP
237
243
  vellum/client/resources/workspaces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
238
244
  vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKeiOA6grOYoCc0Gi3E,2936
239
245
  vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
240
- vellum/client/types/__init__.py,sha256=36Mg9VFcvjsQUndOd0ebF873ww3-hxY1LY3YOxKFvbI,66120
246
+ vellum/client/types/__init__.py,sha256=KNdDKDgSZgRCBjiZS5oD7_TBjENdXXypip8PNGN3Wpk,66347
241
247
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
242
248
  vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
243
249
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
@@ -335,9 +341,11 @@ vellum/client/types/entity_visibility.py,sha256=BX1KdYd7dirpv878XDDvtOHkMOqebM8-
335
341
  vellum/client/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wBDGA,179
336
342
  vellum/client/types/ephemeral_prompt_cache_config.py,sha256=0dXcOiUFqfiByf_PhLNWXscb4TinQPepE1S5SRxg-2c,676
337
343
  vellum/client/types/ephemeral_prompt_cache_config_type_enum.py,sha256=houFyNbNr9r2uXTBoRTA0eZJaBDe0CFTIUbsDyWK2e4,145
344
+ vellum/client/types/error_detail_response.py,sha256=ojTyfayk-06SGyQ_agQRH7R-4dqp-n1qXbQzcumXGtU,608
338
345
  vellum/client/types/error_input.py,sha256=L0b21Sa-hMCSGLbD99_oaGwsvhdJdtifEfKd-1uKn8U,750
339
346
  vellum/client/types/error_vellum_value.py,sha256=5Q1iQJ3wfB-8KoARCK7FVLUxM4Upc9CFhOcKxJjgXLE,690
340
347
  vellum/client/types/error_vellum_value_request.py,sha256=7E9ZGq5OOZLp3v-AUkyn8uXIYiz6MKUzJjfKoqvS_ws,719
348
+ vellum/client/types/event_create_response.py,sha256=_ogApuh152-AmqplxBSZPVzf_l5b3FERlDr8g6nbqnk,726
341
349
  vellum/client/types/execute_api_request_bearer_token.py,sha256=d2cP31_oLVIJ4Olm9wVbDMGfPVJoLgJgQTidJGyyJ7M,184
342
350
  vellum/client/types/execute_api_request_body.py,sha256=WySF2yj9rtx2vF4En0dfZkzPF2FNFtVRFW7P8Mw-hF8,217
343
351
  vellum/client/types/execute_api_request_headers_value.py,sha256=W9Qrqzia725vZZ_cyTzuDMLvVQ5JNkq0GHhM-XewBGk,185
@@ -355,7 +363,7 @@ vellum/client/types/execution_json_vellum_value.py,sha256=67GIAeDidKGN4yh34lEqHc
355
363
  vellum/client/types/execution_number_vellum_value.py,sha256=MYZAbUBb2yogSEIy-DBjX-zdL-_6_IpJ44Ii7d3SblQ,773
356
364
  vellum/client/types/execution_search_results_vellum_value.py,sha256=rdhnbg20rPaQRY6_al5x55nrIehKLg4zKf3B2GWEZRo,862
357
365
  vellum/client/types/execution_string_vellum_value.py,sha256=TePjZ_TwFFh1yhpu9FflWoScUH7-1T_3KkOW5SusRBk,771
358
- vellum/client/types/execution_thinking_vellum_value.py,sha256=SLlNVncFF_jieepHyiwXnYhJDIOwudZE0Opc1hQztYo,830
366
+ vellum/client/types/execution_thinking_vellum_value.py,sha256=y0XP6vDBXWNXYOZDqzmaTKNXwRYStHd2Yz51M-_VeRc,854
359
367
  vellum/client/types/execution_vellum_value.py,sha256=zYw2Iw93H_Xoe6ZgpuxYsZwHQlx0AxZ4-b9MGUOASlM,1089
360
368
  vellum/client/types/external_input_descriptor.py,sha256=nT7fF1LN7MLuJ9BF60tXTPN-Re2DIygOEA5avLKV7Mw,769
361
369
  vellum/client/types/external_parent_context.py,sha256=rmv3Tojb-cGj-nR_PiR_jIbexgQkWr51Oh1Ag3IMtTE,1481
@@ -726,8 +734,8 @@ vellum/client/types/test_suite_test_case_replace_bulk_operation_request.py,sha25
726
734
  vellum/client/types/test_suite_test_case_replaced_bulk_result.py,sha256=ayBas-IlqiB5dYIFe1LwrNZopX6Fa0UVSC9qKG6FTLU,983
727
735
  vellum/client/types/test_suite_test_case_replaced_bulk_result_data.py,sha256=7J3rm3TxTrZZYYqIn0cG7dzfzKDv2SvMiiqqEtnIRH8,615
728
736
  vellum/client/types/test_suite_test_case_upsert_bulk_operation_request.py,sha256=-2dOIFbDJ9KUWoxxM9OIcQGFUp0SQ7Dhj1dLntxuqTY,1186
729
- vellum/client/types/thinking_vellum_value.py,sha256=rUWxPBPmgWknhZsmUeySWzCh5lneFURM8RMHuaaRQi8,706
730
- vellum/client/types/thinking_vellum_value_request.py,sha256=z2XSLMLiHN77UlCunkR0hqyYbGhU8-Yo-i0Wy9_GAGE,735
737
+ vellum/client/types/thinking_vellum_value.py,sha256=bpklkAY4_8LHvfnLmywMfzh1CQhH9G-2Ct1goAUSYec,730
738
+ vellum/client/types/thinking_vellum_value_request.py,sha256=TwBEPMlU8Y3ndQPGPGp_jOfr2LaZo4BhIYMIFIndIDc,759
731
739
  vellum/client/types/token_overlapping_window_chunker_config.py,sha256=DusQI1WCr74EKHWkhU_br0gGBgzdlfuT4ecfHZl0zk0,695
732
740
  vellum/client/types/token_overlapping_window_chunker_config_request.py,sha256=nxvP5rh8VbvE8AzOFXUBCyNoooDqRS7AmgwkwhCS9ZY,702
733
741
  vellum/client/types/token_overlapping_window_chunking.py,sha256=waAqTJfw2hVCg6OhQ0FsprHJbvlOxTzjtvF8_ZdtPd0,853
@@ -775,6 +783,7 @@ vellum/client/types/workflow_deployment_release.py,sha256=yd9Okgpdm8Oob9VmIKaksZ
775
783
  vellum/client/types/workflow_deployment_release_workflow_deployment.py,sha256=ZmQhemAQEqARhkSvc9DFdgfTKQfSHvRTS9reW1Wx9dI,550
776
784
  vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=VbVrwsDHapwPSsGEt8OM9Gjs31esIqkp8ta5zrZvPTw,885
777
785
  vellum/client/types/workflow_error.py,sha256=iDMQ3Wx7E8lf6BYtBTGpeIxG46iF9mjzTpjxyJVTXgM,283
786
+ vellum/client/types/workflow_event.py,sha256=M_ra0CjUffCPqPRFJM_oR1IY4egHDGa0tY1HAoA8j5k,1532
778
787
  vellum/client/types/workflow_event_error.py,sha256=fHcTT7jmu0wPARjHtTBQl25V8aM2Cble60A831b6tVk,651
779
788
  vellum/client/types/workflow_event_execution_read.py,sha256=DRB19CN0E3r3t1mtfNLhaxiVtPKh5nJLYkCwVtomM7w,2456
780
789
  vellum/client/types/workflow_execution_actual.py,sha256=QJn7xXOtSJT30se2KdOyAYVJKjU53uhdvpjcMDIz1eM,962
@@ -868,6 +877,8 @@ vellum/errors/bad_request_error.py,sha256=3Du6OgY7n1lmD_nPvz3UQlcZMYVKqsNZIxNPl3
868
877
  vellum/errors/forbidden_error.py,sha256=ZEBfQYce8kjq0Nxe3SdX5Ka09sVEwmmz1BrhJxJLUhk,154
869
878
  vellum/errors/internal_server_error.py,sha256=9MzdtadlcIPKrmocF4pU6beXgsMICRs-krmH6AI581I,160
870
879
  vellum/errors/not_found_error.py,sha256=gC71YBdPyHR46l3RNTs0v9taVvAY0gWRFrcKpKzbbBM,154
880
+ vellum/errors/too_many_requests_error.py,sha256=A7d_dJn-ds70enMiHXLKzT-Wzq0cLKsM1INJGgE9DSY,162
881
+ vellum/errors/unauthorized_error.py,sha256=PFIzoiTS6j7gqli9Ki9SsXrxYlrQMqwOEbVYgS_Vty0,157
871
882
  vellum/evaluations/__init__.py,sha256=hNsLoHSykqXDJP-MwFvu2lExImxo9KEyEJjt_fdAzpE,77
872
883
  vellum/evaluations/constants.py,sha256=Vteml4_csZsMgo_q3-71E3JRCAoN6308TXLu5nfLhmU,116
873
884
  vellum/evaluations/exceptions.py,sha256=6Xacoyv43fJvVf6Dt6Io5a-f9vF12Tx51jzsQRNSqhY,56
@@ -914,6 +925,9 @@ vellum/resources/document_indexes/types/document_indexes_list_request_status.py,
914
925
  vellum/resources/documents/__init__.py,sha256=yRDIfAexsRoU8gCko7fy8OGBvQQtUbQgvfYbm2LpjYc,151
915
926
  vellum/resources/documents/client.py,sha256=zkktZntI-BFbQh9mJbstf2weHhJKLResD1ySTl8cW5U,158
916
927
  vellum/resources/documents/raw_client.py,sha256=G7gT6B2hM0h2F1XPAMPZ3qK_klFcG-VfABpOmotoDWY,162
928
+ vellum/resources/events/__init__.py,sha256=tNt1_rQ1juxONKgrnvJyqBWwyGABRkD9FM9zQ9mbEuE,148
929
+ vellum/resources/events/client.py,sha256=-HugQb8bikxoURi7TUdC7vnApcrmXgtyOeZo2Sr4HA8,155
930
+ vellum/resources/events/raw_client.py,sha256=yoOyhOrNKTIK3G6kKtu8HDIaf3daIw-7It35SBPDsQY,159
917
931
  vellum/resources/folder_entities/__init__.py,sha256=ztX2JE99CevexIsfAZVk0O6O_OcjoyB23CEKLOWTp7A,157
918
932
  vellum/resources/folder_entities/client.py,sha256=kmDQAr_mTAEnBcQD_phRtLBaeJQpjJXR1a4AL9Pp9Tw,164
919
933
  vellum/resources/folder_entities/raw_client.py,sha256=H5WF13_ZzhvHUUhnUj1EvVx8IOwcAe6nkXpiqy4Jyxs,168
@@ -1061,9 +1075,11 @@ vellum/types/entity_visibility.py,sha256=KEa1_msy-yanC_OYuu70RZ_tNAtfCZFcxuD39Bz
1061
1075
  vellum/types/environment_enum.py,sha256=JtZvLi5dSYGgqoI7Sk8ZV8KhZ5A0sPizfcNmvFROp5g,154
1062
1076
  vellum/types/ephemeral_prompt_cache_config.py,sha256=KjRM5Njd_1LB5P_y6XzPdEQbgmP8Uv5czJIAd1afM4c,167
1063
1077
  vellum/types/ephemeral_prompt_cache_config_type_enum.py,sha256=2UZs7ueVFNQA-v_40FoAo7sQAfg1EubzOYEepnxUqT0,177
1078
+ vellum/types/error_detail_response.py,sha256=Cr7tYmDoK52uccO5gpAvZ8qzLFjjhugp1wL6vlti6qw,159
1064
1079
  vellum/types/error_input.py,sha256=8ecGTnmZjqmxueqZyOjNkCasQ2Zg7qR0rzhDmFwLF4c,149
1065
1080
  vellum/types/error_vellum_value.py,sha256=eALdKdSBCedvLdSjhg4xJeoTzjf2fNr-BqlhRG5fS5o,156
1066
1081
  vellum/types/error_vellum_value_request.py,sha256=4wB0ZFHx9wEluEDqwY8aTYLK5Gy07Gxd6mfJ4YPsP9g,164
1082
+ vellum/types/event_create_response.py,sha256=_4MxY_fKTWzX2yNsbXr3fVOMffkGCMkAFcX4F3sCDs8,159
1067
1083
  vellum/types/execute_api_request_bearer_token.py,sha256=Xu9SNdqkvilFOWuHnrA688biVOIeiRzuwidHflx5mPg,170
1068
1084
  vellum/types/execute_api_request_body.py,sha256=ulfvgCNEXbzdnuwyRu2qMM93zIZSIGgq1PlB41pFvwQ,162
1069
1085
  vellum/types/execute_api_request_headers_value.py,sha256=lAMglvqWdhpku8kfrNGYbA6QomWunvNS9xZ92sxnIEM,171
@@ -1501,6 +1517,7 @@ vellum/types/workflow_deployment_release.py,sha256=lBnOc5Tw2-jLGWmthzkwdaLGvylcD
1501
1517
  vellum/types/workflow_deployment_release_workflow_deployment.py,sha256=8qT32r--NyJppqBizD9QP6jvM5YdcsdpGEtaKMG1RbE,185
1502
1518
  vellum/types/workflow_deployment_release_workflow_version.py,sha256=l5SJrY9z3lG5K82V2wY2sY50V40CQWKl95nDjnHu4Dc,182
1503
1519
  vellum/types/workflow_error.py,sha256=7rZcYJG5jYr4IbEvgv57G6Lxutrdg43SD8mUerd58_A,152
1520
+ vellum/types/workflow_event.py,sha256=PNvXXtxFyPeIhdcZITMbTj0f0ZGOsaBKhOaR0eQ9aOI,152
1504
1521
  vellum/types/workflow_event_error.py,sha256=n8yzIuTmfxKyGBKellmMhnCgi1d4fPkr0MvjR3sKOAI,158
1505
1522
  vellum/types/workflow_event_execution_read.py,sha256=5bZ6gkNfWuxWOuzvSPNA4QrVEdP8uGZPGN2ZpMgYBMg,167
1506
1523
  vellum/types/workflow_execution_actual.py,sha256=IrOLWopZHTwqNStG7u0xuo1OhHhD1SHz-1aXZiuJlfY,163
@@ -1703,15 +1720,15 @@ vellum/workflows/nodes/displayable/api_node/tests/__init__.py,sha256=47DEQpj8HBS
1703
1720
  vellum/workflows/nodes/displayable/api_node/tests/test_api_node.py,sha256=DZQGyq-iI9P9qvM5qtIUzb6fubyLnlJ3WbHwMUFsRs8,9527
1704
1721
  vellum/workflows/nodes/displayable/bases/__init__.py,sha256=0mWIx3qUrzllV7jqt7wN03vWGMuI1WrrLZeMLT2Cl2c,304
1705
1722
  vellum/workflows/nodes/displayable/bases/api_node/__init__.py,sha256=1jwx4WC358CLA1jgzl_UD-rZmdMm2v9Mps39ndwCD7U,64
1706
- vellum/workflows/nodes/displayable/bases/api_node/node.py,sha256=iUtdPsbJs1jwo3V5bA6qGab56z3K44_VOpLR5MDXzBQ,6640
1723
+ vellum/workflows/nodes/displayable/bases/api_node/node.py,sha256=cOYaIqimzDL6TuXNKV8BsnxB2GyMj_xDOlfieCScu7g,6757
1707
1724
  vellum/workflows/nodes/displayable/bases/api_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1708
- vellum/workflows/nodes/displayable/bases/api_node/tests/test_node.py,sha256=Pf51DIyhtUxx-pCu0zJYDB4Z5_IW5mRwkJIoPT53_9I,3894
1725
+ vellum/workflows/nodes/displayable/bases/api_node/tests/test_node.py,sha256=5C59vn_yg4r5EWioKIr658Jr1MSGX3YF4yKJokY37Xc,4726
1709
1726
  vellum/workflows/nodes/displayable/bases/base_prompt_node/__init__.py,sha256=Org3xTvgp1pA0uUXFfnJr29D3HzCey2lEdYF4zbIUgo,70
1710
1727
  vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py,sha256=ea20icDM1HB942wkH-XtXNSNCBDcjeOiN3vowkHL4fs,4477
1711
1728
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/__init__.py,sha256=Hl35IAoepRpE-j4cALaXVJIYTYOF3qszyVbxTj4kS1s,82
1712
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py,sha256=hy_fy4zImhpnHuPczKtOLhv_uOmvxvJsQA9Zl9DTmSw,12851
1729
+ vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py,sha256=KjLVJtonJ_3GT9RtjIuK56Kf4DpoybjxOrAxGhUp-J8,13102
1713
1730
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1714
- vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/test_inline_prompt_node.py,sha256=H1xEaL3vgEPAGQaF_rt8kLl46qmVJEEhcORXT7oRdPk,22626
1731
+ vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/test_inline_prompt_node.py,sha256=51JjPgWPNOOuEKOk5VQ7qchWbQ_zW-lILy1Yl59Q7A8,23455
1715
1732
  vellum/workflows/nodes/displayable/bases/prompt_deployment_node.py,sha256=0a40fkkZkFMmZN0CsWf6EP_y1H6x36EGa3WcfVNyOsM,9797
1716
1733
  vellum/workflows/nodes/displayable/bases/search_node.py,sha256=9TtFn6oNpEkpCL59QdBViUe4WPjcITajbiS7EOjOGag,6114
1717
1734
  vellum/workflows/nodes/displayable/bases/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1802,12 +1819,12 @@ vellum/workflows/resolvers/__init__.py,sha256=eH6hTvZO4IciDaf_cf7aM2vs-DkBDyJPyc
1802
1819
  vellum/workflows/resolvers/base.py,sha256=WHra9LRtlTuB1jmuNqkfVE2JUgB61Cyntn8f0b0WZg4,411
1803
1820
  vellum/workflows/runner/__init__.py,sha256=i1iG5sAhtpdsrlvwgH6B-m49JsINkiWyPWs8vyT-bqM,72
1804
1821
  vellum/workflows/runner/runner.py,sha256=sADrp593ia4auJ8fIP6jc5na3b5WaTvvBdjpkTthboY,36929
1805
- vellum/workflows/sandbox.py,sha256=xaXjegP1dg1eYEyxjb0iMIBwK4bqzMfi8KPd6lA018k,2854
1822
+ vellum/workflows/sandbox.py,sha256=jwlFFQjHDwmbVoBah_Q3i8K_BrzOt-F6TXFauiyVyIk,3021
1806
1823
  vellum/workflows/state/__init__.py,sha256=yUUdR-_Vl7UiixNDYQZ-GEM_kJI9dnOia75TtuNEsnE,60
1807
1824
  vellum/workflows/state/base.py,sha256=m9fCqbZn21GshCVCjJTD1dPZEQjFrsMXqlg7tM9fIwM,24283
1808
1825
  vellum/workflows/state/context.py,sha256=i9tQKTB2b2SBpNObtb8skTv63lQcwUDW1ZQ0qDTnGJA,5181
1809
1826
  vellum/workflows/state/delta.py,sha256=7h8wR10lRCm15SykaPj-gSEvvsMjCwYLPsOx3nsvBQg,440
1810
- vellum/workflows/state/encoder.py,sha256=9wj9za3pjLGaKh85IB71YvPDRDtHcw78wR5vyPyKWM8,2708
1827
+ vellum/workflows/state/encoder.py,sha256=HdNlabmBOcFSeY_dgn4LNtQEugyzsw3p4mvn2ChC1Io,3380
1811
1828
  vellum/workflows/state/store.py,sha256=uVe-oN73KwGV6M6YLhwZMMUQhzTQomsVfVnb8V91gVo,1147
1812
1829
  vellum/workflows/state/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1813
1830
  vellum/workflows/state/tests/test_state.py,sha256=SjQZgovETrosPUeFohaPB9egAkSVe8ptJO5O4Fk2E04,6920
@@ -1826,6 +1843,7 @@ vellum/workflows/types/tests/test_utils.py,sha256=UnZog59tR577mVwqZRqqWn2fScoOU1
1826
1843
  vellum/workflows/types/utils.py,sha256=mTctHITBybpt4855x32oCKALBEcMNLn-9cCmfEKgJHQ,6498
1827
1844
  vellum/workflows/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1828
1845
  vellum/workflows/utils/functions.py,sha256=whJkecRj71V10LM64f0g0q02LBq5nqARnNBxuJYvDHc,8773
1846
+ vellum/workflows/utils/hmac.py,sha256=JJCczc6pyV6DuE1Oa0QVfYPUN_of3zEYmGFib3OZnrE,1135
1829
1847
  vellum/workflows/utils/names.py,sha256=QLUqfJ1tmSEeUwBKTTiv_Qk3QGbInC2RSmlXfGXc8Wo,380
1830
1848
  vellum/workflows/utils/pydantic_schema.py,sha256=eR_bBtY-T0pttJP-ARwagSdCOnwPUtiT3cegm2lzDTQ,1310
1831
1849
  vellum/workflows/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1842,8 +1860,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
1842
1860
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1843
1861
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=ptMntHzVyy8ZuzNgeTuk7hREgKQ5UBdgq8VJFSGaW4Y,20832
1844
1862
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
1845
- vellum_ai-1.2.0.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1846
- vellum_ai-1.2.0.dist-info/METADATA,sha256=DY_XVUAkrUVX6xUGRfjFW_b-L6NC4xIBs83ertamHTQ,5547
1847
- vellum_ai-1.2.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1848
- vellum_ai-1.2.0.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1849
- vellum_ai-1.2.0.dist-info/RECORD,,
1863
+ vellum_ai-1.2.1.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
1864
+ vellum_ai-1.2.1.dist-info/METADATA,sha256=nEUNGhBu1caPk6Y7wL35iN4uruK97jR6QHLI-LRB5cw,5547
1865
+ vellum_ai-1.2.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1866
+ vellum_ai-1.2.1.dist-info/entry_points.txt,sha256=HCH4yc_V3J_nDv3qJzZ_nYS8llCHZViCDP1ejgCc5Ak,42
1867
+ vellum_ai-1.2.1.dist-info/RECORD,,