vellum-ai 0.8.30__py3-none-any.whl → 0.9.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
vellum/__init__.py CHANGED
@@ -18,8 +18,6 @@ from .types import (
18
18
  ArrayVariableValue,
19
19
  ArrayVariableValueItem,
20
20
  ArrayVellumValue,
21
- ArrayVellumValueItem,
22
- ArrayVellumValueItemRequest,
23
21
  ArrayVellumValueRequest,
24
22
  BasicVectorizerIntfloatMultilingualE5Large,
25
23
  BasicVectorizerIntfloatMultilingualE5LargeRequest,
@@ -513,8 +511,6 @@ __all__ = [
513
511
  "ArrayVariableValue",
514
512
  "ArrayVariableValueItem",
515
513
  "ArrayVellumValue",
516
- "ArrayVellumValueItem",
517
- "ArrayVellumValueItemRequest",
518
514
  "ArrayVellumValueRequest",
519
515
  "AsyncVellum",
520
516
  "BadRequestError",
@@ -17,7 +17,7 @@ class BaseClientWrapper:
17
17
  headers: typing.Dict[str, str] = {
18
18
  "X-Fern-Language": "Python",
19
19
  "X-Fern-SDK-Name": "vellum-ai",
20
- "X-Fern-SDK-Version": "0.8.30",
20
+ "X-Fern-SDK-Version": "0.9.0",
21
21
  }
22
22
  headers["X_API_KEY"] = self.api_key
23
23
  return headers
vellum/types/__init__.py CHANGED
@@ -17,8 +17,6 @@ from .array_input_request import ArrayInputRequest
17
17
  from .array_variable_value import ArrayVariableValue
18
18
  from .array_variable_value_item import ArrayVariableValueItem
19
19
  from .array_vellum_value import ArrayVellumValue
20
- from .array_vellum_value_item import ArrayVellumValueItem
21
- from .array_vellum_value_item_request import ArrayVellumValueItemRequest
22
20
  from .array_vellum_value_request import ArrayVellumValueRequest
23
21
  from .basic_vectorizer_intfloat_multilingual_e_5_large import BasicVectorizerIntfloatMultilingualE5Large
24
22
  from .basic_vectorizer_intfloat_multilingual_e_5_large_request import BasicVectorizerIntfloatMultilingualE5LargeRequest
@@ -504,8 +502,6 @@ __all__ = [
504
502
  "ArrayVariableValue",
505
503
  "ArrayVariableValueItem",
506
504
  "ArrayVellumValue",
507
- "ArrayVellumValueItem",
508
- "ArrayVellumValueItemRequest",
509
505
  "ArrayVellumValueRequest",
510
506
  "BasicVectorizerIntfloatMultilingualE5Large",
511
507
  "BasicVectorizerIntfloatMultilingualE5LargeRequest",
@@ -5,7 +5,7 @@ from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value_request import ArrayVellumValueRequest
6
6
  import pydantic
7
7
  import typing
8
- from .array_vellum_value_item_request import ArrayVellumValueItemRequest
8
+ from .vellum_value_request import VellumValueRequest
9
9
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
  from ..core.pydantic_utilities import update_forward_refs
11
11
 
@@ -21,7 +21,7 @@ class ArrayInputRequest(UniversalBaseModel):
21
21
  """
22
22
 
23
23
  type: typing.Literal["ARRAY"] = "ARRAY"
24
- value: typing.List[ArrayVellumValueItemRequest]
24
+ value: typing.List[VellumValueRequest]
25
25
 
26
26
  if IS_PYDANTIC_V2:
27
27
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -14,7 +14,7 @@ class ArrayVellumValue(UniversalBaseModel):
14
14
  """
15
15
 
16
16
  type: typing.Literal["ARRAY"] = "ARRAY"
17
- value: typing.Optional[typing.List["ArrayVellumValueItem"]] = None
17
+ value: typing.Optional[typing.List["VellumValue"]] = None
18
18
 
19
19
  if IS_PYDANTIC_V2:
20
20
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -26,6 +26,6 @@ class ArrayVellumValue(UniversalBaseModel):
26
26
  extra = pydantic.Extra.allow
27
27
 
28
28
 
29
- from .array_vellum_value_item import ArrayVellumValueItem # noqa: E402
29
+ from .vellum_value import VellumValue # noqa: E402
30
30
 
31
31
  update_forward_refs(ArrayVellumValue)
@@ -14,7 +14,7 @@ class ArrayVellumValueRequest(UniversalBaseModel):
14
14
  """
15
15
 
16
16
  type: typing.Literal["ARRAY"] = "ARRAY"
17
- value: typing.Optional[typing.List["ArrayVellumValueItemRequest"]] = None
17
+ value: typing.Optional[typing.List["VellumValueRequest"]] = None
18
18
 
19
19
  if IS_PYDANTIC_V2:
20
20
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -26,6 +26,6 @@ class ArrayVellumValueRequest(UniversalBaseModel):
26
26
  extra = pydantic.Extra.allow
27
27
 
28
28
 
29
- from .array_vellum_value_item_request import ArrayVellumValueItemRequest # noqa: E402
29
+ from .vellum_value_request import VellumValueRequest # noqa: E402
30
30
 
31
31
  update_forward_refs(ArrayVellumValueRequest)
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -13,7 +13,7 @@ from ..core.pydantic_utilities import update_forward_refs
13
13
  class CodeExecutionNodeArrayResult(UniversalBaseModel):
14
14
  id: str
15
15
  type: typing.Literal["ARRAY"] = "ARRAY"
16
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
16
+ value: typing.Optional[typing.List[VellumValue]] = 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
@@ -5,7 +5,7 @@ from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import pydantic
7
7
  import typing
8
- from .array_vellum_value_item import ArrayVellumValueItem
8
+ from .vellum_value import VellumValue
9
9
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
  from ..core.pydantic_utilities import update_forward_refs
11
11
 
@@ -22,7 +22,7 @@ class ExecutionArrayVellumValue(UniversalBaseModel):
22
22
 
23
23
  name: str
24
24
  type: typing.Literal["ARRAY"] = "ARRAY"
25
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
25
+ value: typing.Optional[typing.List[VellumValue]] = None
26
26
 
27
27
  if IS_PYDANTIC_V2:
28
28
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -16,7 +16,7 @@ class NamedTestCaseArrayVariableValue(UniversalBaseModel):
16
16
  """
17
17
 
18
18
  type: typing.Literal["ARRAY"] = "ARRAY"
19
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
19
+ value: typing.Optional[typing.List[VellumValue]] = None
20
20
  name: str
21
21
 
22
22
  if IS_PYDANTIC_V2:
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value_request import ArrayVellumValueRequest
6
6
  import typing
7
- from .array_vellum_value_item_request import ArrayVellumValueItemRequest
7
+ from .vellum_value_request import VellumValueRequest
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -16,7 +16,7 @@ class NamedTestCaseArrayVariableValueRequest(UniversalBaseModel):
16
16
  """
17
17
 
18
18
  type: typing.Literal["ARRAY"] = "ARRAY"
19
- value: typing.Optional[typing.List[ArrayVellumValueItemRequest]] = None
19
+ value: typing.Optional[typing.List[VellumValueRequest]] = None
20
20
  name: str
21
21
 
22
22
  if IS_PYDANTIC_V2:
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -14,7 +14,7 @@ class NodeInputCompiledArrayValue(UniversalBaseModel):
14
14
  node_input_id: str
15
15
  key: str
16
16
  type: typing.Literal["ARRAY"] = "ARRAY"
17
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
17
+ value: typing.Optional[typing.List[VellumValue]] = None
18
18
 
19
19
  if IS_PYDANTIC_V2:
20
20
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from .workflow_node_result_event_state import WorkflowNodeResultEventState
9
9
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
  import pydantic
@@ -17,7 +17,7 @@ class NodeOutputCompiledArrayValue(UniversalBaseModel):
17
17
  """
18
18
 
19
19
  type: typing.Literal["ARRAY"] = "ARRAY"
20
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
20
+ value: typing.Optional[typing.List[VellumValue]] = None
21
21
  node_output_id: str
22
22
  state: typing.Optional[WorkflowNodeResultEventState] = None
23
23
 
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -13,7 +13,7 @@ from ..core.pydantic_utilities import update_forward_refs
13
13
  class TemplatingNodeArrayResult(UniversalBaseModel):
14
14
  id: str
15
15
  type: typing.Literal["ARRAY"] = "ARRAY"
16
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
16
+ value: typing.Optional[typing.List[VellumValue]] = 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
@@ -5,7 +5,7 @@ from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
7
  import pydantic
8
- from .array_vellum_value_item import ArrayVellumValueItem
8
+ from .vellum_value import VellumValue
9
9
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
  from ..core.pydantic_utilities import update_forward_refs
11
11
 
@@ -18,7 +18,7 @@ class TerminalNodeArrayResult(UniversalBaseModel):
18
18
  """
19
19
 
20
20
  type: typing.Literal["ARRAY"] = "ARRAY"
21
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
21
+ value: typing.Optional[typing.List[VellumValue]] = None
22
22
 
23
23
  if IS_PYDANTIC_V2:
24
24
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -18,7 +18,7 @@ class TestCaseArrayVariableValue(UniversalBaseModel):
18
18
  variable_id: str
19
19
  name: str
20
20
  type: typing.Literal["ARRAY"] = "ARRAY"
21
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
21
+ value: typing.Optional[typing.List[VellumValue]] = None
22
22
 
23
23
  if IS_PYDANTIC_V2:
24
24
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import typing
7
- from .array_vellum_value_item import ArrayVellumValueItem
7
+ from .vellum_value import VellumValue
8
8
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
  from ..core.pydantic_utilities import update_forward_refs
@@ -17,7 +17,7 @@ class TestSuiteRunExecutionArrayOutput(UniversalBaseModel):
17
17
 
18
18
  name: str
19
19
  type: typing.Literal["ARRAY"] = "ARRAY"
20
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
20
+ value: typing.Optional[typing.List[VellumValue]] = None
21
21
  output_variable_id: str
22
22
 
23
23
  if IS_PYDANTIC_V2:
@@ -1,5 +1,6 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
+ from __future__ import annotations
3
4
  import typing
4
5
  from .string_vellum_value import StringVellumValue
5
6
  from .number_vellum_value import NumberVellumValue
@@ -7,10 +8,12 @@ from .json_vellum_value import JsonVellumValue
7
8
  from .image_vellum_value import ImageVellumValue
8
9
  from .function_call_vellum_value import FunctionCallVellumValue
9
10
  from .error_vellum_value import ErrorVellumValue
10
- from .array_vellum_value import ArrayVellumValue
11
11
  from .chat_history_vellum_value import ChatHistoryVellumValue
12
12
  from .search_results_vellum_value import SearchResultsVellumValue
13
+ import typing
13
14
 
15
+ if typing.TYPE_CHECKING:
16
+ from .array_vellum_value import ArrayVellumValue
14
17
  VellumValue = typing.Union[
15
18
  StringVellumValue,
16
19
  NumberVellumValue,
@@ -18,7 +21,7 @@ VellumValue = typing.Union[
18
21
  ImageVellumValue,
19
22
  FunctionCallVellumValue,
20
23
  ErrorVellumValue,
21
- ArrayVellumValue,
24
+ "ArrayVellumValue",
22
25
  ChatHistoryVellumValue,
23
26
  SearchResultsVellumValue,
24
27
  ]
@@ -1,5 +1,6 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
+ from __future__ import annotations
3
4
  import typing
4
5
  from .string_vellum_value_request import StringVellumValueRequest
5
6
  from .number_vellum_value_request import NumberVellumValueRequest
@@ -7,10 +8,12 @@ from .json_vellum_value_request import JsonVellumValueRequest
7
8
  from .image_vellum_value_request import ImageVellumValueRequest
8
9
  from .function_call_vellum_value_request import FunctionCallVellumValueRequest
9
10
  from .error_vellum_value_request import ErrorVellumValueRequest
10
- from .array_vellum_value_request import ArrayVellumValueRequest
11
11
  from .chat_history_vellum_value_request import ChatHistoryVellumValueRequest
12
12
  from .search_results_vellum_value_request import SearchResultsVellumValueRequest
13
+ import typing
13
14
 
15
+ if typing.TYPE_CHECKING:
16
+ from .array_vellum_value_request import ArrayVellumValueRequest
14
17
  VellumValueRequest = typing.Union[
15
18
  StringVellumValueRequest,
16
19
  NumberVellumValueRequest,
@@ -18,7 +21,7 @@ VellumValueRequest = typing.Union[
18
21
  ImageVellumValueRequest,
19
22
  FunctionCallVellumValueRequest,
20
23
  ErrorVellumValueRequest,
21
- ArrayVellumValueRequest,
24
+ "ArrayVellumValueRequest",
22
25
  ChatHistoryVellumValueRequest,
23
26
  SearchResultsVellumValueRequest,
24
27
  ]
@@ -4,7 +4,17 @@ import typing
4
4
 
5
5
  VellumVariableType = typing.Union[
6
6
  typing.Literal[
7
- "STRING", "NUMBER", "JSON", "CHAT_HISTORY", "SEARCH_RESULTS", "ERROR", "ARRAY", "FUNCTION_CALL", "IMAGE", "NULL"
7
+ "STRING",
8
+ "NUMBER",
9
+ "JSON",
10
+ "CHAT_HISTORY",
11
+ "SEARCH_RESULTS",
12
+ "ERROR",
13
+ "ARRAY",
14
+ "FUNCTION_CALL",
15
+ "IMAGE",
16
+ "AUDIO",
17
+ "NULL",
8
18
  ],
9
19
  typing.Any,
10
20
  ]
@@ -5,7 +5,7 @@ from ..core.pydantic_utilities import UniversalBaseModel
5
5
  from .array_vellum_value import ArrayVellumValue
6
6
  import pydantic
7
7
  import typing
8
- from .array_vellum_value_item import ArrayVellumValueItem
8
+ from .vellum_value import VellumValue
9
9
  from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
  from ..core.pydantic_utilities import update_forward_refs
11
11
 
@@ -22,7 +22,7 @@ class WorkflowOutputArray(UniversalBaseModel):
22
22
  """
23
23
 
24
24
  type: typing.Literal["ARRAY"] = "ARRAY"
25
- value: typing.Optional[typing.List[ArrayVellumValueItem]] = None
25
+ value: typing.Optional[typing.List[VellumValue]] = None
26
26
 
27
27
  if IS_PYDANTIC_V2:
28
28
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.8.30
3
+ Version: 0.9.0
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -1,8 +1,8 @@
1
- vellum/__init__.py,sha256=VpKptpRf7qM0dEBzmhKZSFDQPbHZxM_rHiAb_MpRTNI,33860
1
+ vellum/__init__.py,sha256=s0G61XarqooYamISE7pvtHeSZ6k6HepO7CWq171pPtQ,33738
2
2
  vellum/client.py,sha256=oyKQasaHZqssc_CiZdvIcrGePxzg9k7GfB7_ik1jsH0,114871
3
3
  vellum/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
4
4
  vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- vellum/core/client_wrapper.py,sha256=mIQucTVMwAI8O7OD6hT5Yu3dLu8WGn9HwTvusQiliAc,1890
5
+ vellum/core/client_wrapper.py,sha256=vbLh5ABAr1D54q4vF3AznyexsEQvCLL1FLr3MtNmQOk,1889
6
6
  vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  vellum/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
8
8
  vellum/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
@@ -76,7 +76,7 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
76
76
  vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
77
77
  vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
78
78
  vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
79
- vellum/types/__init__.py,sha256=e1U-Y2pZvJOR2s87OiL0__XguJ8ab6e6dp_-SImLYGo,51581
79
+ vellum/types/__init__.py,sha256=xHyYHqe3WJAppo834MHYRb0xV0bhsZWCIwlCCdVw80E,51387
80
80
  vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
81
81
  vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
82
82
  vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
@@ -90,13 +90,11 @@ vellum/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx
90
90
  vellum/types/array_chat_message_content_item.py,sha256=XyWDIqVeWoqLzUIvZO_qj_-iwCr6SBcvQJoVxKAjmDs,421
91
91
  vellum/types/array_chat_message_content_item_request.py,sha256=AUFfh6CQfrD4MdwpS3KhGpalaYpEj_hAlF_lePDDdbU,494
92
92
  vellum/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
93
- vellum/types/array_input_request.py,sha256=GJ4HOZq7FqGGKk6HaKb23eGdr63Av7lqCXkMEz5JtkA,1098
93
+ vellum/types/array_input_request.py,sha256=eOuIc8jRrE4uCGWiopQkoSA9QR3VLDogbh2hj8ZxLzw,1069
94
94
  vellum/types/array_variable_value.py,sha256=_BQX5Kk1OLJaAyk3CPgsIgiLR_FI2pvbe5Ne8q9gsqY,876
95
95
  vellum/types/array_variable_value_item.py,sha256=UeEoHg9zOjYi9MPez8CAeZuRQy5RSu3KEiEyF-t2Nng,963
96
- vellum/types/array_vellum_value.py,sha256=O8XGxsYqQdW3-Kffw8JbujyaGX_yp19FyVCmBCBzJlg,944
97
- vellum/types/array_vellum_value_item.py,sha256=nbAZImC0r2bTZvr7oBdMA5dwgcv0AeAWUZc4e7ni5Iw,907
98
- vellum/types/array_vellum_value_item_request.py,sha256=_2VopD_uSrbjlumYAWh-x0TSZ1FyAhllppSHJr9X3mg,1112
99
- vellum/types/array_vellum_value_request.py,sha256=-HXiU8DjRshOOim_HOU_xzEVUwjf85JR13ZEb1VCV40,980
96
+ vellum/types/array_vellum_value.py,sha256=6ZDizIzijUFX29JD4lnNv1mOH-venLD_c_sIiONWzqE,915
97
+ vellum/types/array_vellum_value_request.py,sha256=SUIfUTeJTDcsH76mb_PfQv3q0GEUkVr4Gk-dqn2Qr-I,951
100
98
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
101
99
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
102
100
  vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
@@ -114,7 +112,7 @@ vellum/types/chat_message_prompt_block_properties_request.py,sha256=lMBVwR5hnByk
114
112
  vellum/types/chat_message_prompt_block_request.py,sha256=osPqtdZOG9NW_Iqcv0CyvkU2cHZzPeVVIWQUGvnB-Dw,1423
115
113
  vellum/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
116
114
  vellum/types/chat_message_role.py,sha256=-i0Jrcbwf72MkMoaFTGyxRduvlN7f5Y9ULhCXR5KNdA,182
117
- vellum/types/code_execution_node_array_result.py,sha256=6BTyZQTtRfkZTz9dJ8j4IKQq-OfsjRvFFBpltzqNV3g,981
115
+ vellum/types/code_execution_node_array_result.py,sha256=KCdbmjXjReO-hPPpBsSR17h_roDUpc4R-92cmIn59ck,952
118
116
  vellum/types/code_execution_node_chat_history_result.py,sha256=Kwb_jn_xmVz214bIGPmmpplKDczMAJCMAr6RxOJA-1Q,731
119
117
  vellum/types/code_execution_node_error_result.py,sha256=QlJEhZS-BKpCJc8bwG4MrsvUsTjDbY8iohYZh7--yBI,698
120
118
  vellum/types/code_execution_node_function_call_result.py,sha256=_3FYGMQhSvucFHC4gu9dHBXDKz8WpkTeDQ03aoASsn4,724
@@ -164,7 +162,7 @@ vellum/types/execute_prompt_event.py,sha256=wq_TZBDJcmXQhSj25jR9nMTnN-mP8Ku5Vq3r
164
162
  vellum/types/execute_prompt_response.py,sha256=n6ODveXcO8uWG-kr_B9wXziHH8JUaVTUcUAZKifClEo,334
165
163
  vellum/types/execute_workflow_response.py,sha256=0Q-NGPv5jpxjq6xNlHa3qUNK7yOmkU8h6Z2vQb6bHsU,1022
166
164
  vellum/types/execute_workflow_workflow_result_event.py,sha256=yLO-r6-lXGA86tonDGlWwuCI9VZEITTvEB9_yoV5308,435
167
- vellum/types/execution_array_vellum_value.py,sha256=18EVf2g3nj8MQywmL8B0422UJunPl0TJ0rmalYkGLr8,1153
165
+ vellum/types/execution_array_vellum_value.py,sha256=NlchSxuH3uF7INizvjPabvtQ8xJKkYtBo2m7-L9zsJk,1124
168
166
  vellum/types/execution_chat_history_vellum_value.py,sha256=FBDP88wZKY9hz5h6cc8Z84fIgHritVZOybnE_tx5i3A,887
169
167
  vellum/types/execution_error_vellum_value.py,sha256=_1KRV9vG5x0wACKubh6O-uj9weKh3in8xvVVTATkN5w,850
170
168
  vellum/types/execution_function_call_vellum_value.py,sha256=3GmqmQOxYuVFqO3m58M3Bfp-zN9ENnbTzPRFryldIY8,883
@@ -262,8 +260,8 @@ vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=
262
260
  vellum/types/named_scenario_input_json_variable_value_request.py,sha256=UgnKv70zFviv1kl4nM7aM7IFA-7xyDOtglW4Y3GBZ28,757
263
261
  vellum/types/named_scenario_input_request.py,sha256=Pi8l377OHvKBwvPu9slZ1omf_NJ9S1mCQ5Wr-Ux5KVg,611
264
262
  vellum/types/named_scenario_input_string_variable_value_request.py,sha256=4P5YjzR0Cwsnf4ir2MFX0Bs0Q3eMe_7uWVhxL1ajlVg,758
265
- vellum/types/named_test_case_array_variable_value.py,sha256=BL0SX1EEebw2LzHWeljX69-uR6EzPM7ZFTptzMXnhhE,1057
266
- vellum/types/named_test_case_array_variable_value_request.py,sha256=c7IAlUyO5GFUoVdC7LysIFOyriLTz6CVh417zMqKmRw,1128
263
+ vellum/types/named_test_case_array_variable_value.py,sha256=lrsRJGZ-_LLJVRjQubiX7X6rKZWTL6S6CweRQvd9B2Y,1028
264
+ vellum/types/named_test_case_array_variable_value_request.py,sha256=MqKZWZY47ndR467uEdsNXns_XxGEe-6oeEKfFbaF5JI,1099
267
265
  vellum/types/named_test_case_chat_history_variable_value.py,sha256=tRN-8jKDeth_VIeWIYzSAcZIT-PeKKAUBjsUB3JbUjo,808
268
266
  vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=e4yLVJJnWyba3Yl_IJ4jJMfDdK1zxj19OuwirVBloSw,837
269
267
  vellum/types/named_test_case_error_variable_value.py,sha256=lEw5i9J4JK0LwSqtnefgxZ9Y9KUdy_omKUZe_goRmNo,768
@@ -280,7 +278,7 @@ vellum/types/named_test_case_string_variable_value.py,sha256=2xuTh35MarcDMMCy6px
280
278
  vellum/types/named_test_case_string_variable_value_request.py,sha256=Bv7LEBEyDHtBPPWdzgvCA8DHG6n1jF4NVlEe6zYPJUs,733
281
279
  vellum/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
282
280
  vellum/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
283
- vellum/types/node_input_compiled_array_value.py,sha256=qbJyqtTaq7JuPgId2DMGQGGAzUKDr7L21rKWYKi0yQ4,1002
281
+ vellum/types/node_input_compiled_array_value.py,sha256=-UO10E0Lx_f0ISmuHfQ3V0mJbyCOL--rqm_tTsv2aiQ,973
284
282
  vellum/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
285
283
  vellum/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
286
284
  vellum/types/node_input_compiled_function_call_value.py,sha256=Q9vrORvrPDvHrBBYNA2YALHQd7WlGMytEBtoQdJelvk,747
@@ -289,7 +287,7 @@ vellum/types/node_input_compiled_number_value.py,sha256=Olc4UpYsm-v7ZhlTVXsp7JVQ
289
287
  vellum/types/node_input_compiled_search_results_value.py,sha256=A2SnHYZAt2_VsQDXL4B2CF3KYgDJeUAQ5L0RbI8flH0,763
290
288
  vellum/types/node_input_compiled_string_value.py,sha256=V4HKhHW6B2iUvYqYbuwcOHTxiui3nfOe0DKOiTXshJQ,678
291
289
  vellum/types/node_input_variable_compiled_value.py,sha256=ahG5KdRDQ97w3Ljhfz9EssY0FD1DKeE4C5y393QOS78,1046
292
- vellum/types/node_output_compiled_array_value.py,sha256=j2JB6jLk6aRyJTfH8Eagz24VNk6jkPX7PZ4QB7FsrsM,1205
290
+ vellum/types/node_output_compiled_array_value.py,sha256=-lUee9E-IrlndzNS-tzfAQrEOZv-ZcgAmm06_kcqOr8,1176
293
291
  vellum/types/node_output_compiled_chat_history_value.py,sha256=rAAnJ2PcXGxKusMpq2NEhJdBSRrPB9da5uN19x92Wu4,962
294
292
  vellum/types/node_output_compiled_error_value.py,sha256=dkgT_h463S8AF3QHVZdvy9HGF3A2LhxuNnAQouAYQlE,922
295
293
  vellum/types/node_output_compiled_function_call_value.py,sha256=Fygp5S2479B71vDmmBTjmJpp1ZfMEm3Qow2uINjNyZE,956
@@ -399,7 +397,7 @@ vellum/types/submit_completion_actual_request.py,sha256=hMWNAGUc54I44kDFKFSXdXTx
399
397
  vellum/types/submit_workflow_execution_actual_request.py,sha256=xRCiA1QvQBD0lbZfBZUSZnm_XNOj17jyXXmppztQEB8,535
400
398
  vellum/types/subworkflow_node_result.py,sha256=a2N7E6OSVxH1fQB24j96a6qucw1DgCz7w_hChENNV9A,808
401
399
  vellum/types/subworkflow_node_result_data.py,sha256=np3Wnc5pmnehtMLfJZVz3bozYJN752vf9VERs9rIuqA,600
402
- vellum/types/templating_node_array_result.py,sha256=ZqEno03BYJFgUZZ2r2ThM4uSaZlw1Ew0aB5uuBgtNqs,972
400
+ vellum/types/templating_node_array_result.py,sha256=RDRVf9xpy6lRunPD-G0BpWLqnde-BbmHd_eHQnQkOW0,943
403
401
  vellum/types/templating_node_chat_history_result.py,sha256=RhEeDRtvWOPlLPsSuz3lAA3m8EqmdhB8sI_pwXuPgGg,728
404
402
  vellum/types/templating_node_error_result.py,sha256=A9CkVXU0YUYko0epKmZlIHPwvFNfmLuM3iwduH0OhNU,695
405
403
  vellum/types/templating_node_function_call_result.py,sha256=bJDLDS_N_dzf7w7wfUUaePg0N6_6amaJ8GrtDey8Kvw,721
@@ -410,7 +408,7 @@ vellum/types/templating_node_result_data.py,sha256=ySZesaAaCU6Zr2J2eSVK4Bu6nHnnF
410
408
  vellum/types/templating_node_result_output.py,sha256=f94nwW79EAAjHKpL70Vc_N2DRq-FC4993g1X79V5Q7M,986
411
409
  vellum/types/templating_node_search_results_result.py,sha256=LRChfWy1btVEuz8AX6x6x_s0o4uKKokc-R3O7kHGr5Q,737
412
410
  vellum/types/templating_node_string_result.py,sha256=b3BOuBwqhYMJHvsfVwtYaFSeau7R4XkyJ6gG37J0x7M,652
413
- vellum/types/terminal_node_array_result.py,sha256=XaetOZXyK1bebh1FH8QYMTGMnDvd6MfP14WC908gRlk,1114
411
+ vellum/types/terminal_node_array_result.py,sha256=Wml0lQLYTAN9qApPPjNqQ_GITh633ONf0bp2M1GxnDw,1085
414
412
  vellum/types/terminal_node_chat_history_result.py,sha256=YGywmDryELuzeLYi6p59pQoCNoPekA6bhSF0sYFAsw0,874
415
413
  vellum/types/terminal_node_error_result.py,sha256=qwhunjngnumpeNoqxnVEbvFoXAyX-CXQ_MusOwOeNv0,841
416
414
  vellum/types/terminal_node_function_call_result.py,sha256=-9tPhggVBQ9wvCHehZl1-L9G7oxrfDdR9aU8TFxowTo,867
@@ -421,7 +419,7 @@ vellum/types/terminal_node_result_data.py,sha256=JwpRyewiBPpOmHvCIof1fqBfDX_B6O9
421
419
  vellum/types/terminal_node_result_output.py,sha256=f3sAqpRpw9_TfPfW4312I0nwfrRLfaDny-ETFuIieao,936
422
420
  vellum/types/terminal_node_search_results_result.py,sha256=rX_ftp_C7hez_xjPRZm8yJuwMFoM6jsTDfPAseYmzFc,883
423
421
  vellum/types/terminal_node_string_result.py,sha256=CW_nl-fI4YwhCm3YEO_cQW9mjG6rNZo5L-Ic4v1iAMo,798
424
- vellum/types/test_case_array_variable_value.py,sha256=MvfEGItX9iJ4xmfsOyDb_wdPxBKK_AC3vu20I_xhLPc,1065
422
+ vellum/types/test_case_array_variable_value.py,sha256=XZlpkDSmdvYdyVOC5u4EV3c7U-Nz9-JYjBr-UT7GO8c,1036
425
423
  vellum/types/test_case_chat_history_variable_value.py,sha256=YNaaLEmjmQLvflknYW_21y1KfyD-rLLBjIlHQURJhXg,825
426
424
  vellum/types/test_case_error_variable_value.py,sha256=he2fkOcwsRfXfC2hKT3MhzDkXctIi3cNARqhMi13bYk,786
427
425
  vellum/types/test_case_function_call_variable_value.py,sha256=p7Q7jgpZVKDlanszm31E5lTLfxQmegggyto9DHVQXzI,819
@@ -437,7 +435,7 @@ vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256
437
435
  vellum/types/test_suite_run_exec_config.py,sha256=OuaNtd6ulP_Eq1ptz_YstJs5VtBOY3-p1XANEGnVwUA,530
438
436
  vellum/types/test_suite_run_exec_config_request.py,sha256=GNwGzV6SZiZWThoy4lM5JpRyegoqy3ylHjB2Kj5WOXI,612
439
437
  vellum/types/test_suite_run_execution.py,sha256=x0tjfFMSEl5hr1ZAh9r-2m3gQCbhKNZBGu5_6ANLgiU,1091
440
- vellum/types/test_suite_run_execution_array_output.py,sha256=5OUKF8wu1_bUVklFOg7NPsRY0E964dzSsz2QzQMXiHg,1130
438
+ vellum/types/test_suite_run_execution_array_output.py,sha256=fnGLAXY6NC8uJKK2500lsRXDvugjfIBJiDAfWDg1sUo,1101
441
439
  vellum/types/test_suite_run_execution_chat_history_output.py,sha256=tzeWqczo04aXl-ALhfOHYEabrgOIqmG7E-nA5-l3dME,879
442
440
  vellum/types/test_suite_run_execution_error_output.py,sha256=6UXaVzWivUTQ639W5Tb7EJIudV3Lj4tzkYp_eknAX90,839
443
441
  vellum/types/test_suite_run_execution_function_call_output.py,sha256=jgAk0xgWnJudZh4VhDNb8HfgUAUHA6I8PK_2ExHW9hE,873
@@ -492,16 +490,16 @@ vellum/types/vellum_error_code_enum.py,sha256=thsWeS_QSTEF_vElgJ5tA2Zn98kF1mYnDR
492
490
  vellum/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
493
491
  vellum/types/vellum_image.py,sha256=wkFRgxOkxFPrmRdWTO58_41_vk0HYn5k4xsc-5ywxEs,637
494
492
  vellum/types/vellum_image_request.py,sha256=_Gr4L7PSY8PNQINyTy04hPdwLc8_bR1RTUWZ73RQRYM,644
495
- vellum/types/vellum_value.py,sha256=edQfVkLNI_6lqd84XFigqx8MBOupTDdDPZORBJfXsHs,818
493
+ vellum/types/vellum_value.py,sha256=LPV1UFvtD2P3pnq1pyVNHHgVip_1Ncl3u8C7RCa6rkE,898
496
494
  vellum/types/vellum_value_logical_condition_group_request.py,sha256=vyr6lhHuS-6YtcFL5TTmPGtKRoNI9w63N7N2RPQwKVQ,1402
497
495
  vellum/types/vellum_value_logical_condition_request.py,sha256=HkZfj4X48UHFrPDHgUi3lp0MUGBMfroC0noNqZ_rW8o,1177
498
496
  vellum/types/vellum_value_logical_expression_request.py,sha256=vjNsI1NUAkwxLwIXJM_DVXTObyAM63gOfHj6aHw7osc,479
499
- vellum/types/vellum_value_request.py,sha256=K09IU8tuC07_8WFjNVhvsPGdNAsJi_aBCg7UihwT--Y,1023
497
+ vellum/types/vellum_value_request.py,sha256=c0ds41RlI9rQnUXrt-An6wssRKLk7hKntjSEk7FqOuo,1103
500
498
  vellum/types/vellum_variable.py,sha256=LNNNlYbT1VqadO6aUmeir9cXirtxgrIl-R2EalYZ5Uo,1123
501
499
  vellum/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
502
500
  vellum/types/vellum_variable_extensions_request.py,sha256=n5qAdEDpPtC_eS4HVRMFkm0f9GAvu16DZy7-R9FGEPI,692
503
501
  vellum/types/vellum_variable_request.py,sha256=OyQbVgFIYK_-RRLiZSDE8otpzRwsccHa1NUJ5T9UKLM,1210
504
- vellum/types/vellum_variable_type.py,sha256=uHeBCGi7U_SksgKOxtvI4KxYffD4BD2TlddTPo_LUSM,281
502
+ vellum/types/vellum_variable_type.py,sha256=SX8PY9l8zui3IaT9BwmOxczmb_WE7S9w37JshEZVemE,371
505
503
  vellum/types/workflow_deployment_read.py,sha256=zBn6JDHemCnmU6M4tMtyxwmxETOPeGKJeg9fmiAEP4w,2363
506
504
  vellum/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
507
505
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
@@ -516,7 +514,7 @@ vellum/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx
516
514
  vellum/types/workflow_node_result_event.py,sha256=qnhruqkIcKRqP8uB-o-27shcruiT2pjgD7wdrPcp0NE,603
517
515
  vellum/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
518
516
  vellum/types/workflow_output.py,sha256=gtqJeAoVE56QS8N0muYpXxaTUR1O9iFm2YIN_FmOEjk,902
519
- vellum/types/workflow_output_array.py,sha256=0rdxq9HDD4s_63cK_gePNlcXt8EKBoeSOdy1WRHoUsE,1118
517
+ vellum/types/workflow_output_array.py,sha256=pGBWpGx2_y792gt7afRcq-audwKnfIaAj-M9xx1deok,1089
520
518
  vellum/types/workflow_output_chat_history.py,sha256=oBoq6b9tJGyIzZAe7NWvoBKWeE5o7NgtlY6yiJtp3lM,892
521
519
  vellum/types/workflow_output_error.py,sha256=bJWwndZxiO6vWP2bM0jlD1oarlpSAjbE3n9kzOWbpGs,853
522
520
  vellum/types/workflow_output_function_call.py,sha256=HkfqsC86OMhlXr80CFDWuxKALNWb-JsQMOoDuzxourg,886
@@ -547,7 +545,7 @@ vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb
547
545
  vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
548
546
  vellum/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
549
547
  vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
550
- vellum_ai-0.8.30.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
551
- vellum_ai-0.8.30.dist-info/METADATA,sha256=-4rTzWLoev3hnLwP3DpSQSN6umO3WZ0MgFVZQSEpgn0,4395
552
- vellum_ai-0.8.30.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
553
- vellum_ai-0.8.30.dist-info/RECORD,,
548
+ vellum_ai-0.9.0.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
549
+ vellum_ai-0.9.0.dist-info/METADATA,sha256=8ksHDO6H_rxKkBYm3LvAySye6WOerJol1IKAdNkfUrg,4394
550
+ vellum_ai-0.9.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
551
+ vellum_ai-0.9.0.dist-info/RECORD,,
@@ -1,27 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from __future__ import annotations
4
- import typing
5
- from .string_vellum_value import StringVellumValue
6
- from .number_vellum_value import NumberVellumValue
7
- from .json_vellum_value import JsonVellumValue
8
- from .image_vellum_value import ImageVellumValue
9
- from .function_call_vellum_value import FunctionCallVellumValue
10
- from .error_vellum_value import ErrorVellumValue
11
- from .chat_history_vellum_value import ChatHistoryVellumValue
12
- from .search_results_vellum_value import SearchResultsVellumValue
13
- import typing
14
-
15
- if typing.TYPE_CHECKING:
16
- from .array_vellum_value import ArrayVellumValue
17
- ArrayVellumValueItem = typing.Union[
18
- StringVellumValue,
19
- NumberVellumValue,
20
- JsonVellumValue,
21
- ImageVellumValue,
22
- FunctionCallVellumValue,
23
- ErrorVellumValue,
24
- ChatHistoryVellumValue,
25
- SearchResultsVellumValue,
26
- "ArrayVellumValue",
27
- ]
@@ -1,27 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from __future__ import annotations
4
- import typing
5
- from .string_vellum_value_request import StringVellumValueRequest
6
- from .number_vellum_value_request import NumberVellumValueRequest
7
- from .json_vellum_value_request import JsonVellumValueRequest
8
- from .image_vellum_value_request import ImageVellumValueRequest
9
- from .function_call_vellum_value_request import FunctionCallVellumValueRequest
10
- from .error_vellum_value_request import ErrorVellumValueRequest
11
- from .chat_history_vellum_value_request import ChatHistoryVellumValueRequest
12
- from .search_results_vellum_value_request import SearchResultsVellumValueRequest
13
- import typing
14
-
15
- if typing.TYPE_CHECKING:
16
- from .array_vellum_value_request import ArrayVellumValueRequest
17
- ArrayVellumValueItemRequest = typing.Union[
18
- StringVellumValueRequest,
19
- NumberVellumValueRequest,
20
- JsonVellumValueRequest,
21
- ImageVellumValueRequest,
22
- FunctionCallVellumValueRequest,
23
- ErrorVellumValueRequest,
24
- ChatHistoryVellumValueRequest,
25
- SearchResultsVellumValueRequest,
26
- "ArrayVellumValueRequest",
27
- ]