vellum-ai 1.7.11__py3-none-any.whl → 1.7.12__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.

Potentially problematic release.


This version of vellum-ai might be problematic. Click here for more details.

vellum/__init__.py CHANGED
@@ -31,6 +31,7 @@ from .client.types import (
31
31
  AudioPromptBlock,
32
32
  AudioVellumValue,
33
33
  AudioVellumValueRequest,
34
+ AuthTypeEnum,
34
35
  BaseOutput,
35
36
  BasicVectorizerIntfloatMultilingualE5Large,
36
37
  BasicVectorizerIntfloatMultilingualE5LargeRequest,
@@ -768,6 +769,7 @@ __all__ = [
768
769
  "AudioPromptBlock",
769
770
  "AudioVellumValue",
770
771
  "AudioVellumValueRequest",
772
+ "AuthTypeEnum",
771
773
  "BadRequestError",
772
774
  "BaseOutput",
773
775
  "BasicVectorizerIntfloatMultilingualE5Large",
@@ -27,10 +27,10 @@ class BaseClientWrapper:
27
27
 
28
28
  def get_headers(self) -> typing.Dict[str, str]:
29
29
  headers: typing.Dict[str, str] = {
30
- "User-Agent": "vellum-ai/1.7.11",
30
+ "User-Agent": "vellum-ai/1.7.12",
31
31
  "X-Fern-Language": "Python",
32
32
  "X-Fern-SDK-Name": "vellum-ai",
33
- "X-Fern-SDK-Version": "1.7.11",
33
+ "X-Fern-SDK-Version": "1.7.12",
34
34
  **(self.get_custom_headers() or {}),
35
35
  }
36
36
  if self._api_version is not None:
@@ -27,6 +27,7 @@ from .audio_input_request import AudioInputRequest
27
27
  from .audio_prompt_block import AudioPromptBlock
28
28
  from .audio_vellum_value import AudioVellumValue
29
29
  from .audio_vellum_value_request import AudioVellumValueRequest
30
+ from .auth_type_enum import AuthTypeEnum
30
31
  from .base_output import BaseOutput
31
32
  from .basic_vectorizer_intfloat_multilingual_e_5_large import BasicVectorizerIntfloatMultilingualE5Large
32
33
  from .basic_vectorizer_intfloat_multilingual_e_5_large_request import BasicVectorizerIntfloatMultilingualE5LargeRequest
@@ -747,6 +748,7 @@ __all__ = [
747
748
  "AudioPromptBlock",
748
749
  "AudioVellumValue",
749
750
  "AudioVellumValueRequest",
751
+ "AuthTypeEnum",
750
752
  "BaseOutput",
751
753
  "BasicVectorizerIntfloatMultilingualE5Large",
752
754
  "BasicVectorizerIntfloatMultilingualE5LargeRequest",
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ AuthTypeEnum = typing.Union[typing.Literal["API_KEY", "OAUTH2"], typing.Any]
@@ -16,6 +16,10 @@ IntegrationName = typing.Union[
16
16
  "GOOGLE_DRIVE",
17
17
  "GMAIL",
18
18
  "AIRTABLE",
19
+ "GAMMA",
20
+ "FIRECRAWL",
21
+ "PERPLEXITY",
22
+ "SERPAPI",
19
23
  ],
20
24
  typing.Any,
21
25
  ]
@@ -4,6 +4,7 @@ import typing
4
4
 
5
5
  import pydantic
6
6
  from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+ from .auth_type_enum import AuthTypeEnum
7
8
  from .integration_auth_config_integration import IntegrationAuthConfigIntegration
8
9
  from .integration_auth_config_integration_credential import IntegrationAuthConfigIntegrationCredential
9
10
  from .integration_credential_access_type import IntegrationCredentialAccessType
@@ -17,6 +18,7 @@ class SlimIntegrationAuthConfigRead(UniversalBaseModel):
17
18
  id: str
18
19
  integration: IntegrationAuthConfigIntegration
19
20
  integration_credentials: typing.Optional[typing.List[IntegrationAuthConfigIntegrationCredential]] = None
21
+ auth_type: typing.Optional[AuthTypeEnum] = None
20
22
  default_access_type: typing.Optional[IntegrationCredentialAccessType] = None
21
23
 
22
24
  if IS_PYDANTIC_V2:
@@ -16,15 +16,15 @@ from .workflow_execution_view_online_eval_metric_result import WorkflowExecution
16
16
 
17
17
  class SlimWorkflowExecutionRead(UniversalBaseModel):
18
18
  span_id: str
19
- parent_context: typing.Optional["WorkflowDeploymentParentContext"] = None
20
19
  start: dt.datetime
21
20
  end: typing.Optional[dt.datetime] = None
22
21
  inputs: typing.List[ExecutionVellumValue]
23
22
  outputs: typing.List[ExecutionVellumValue]
24
23
  error: typing.Optional[WorkflowError] = None
24
+ usage_results: typing.Optional[typing.List[WorkflowExecutionUsageResult]] = None
25
+ parent_context: typing.Optional["WorkflowDeploymentParentContext"] = None
25
26
  latest_actual: typing.Optional[WorkflowExecutionActual] = None
26
27
  metric_results: typing.List[WorkflowExecutionViewOnlineEvalMetricResult]
27
- usage_results: typing.Optional[typing.List[WorkflowExecutionUsageResult]] = None
28
28
 
29
29
  if IS_PYDANTIC_V2:
30
30
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -36,6 +36,7 @@ class SlimWorkflowExecutionRead(UniversalBaseModel):
36
36
  extra = pydantic.Extra.allow
37
37
 
38
38
 
39
+ from .array_vellum_value import ArrayVellumValue # noqa: E402, F401, I001
39
40
  from .api_request_parent_context import ApiRequestParentContext # noqa: E402, F401, I001
40
41
  from .external_parent_context import ExternalParentContext # noqa: E402, F401, I001
41
42
  from .node_parent_context import NodeParentContext # noqa: E402, F401, I001
@@ -44,6 +45,5 @@ from .span_link import SpanLink # noqa: E402, F401, I001
44
45
  from .workflow_deployment_parent_context import WorkflowDeploymentParentContext # noqa: E402, F401, I001
45
46
  from .workflow_parent_context import WorkflowParentContext # noqa: E402, F401, I001
46
47
  from .workflow_sandbox_parent_context import WorkflowSandboxParentContext # noqa: E402, F401, I001
47
- from .array_vellum_value import ArrayVellumValue # noqa: E402, F401, I001
48
48
 
49
49
  update_forward_refs(SlimWorkflowExecutionRead)
@@ -14,6 +14,7 @@ VellumErrorCodeEnum = typing.Union[
14
14
  "USER_DEFINED_ERROR",
15
15
  "WORKFLOW_CANCELLED",
16
16
  "NODE_CANCELLED",
17
+ "PROVIDER_QUOTA_EXCEEDED",
17
18
  ],
18
19
  typing.Any,
19
20
  ]
@@ -14,6 +14,7 @@ VellumSdkErrorCodeEnum = typing.Union[
14
14
  "PROVIDER_CREDENTIALS_UNAVAILABLE",
15
15
  "INTEGRATION_CREDENTIALS_UNAVAILABLE",
16
16
  "PROVIDER_ERROR",
17
+ "PROVIDER_QUOTA_EXCEEDED",
17
18
  "USER_DEFINED_ERROR",
18
19
  "WORKFLOW_CANCELLED",
19
20
  "NODE_CANCELLED",
@@ -17,15 +17,15 @@ from .workflow_execution_view_online_eval_metric_result import WorkflowExecution
17
17
 
18
18
  class WorkflowEventExecutionRead(UniversalBaseModel):
19
19
  span_id: str
20
- parent_context: typing.Optional["WorkflowDeploymentParentContext"] = None
21
20
  start: dt.datetime
22
21
  end: typing.Optional[dt.datetime] = None
23
22
  inputs: typing.List[ExecutionVellumValue]
24
23
  outputs: typing.List[ExecutionVellumValue]
25
24
  error: typing.Optional[WorkflowError] = None
25
+ usage_results: typing.Optional[typing.List[WorkflowExecutionUsageResult]] = None
26
+ parent_context: typing.Optional["WorkflowDeploymentParentContext"] = None
26
27
  latest_actual: typing.Optional[WorkflowExecutionActual] = None
27
28
  metric_results: typing.List[WorkflowExecutionViewOnlineEvalMetricResult]
28
- usage_results: typing.Optional[typing.List[WorkflowExecutionUsageResult]] = None
29
29
  spans: typing.List[VellumSpan]
30
30
  state: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
31
31
 
@@ -39,6 +39,7 @@ class WorkflowEventExecutionRead(UniversalBaseModel):
39
39
  extra = pydantic.Extra.allow
40
40
 
41
41
 
42
+ from .array_vellum_value import ArrayVellumValue # noqa: E402, F401, I001
42
43
  from .api_request_parent_context import ApiRequestParentContext # noqa: E402, F401, I001
43
44
  from .external_parent_context import ExternalParentContext # noqa: E402, F401, I001
44
45
  from .node_parent_context import NodeParentContext # noqa: E402, F401, I001
@@ -47,6 +48,5 @@ from .span_link import SpanLink # noqa: E402, F401, I001
47
48
  from .workflow_deployment_parent_context import WorkflowDeploymentParentContext # noqa: E402, F401, I001
48
49
  from .workflow_parent_context import WorkflowParentContext # noqa: E402, F401, I001
49
50
  from .workflow_sandbox_parent_context import WorkflowSandboxParentContext # noqa: E402, F401, I001
50
- from .array_vellum_value import ArrayVellumValue # noqa: E402, F401, I001
51
51
 
52
52
  update_forward_refs(WorkflowEventExecutionRead)
@@ -15,6 +15,7 @@ WorkflowExecutionEventErrorCode = typing.Union[
15
15
  "LLM_PROVIDER",
16
16
  "INVALID_TEMPLATE",
17
17
  "INVALID_INPUTS",
18
+ "PROVIDER_QUOTA_EXCEEDED",
18
19
  "USER_DEFINED_ERROR",
19
20
  ],
20
21
  typing.Any,
@@ -9,6 +9,7 @@ from .vellum_code_resource_definition import VellumCodeResourceDefinition
9
9
 
10
10
  class WorkflowExecutionSnapshottedBody(UniversalBaseModel):
11
11
  workflow_definition: VellumCodeResourceDefinition
12
+ edited_by: typing.Optional[VellumCodeResourceDefinition] = None
12
13
  state: typing.Dict[str, typing.Optional[typing.Any]]
13
14
 
14
15
  if IS_PYDANTIC_V2:
@@ -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.auth_type_enum import *
@@ -87,17 +87,20 @@ class BasePromptNode(BaseNode[StateType], Generic[StateType]):
87
87
  raise NodeException(
88
88
  message=e.body.get("detail", "Provider credentials is missing or unavailable"),
89
89
  code=WorkflowErrorCode.PROVIDER_CREDENTIALS_UNAVAILABLE,
90
+ raw_data=e.body,
90
91
  )
91
92
 
92
93
  elif e.status_code and e.status_code >= 400 and e.status_code < 500 and isinstance(e.body, dict):
93
94
  raise NodeException(
94
95
  message=e.body.get("detail", "Failed to execute Prompt"),
95
96
  code=WorkflowErrorCode.INVALID_INPUTS,
97
+ raw_data=e.body,
96
98
  ) from e
97
99
 
98
100
  raise NodeException(
99
101
  message="Failed to execute Prompt",
100
102
  code=WorkflowErrorCode.INTERNAL_ERROR,
103
+ raw_data=e.body,
101
104
  ) from e
102
105
 
103
106
  def __directly_emit_workflow_output__(
@@ -197,6 +197,9 @@ def test_inline_prompt_node__api_error__invalid_inputs_node_exception(
197
197
  assert e.value.code == expected_code
198
198
  assert e.value.message == expected_message
199
199
 
200
+ # AND the node exception includes the response body in raw_data
201
+ assert e.value.raw_data == exception.body
202
+
200
203
 
201
204
  def test_inline_prompt_node__chat_history_inputs(vellum_adhoc_prompt_client):
202
205
  # GIVEN a prompt node with a chat history input
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 1.7.11
3
+ Version: 1.7.12
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.9,<4.0
@@ -158,12 +158,12 @@ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50P
158
158
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=thzGsNzYCRXXdaC5yk1ZjtXrIO6uPdSnzdapKLCOsC8,6241
159
159
  vellum_ee/workflows/tests/test_server.py,sha256=2_n84q_QZN_zW2rZgDenQUXM3x43TcPsRs1fDA6BK1U,29805
160
160
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
161
- vellum/__init__.py,sha256=6dkyRHmIKuQPzL_z3QLVUrbkAF-HJKDhDSMCnf4ZsKw,49502
161
+ vellum/__init__.py,sha256=dhTWMEjt7OThAeMIhO0we-kI8mBj7Juy7Lrse7RuZR0,49540
162
162
  vellum/client/README.md,sha256=flqu57ubZNTfpq60CdLtJC9gp4WEkyjb_n_eZ4OYf9w,6497
163
163
  vellum/client/__init__.py,sha256=rMnKRqL5-356SBc-rfm56MkO87PuAi2mtcfBszcJU1M,74316
164
164
  vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
165
165
  vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
166
- vellum/client/core/client_wrapper.py,sha256=KKrmb0ch50fjF5NTYG5BivGPOkXNmN6adUXv_VzzS9s,2842
166
+ vellum/client/core/client_wrapper.py,sha256=M-v_g-XgM1d4Gs8cdKXxkGCtbhLuB46z9XvEHCP0u34,2842
167
167
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
168
168
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
169
169
  vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -269,7 +269,7 @@ vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKei
269
269
  vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
270
270
  vellum/client/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
271
  vellum/client/tests/test_utils.py,sha256=zk8z45-2xrm9sZ2hq8PTqY8MXmXtPqMqYK0VBBX0GHg,1176
272
- vellum/client/types/__init__.py,sha256=mviyigR9JByvGdgCOqfY6DyrExvkCnN6PXBEMRsY3pw,74926
272
+ vellum/client/types/__init__.py,sha256=e98Ekl0t25X8kuhn-W0pceTSoXFPmECG4vcCdRXvlkU,74987
273
273
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
274
274
  vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
275
275
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
@@ -295,6 +295,7 @@ vellum/client/types/audio_input_request.py,sha256=dtmM17yqCecZj1vJn3HK6IMF2rpXPw
295
295
  vellum/client/types/audio_prompt_block.py,sha256=5GXedTnmZF7vDiq-sIDMtksm3CExNNYoJVXMgRnmuR8,977
296
296
  vellum/client/types/audio_vellum_value.py,sha256=TPZYq8sjlFFhSfHGif9OuGVWUtzeZ4LjDPYcLXDjI7I,709
297
297
  vellum/client/types/audio_vellum_value_request.py,sha256=Hn4qkUV5hBNaNxdmwDA18BtmLxOFqwLeOdKI7k8HHJk,738
298
+ vellum/client/types/auth_type_enum.py,sha256=7lZelL6Vu_fPOJgtGnm_h5h7X1rPziQxRweuOG8iKao,157
298
299
  vellum/client/types/base_output.py,sha256=-O5DOk4K11MKQU8otOVeu3HMjtFdKLmpKHgYyXq1DXc,679
299
300
  vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=D1Fs9_9Tm8XuiB4ErmkdHqXWq6nvbZX6rYObnKaSDTA,791
300
301
  vellum/client/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=7rJ589uXvc-WotTpRoBQjz6PE2bnuYBBms3RlyC3tLI,798
@@ -489,7 +490,7 @@ vellum/client/types/instructor_vectorizer_config_request.py,sha256=B5Wy5FI8utwi4
489
490
  vellum/client/types/integration_auth_config_integration.py,sha256=W3DrzVPwLrqm0wCYVF-sHyQPoKNxoliFgFJWEwW_Yqc,710
490
491
  vellum/client/types/integration_auth_config_integration_credential.py,sha256=lUNuJ1GyFps3M85Mff1C-SAeEacCMkJdmayFfYrTFXA,547
491
492
  vellum/client/types/integration_credential_access_type.py,sha256=sWkuDjW3aD7ApZ1xQ7Bu8g5kCIwqUqzm1TDliUQWeRI,178
492
- vellum/client/types/integration_name.py,sha256=0MUPWDmNlEX-qUXxrKvrGSAVYj2cjj-B6nYuz72hL1k,398
493
+ vellum/client/types/integration_name.py,sha256=LOboR5sP9EQZgT2rFNNScbTbO71KOxr6TbuxWXYgwOE,477
493
494
  vellum/client/types/integration_provider.py,sha256=lIh3yPyPEzmSAu8L4Gsd-iDkmDSNobo0_TB75zMtIXk,129
494
495
  vellum/client/types/integration_read.py,sha256=sUNCS01TIlHPJHEH3ZheIbPi-CplbFQ5XAV1QtOO1Gg,1035
495
496
  vellum/client/types/invoked_port.py,sha256=nw2k-y7NrpcH6T1V96U3F8_pbrsceqBPIz3RQXN8gJY,518
@@ -709,11 +710,11 @@ vellum/client/types/slim_composio_tool_definition.py,sha256=1wQRXqS4-DVq0JO8F7L2
709
710
  vellum/client/types/slim_deployment_read.py,sha256=lEJ8Fx7QSmqjEK-LcR0y_hX2ywcaPbYjxINwPGy_ofw,1733
710
711
  vellum/client/types/slim_document.py,sha256=aytvaz8SF6MSSEA3iLXP7ZgZOw33CA-_bv2iSj5cH24,2409
711
712
  vellum/client/types/slim_document_document_to_document_index.py,sha256=Ogo8OFjtmcHjDmIynB9vckfjSZxFNhKM-cYpqSfREGI,1515
712
- vellum/client/types/slim_integration_auth_config_read.py,sha256=hfC4ABz7g1zc6A30TyyBA-W55TUZRzkFMf0iMjHgBSc,1113
713
+ vellum/client/types/slim_integration_auth_config_read.py,sha256=Mbn1DjJIJJjkqrtaW_93XecMPOQK8phPBVJm2LwNhu8,1206
713
714
  vellum/client/types/slim_integration_read.py,sha256=hKc9a85Vi7WNIq6JDPABettHUz-vmV-ViXRsoIpD_MY,754
714
715
  vellum/client/types/slim_release_review.py,sha256=vWNkPXk5wZ_scHsWHz_77PfMZRDn-4qUkqVbCKqY1zQ,747
715
716
  vellum/client/types/slim_workflow_deployment.py,sha256=jIciGPCW9QNtDRdq3w_zUdrrE4cg1LWkcoyGM-L6cs0,2085
716
- vellum/client/types/slim_workflow_execution_read.py,sha256=6Ep2iQ6tWTCGxzvAh4t3G_4BjHQ3_JZ9WFdc81XGqkA,2302
717
+ vellum/client/types/slim_workflow_execution_read.py,sha256=NHNLs5Uf6YvrRZbFnnaYj2iTe2zozsbd5M-tZixu9jU,2302
717
718
  vellum/client/types/span_link.py,sha256=roO93-xRnqZy2hx9WJFNZW46o8l2bGf3ugeaBepegr4,1433
718
719
  vellum/client/types/span_link_type_enum.py,sha256=SQsPKp1Jb8PWE2tkCHt9d5fZP8Oz77vG8_VYKF-h9J4,186
719
720
  vellum/client/types/streaming_ad_hoc_execute_prompt_event.py,sha256=BZZHXI_vq28VAmRbbIIK2wyRSkQpWfOPD7kiydhQmd8,1147
@@ -845,13 +846,13 @@ vellum/client/types/vellum_code_resource_definition.py,sha256=XdueTR342BDjevZ3kt
845
846
  vellum/client/types/vellum_document.py,sha256=qwXqMS2Eud2a5KmF8QHhU_vJzDX0g5cesrCpmBqREsA,604
846
847
  vellum/client/types/vellum_document_request.py,sha256=P9vA7ZDNeaHNlMqyzfl-ZD4bpdf-xA5mH8R1QuOAmOY,611
847
848
  vellum/client/types/vellum_error.py,sha256=G4WSD-w_skoDDnsAt-TtImt-hZT-Sc8LjHvERBUVnhE,691
848
- vellum/client/types/vellum_error_code_enum.py,sha256=aqRRPpcpagYMJ-TDBb-V9xyj2cubwP9ygNO4NaO1Y8s,477
849
+ vellum/client/types/vellum_error_code_enum.py,sha256=vMmcp99RWQK5a4OqQ58HxZUgFSwFzGsuuBLcgxjOw7U,512
849
850
  vellum/client/types/vellum_error_request.py,sha256=7l4Ux6wj3C9BdSXUPBrtxECsAirmvaLU42Y23VqncBU,698
850
851
  vellum/client/types/vellum_image.py,sha256=LAGUYBDsT0bmMOqgbaeCTCy2w4zAeHEyUIgPtmdjjJ4,601
851
852
  vellum/client/types/vellum_image_request.py,sha256=6DoI2AdJIG8NShHSslpHvsFUw5PwIMconjlHSipOP5Q,608
852
853
  vellum/client/types/vellum_node_execution_event.py,sha256=-MXat2wAZx4sx3JRp7gwJIOInPNwPMDpZmXtP8NC3O8,736
853
854
  vellum/client/types/vellum_sdk_error.py,sha256=oURNuw5zH4HqV6Ygw0MgVWH2DcuxekWvS_ZXA8tU31I,704
854
- vellum/client/types/vellum_sdk_error_code_enum.py,sha256=zyPoP7V-uooGdBlVjanveQbaiHRumjAXsHwH_Stg8gU,577
855
+ vellum/client/types/vellum_sdk_error_code_enum.py,sha256=M_NfzXsdL4VxTpDbj1KsMPHbZoNU6IH7tEJKuz57rwI,612
855
856
  vellum/client/types/vellum_secret.py,sha256=04WlBWphqiJSUKM2NeJE32IDt-ZpVO_LOXkpXvBh3f0,519
856
857
  vellum/client/types/vellum_span.py,sha256=dmZOBXlDeXx4eLvBJBiOp07xuyjhisgXgnvYFSmctYE,259
857
858
  vellum/client/types/vellum_value.py,sha256=douOrlRh2ko1gmN8oDjsaoAEtyDcfq-OV_GThW92GNk,1188
@@ -882,13 +883,13 @@ vellum/client/types/workflow_deployment_release_workflow_version.py,sha256=VbVrw
882
883
  vellum/client/types/workflow_error.py,sha256=iDMQ3Wx7E8lf6BYtBTGpeIxG46iF9mjzTpjxyJVTXgM,283
883
884
  vellum/client/types/workflow_event.py,sha256=M_ra0CjUffCPqPRFJM_oR1IY4egHDGa0tY1HAoA8j5k,1532
884
885
  vellum/client/types/workflow_event_error.py,sha256=qNqSGvPOLODPTiaWmsUKyTx9W91JDIm9r9s05zsTsfg,779
885
- vellum/client/types/workflow_event_execution_read.py,sha256=DRB19CN0E3r3t1mtfNLhaxiVtPKh5nJLYkCwVtomM7w,2456
886
+ vellum/client/types/workflow_event_execution_read.py,sha256=9AZGartKk8qZxepwmjOKEIcWGxGUIOlusZqCxpfgrOw,2456
886
887
  vellum/client/types/workflow_execution_actual.py,sha256=QJn7xXOtSJT30se2KdOyAYVJKjU53uhdvpjcMDIz1eM,962
887
888
  vellum/client/types/workflow_execution_actual_chat_history_request.py,sha256=E3Vt4l6PpE24_teWe3Kfu_4z1sbosaz_Uk1iUI9cZ-s,1957
888
889
  vellum/client/types/workflow_execution_actual_json_request.py,sha256=jLsQxdg7SVyUkdu_Gyo3iDKgZcQnO5hsP0PHPsiGwrg,1895
889
890
  vellum/client/types/workflow_execution_actual_string_request.py,sha256=syFCXeB4MwjKblXfSBNfCSG4dJIR8Ww937gTcmTPh1w,1859
890
891
  vellum/client/types/workflow_execution_detail.py,sha256=R1tONdNarehoqk7zsK0D2wCSJEe9WauZmKHp5yKVLB8,2186
891
- vellum/client/types/workflow_execution_event_error_code.py,sha256=8VL4wHTEy-AdQhApnOsz2L2wXcuo5LBqgUAVnaQ-pXM,568
892
+ vellum/client/types/workflow_execution_event_error_code.py,sha256=z4ZFWSlsKQKGcgZvqygtSliJBoeWKR9K-UqS7QTxx5U,603
892
893
  vellum/client/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
893
894
  vellum/client/types/workflow_execution_fulfilled_body.py,sha256=dQYhKU5D7vZR36zyBHUbXUNv_TjnnMNNPvxpPmH0-OU,797
894
895
  vellum/client/types/workflow_execution_fulfilled_event.py,sha256=eZ_DtDmRK-S2Q0LEJHlGS_FPd-UVvpgetRXqvWlSh4M,1925
@@ -901,7 +902,7 @@ vellum/client/types/workflow_execution_rejected_body.py,sha256=biJQ8_PDeJGELgjjU
901
902
  vellum/client/types/workflow_execution_rejected_event.py,sha256=j1QzOxkcmcFfA9zHOiKBnv7qF_YrFePq380us1nnYEk,1918
902
903
  vellum/client/types/workflow_execution_resumed_body.py,sha256=L0Atzk7328tpjhRKC0Y8AoWuMebtdHzd4gBjYkvKDIM,649
903
904
  vellum/client/types/workflow_execution_resumed_event.py,sha256=7PTH1rLBlvC4414LG3L3AdMRrJEmtrJSOWwM5sptAZc,1911
904
- vellum/client/types/workflow_execution_snapshotted_body.py,sha256=POAj0l9EKZnJP79sQq4ZfW-a1SZyBNmvcqPJlvIGOfk,710
905
+ vellum/client/types/workflow_execution_snapshotted_body.py,sha256=1r0dnZJNAy34ckeNfCvkSphs_AfVbKhn0IJKvB06Yyo,778
905
906
  vellum/client/types/workflow_execution_snapshotted_event.py,sha256=sEQ-fqW0VmiuigFZnPvtd2wNZG462-rnsk4Zi8qlA6I,1939
906
907
  vellum/client/types/workflow_execution_span.py,sha256=xeePJEONTakpoEf1aodhs10E8GPoxy7oSdogZARxYO0,1984
907
908
  vellum/client/types/workflow_execution_span_attributes.py,sha256=OE_uL3qChioClcS3P46EW6ajLEyDsNl9sQJ13Tw50cY,560
@@ -1116,6 +1117,7 @@ vellum/types/audio_input_request.py,sha256=vmN-KTn6OEuE6MK2t_lllo9lr1ln1839PjwgA
1116
1117
  vellum/types/audio_prompt_block.py,sha256=zpQcvY3Fic82mPlPyOLCjZBBq0dFyCyKuGRkYNDWQko,156
1117
1118
  vellum/types/audio_vellum_value.py,sha256=-9HkLXeBD-IMh_TwKdmQVfAD_F0et2gYKT2ykb_jaAM,156
1118
1119
  vellum/types/audio_vellum_value_request.py,sha256=YuwrbVZK1EuUKkir5H9-ipeLTPfSF8h6Yy5lS_pAZg4,164
1120
+ vellum/types/auth_type_enum.py,sha256=SkvJdAKXtyxgPiH6tVfqAzwhiM_-kjUZ9RzSoYJYPO4,152
1119
1121
  vellum/types/base_output.py,sha256=5fBRPScgqh4m13rbbfxszK03o8zg-Sa_bGp2kTmacMo,149
1120
1122
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=4PC3AVVZh7r0zbeY4pV-tpAFkt1EAuRjI0Rsc-s6WX0,186
1121
1123
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=NQd8lYb9HnO2UXOuri-8CdmN5lFdaRpXMdN3BJOm9JA,194
@@ -1927,7 +1929,7 @@ vellum/workflows/nodes/displayable/bases/api_node/node.py,sha256=cOYaIqimzDL6TuX
1927
1929
  vellum/workflows/nodes/displayable/bases/api_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1928
1930
  vellum/workflows/nodes/displayable/bases/api_node/tests/test_node.py,sha256=5C59vn_yg4r5EWioKIr658Jr1MSGX3YF4yKJokY37Xc,4726
1929
1931
  vellum/workflows/nodes/displayable/bases/base_prompt_node/__init__.py,sha256=Org3xTvgp1pA0uUXFfnJr29D3HzCey2lEdYF4zbIUgo,70
1930
- vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py,sha256=ZIAXMreHcs3OR-djlkXgqF6tw7-Qfl8KUvjmJ7qRU3U,5204
1932
+ vellum/workflows/nodes/displayable/bases/base_prompt_node/node.py,sha256=oN1GF47DPj1WgED1c5SO2XBInU7Gqaa6rAZGKsTFgv8,5299
1931
1933
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/__init__.py,sha256=Hl35IAoepRpE-j4cALaXVJIYTYOF3qszyVbxTj4kS1s,82
1932
1934
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py,sha256=ITxAa1HWF6OPdcKg0DdTK7YP94ezzzWVyZzCRMiybIg,18638
1933
1935
  vellum/workflows/nodes/displayable/bases/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1960,7 +1962,7 @@ vellum/workflows/nodes/displayable/guardrail_node/tests/test_node.py,sha256=X2pd
1960
1962
  vellum/workflows/nodes/displayable/inline_prompt_node/__init__.py,sha256=gSUOoEZLlrx35-tQhSAd3An8WDwBqyiQh-sIebLU9wU,74
1961
1963
  vellum/workflows/nodes/displayable/inline_prompt_node/node.py,sha256=0O1dksk0h6-V-Mp5_yTuU3PFrUpLIgsqVMTP8mxTryU,2227
1962
1964
  vellum/workflows/nodes/displayable/inline_prompt_node/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1963
- vellum/workflows/nodes/displayable/inline_prompt_node/tests/test_node.py,sha256=bBHs90mV5SZ3rJPAL0wx4WWyawUA406LgMPOdvpZC_A,10923
1965
+ vellum/workflows/nodes/displayable/inline_prompt_node/tests/test_node.py,sha256=CukYNAH8Y1NP0yJGz_gFtK0L-DLlU-K-06cmxEJ0Nts,11038
1964
1966
  vellum/workflows/nodes/displayable/merge_node/__init__.py,sha256=J8IC08dSH7P76wKlNuxe1sn7toNGtSQdFirUbtPDEs0,60
1965
1967
  vellum/workflows/nodes/displayable/merge_node/node.py,sha256=_zHW9fReWdpiM3GiUzdEgyOSznRqkPsTj-XKD6Oja8I,563
1966
1968
  vellum/workflows/nodes/displayable/note_node/__init__.py,sha256=KWA3P4fyYJ-fOTky8qNGlcOotQ-HeHJ9AjZt6mRQmCE,58
@@ -2085,8 +2087,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
2085
2087
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2086
2088
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=Boa-_m9ii2Qsa1RvVM-VYniF7zCpzGgEGy-OnPZkrHg,23941
2087
2089
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
2088
- vellum_ai-1.7.11.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
2089
- vellum_ai-1.7.11.dist-info/METADATA,sha256=p2zWh-k4nsa4OIxTQD0lXIlEvmphl3BdF0EMszAVpV0,5548
2090
- vellum_ai-1.7.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2091
- vellum_ai-1.7.11.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
2092
- vellum_ai-1.7.11.dist-info/RECORD,,
2090
+ vellum_ai-1.7.12.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
2091
+ vellum_ai-1.7.12.dist-info/METADATA,sha256=RVcfzsZFXUGMEvDOJb3-3uXAof2PhIEjgmy9dfcjOm8,5548
2092
+ vellum_ai-1.7.12.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2093
+ vellum_ai-1.7.12.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
2094
+ vellum_ai-1.7.12.dist-info/RECORD,,