vellum-ai 0.8.30__py3-none-any.whl → 0.9.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 (33) hide show
  1. vellum/__init__.py +8 -4
  2. vellum/client.py +4 -0
  3. vellum/core/client_wrapper.py +1 -1
  4. vellum/resources/__init__.py +2 -0
  5. vellum/resources/container_images/__init__.py +2 -0
  6. vellum/resources/container_images/client.py +405 -0
  7. vellum/types/__init__.py +6 -4
  8. vellum/types/array_input_request.py +2 -2
  9. vellum/types/array_vellum_value.py +2 -2
  10. vellum/types/array_vellum_value_request.py +2 -2
  11. vellum/types/code_execution_node_array_result.py +2 -2
  12. vellum/types/container_image_read.py +28 -0
  13. vellum/types/entity_visibility.py +5 -0
  14. vellum/types/execution_array_vellum_value.py +2 -2
  15. vellum/types/named_test_case_array_variable_value.py +2 -2
  16. vellum/types/named_test_case_array_variable_value_request.py +2 -2
  17. vellum/types/node_input_compiled_array_value.py +2 -2
  18. vellum/types/node_output_compiled_array_value.py +2 -2
  19. vellum/types/paginated_container_image_read_list.py +23 -0
  20. vellum/types/templating_node_array_result.py +2 -2
  21. vellum/types/terminal_node_array_result.py +2 -2
  22. vellum/types/test_case_array_variable_value.py +2 -2
  23. vellum/types/test_suite_run_execution_array_output.py +2 -2
  24. vellum/types/vellum_value.py +5 -2
  25. vellum/types/vellum_value_request.py +5 -2
  26. vellum/types/vellum_variable_type.py +11 -1
  27. vellum/types/workflow_output_array.py +2 -2
  28. {vellum_ai-0.8.30.dist-info → vellum_ai-0.9.1.dist-info}/METADATA +1 -1
  29. {vellum_ai-0.8.30.dist-info → vellum_ai-0.9.1.dist-info}/RECORD +31 -28
  30. vellum/types/array_vellum_value_item.py +0 -27
  31. vellum/types/array_vellum_value_item_request.py +0 -27
  32. {vellum_ai-0.8.30.dist-info → vellum_ai-0.9.1.dist-info}/LICENSE +0 -0
  33. {vellum_ai-0.8.30.dist-info → vellum_ai-0.9.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,28 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ from .entity_visibility import EntityVisibility
5
+ import datetime as dt
6
+ import typing
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
+ import pydantic
9
+
10
+
11
+ class ContainerImageRead(UniversalBaseModel):
12
+ id: str
13
+ name: str
14
+ visibility: EntityVisibility
15
+ created: dt.datetime
16
+ modified: dt.datetime
17
+ repository: str
18
+ sha: str
19
+ tags: typing.List[str]
20
+
21
+ if IS_PYDANTIC_V2:
22
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
23
+ else:
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ EntityVisibility = typing.Union[typing.Literal["DEFAULT", "PUBLIC", "PRIVATE", "DISABLED"], typing.Any]
@@ -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
 
@@ -0,0 +1,23 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ from .container_image_read import ContainerImageRead
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+ import pydantic
8
+
9
+
10
+ class PaginatedContainerImageReadList(UniversalBaseModel):
11
+ count: typing.Optional[int] = None
12
+ next: typing.Optional[str] = None
13
+ previous: typing.Optional[str] = None
14
+ results: typing.Optional[typing.List[ContainerImageRead]] = None
15
+
16
+ if IS_PYDANTIC_V2:
17
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
18
+ else:
19
+
20
+ class Config:
21
+ frozen = True
22
+ smart_union = True
23
+ extra = pydantic.Extra.allow
@@ -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.1
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
2
- vellum/client.py,sha256=oyKQasaHZqssc_CiZdvIcrGePxzg9k7GfB7_ik1jsH0,114871
1
+ vellum/__init__.py,sha256=5orOgV72nzhRO2AGHS9fP2n5SG3gEckKr2170cwREPo,33956
2
+ vellum/client.py,sha256=kG4b9g1Jjm6zgzGBXCAYXcM_3xNQfBsa2Xut6F0eHQM,115201
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=K7a6Y6FIC2REqaU9S58PfUWQgGGhFz32Xf3EyMgPtQA,1890
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
@@ -30,9 +30,11 @@ vellum/lib/utils/paginator.py,sha256=yDvgehocYBDclLt5SewZH4hCIyq0yLHdBzkyPCoYPjs
30
30
  vellum/lib/utils/typing.py,sha256=qngWnFwrWLUeu1nmixXGj173mwg7BXKTAyQkxK8AtfQ,327
31
31
  vellum/lib/utils/uuid.py,sha256=nedyhTNQDS2YvrU5gL3PtvG9cgGH87yKOcpGDJAe44E,214
32
32
  vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- vellum/resources/__init__.py,sha256=WgEjN7hU-7e0BpBfHGxN6S4lBhRv3kYF3jcf6Bsil2U,1048
33
+ vellum/resources/__init__.py,sha256=oPvhJ3z-7efrRlZ7ILrHQTypPBcXLOtGZdGMmHiVpLU,1094
34
34
  vellum/resources/ad_hoc/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
35
35
  vellum/resources/ad_hoc/client.py,sha256=maNoWMHH8LSFlr5rDfoJybiPaoWuUiWFkt-IFq8dNMA,17271
36
+ vellum/resources/container_images/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
37
+ vellum/resources/container_images/client.py,sha256=UbR8Mf7F0ia_DyFMwiRmHlj1AR9Z4EFCl2oP3h8Iqj0,12276
36
38
  vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
37
39
  vellum/resources/deployments/client.py,sha256=tF3llT_g6rfzDHpLhlEoz9gJDy8vIdNGKfICMJp3iEw,29236
38
40
  vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
@@ -76,7 +78,7 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
76
78
  vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
77
79
  vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
78
80
  vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
79
- vellum/types/__init__.py,sha256=e1U-Y2pZvJOR2s87OiL0__XguJ8ab6e6dp_-SImLYGo,51581
81
+ vellum/types/__init__.py,sha256=Stggqgi9cQg3X_6JfvP4t-lM2gG0pM6Dt12VqIQeSv4,51658
80
82
  vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
81
83
  vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
82
84
  vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
@@ -90,13 +92,11 @@ vellum/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx
90
92
  vellum/types/array_chat_message_content_item.py,sha256=XyWDIqVeWoqLzUIvZO_qj_-iwCr6SBcvQJoVxKAjmDs,421
91
93
  vellum/types/array_chat_message_content_item_request.py,sha256=AUFfh6CQfrD4MdwpS3KhGpalaYpEj_hAlF_lePDDdbU,494
92
94
  vellum/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
93
- vellum/types/array_input_request.py,sha256=GJ4HOZq7FqGGKk6HaKb23eGdr63Av7lqCXkMEz5JtkA,1098
95
+ vellum/types/array_input_request.py,sha256=eOuIc8jRrE4uCGWiopQkoSA9QR3VLDogbh2hj8ZxLzw,1069
94
96
  vellum/types/array_variable_value.py,sha256=_BQX5Kk1OLJaAyk3CPgsIgiLR_FI2pvbe5Ne8q9gsqY,876
95
97
  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
98
+ vellum/types/array_vellum_value.py,sha256=6ZDizIzijUFX29JD4lnNv1mOH-venLD_c_sIiONWzqE,915
99
+ vellum/types/array_vellum_value_request.py,sha256=SUIfUTeJTDcsH76mb_PfQv3q0GEUkVr4Gk-dqn2Qr-I,951
100
100
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
101
101
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
102
102
  vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
@@ -114,7 +114,7 @@ vellum/types/chat_message_prompt_block_properties_request.py,sha256=lMBVwR5hnByk
114
114
  vellum/types/chat_message_prompt_block_request.py,sha256=osPqtdZOG9NW_Iqcv0CyvkU2cHZzPeVVIWQUGvnB-Dw,1423
115
115
  vellum/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
116
116
  vellum/types/chat_message_role.py,sha256=-i0Jrcbwf72MkMoaFTGyxRduvlN7f5Y9ULhCXR5KNdA,182
117
- vellum/types/code_execution_node_array_result.py,sha256=6BTyZQTtRfkZTz9dJ8j4IKQq-OfsjRvFFBpltzqNV3g,981
117
+ vellum/types/code_execution_node_array_result.py,sha256=KCdbmjXjReO-hPPpBsSR17h_roDUpc4R-92cmIn59ck,952
118
118
  vellum/types/code_execution_node_chat_history_result.py,sha256=Kwb_jn_xmVz214bIGPmmpplKDczMAJCMAr6RxOJA-1Q,731
119
119
  vellum/types/code_execution_node_error_result.py,sha256=QlJEhZS-BKpCJc8bwG4MrsvUsTjDbY8iohYZh7--yBI,698
120
120
  vellum/types/code_execution_node_function_call_result.py,sha256=_3FYGMQhSvucFHC4gu9dHBXDKz8WpkTeDQ03aoASsn4,724
@@ -137,6 +137,7 @@ vellum/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=
137
137
  vellum/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
138
138
  vellum/types/conditional_node_result.py,sha256=vx8xo9F1KoJqOnYPtSevfOcBxKYAk8J8JGWFr1c4UO8,784
139
139
  vellum/types/conditional_node_result_data.py,sha256=yk4E7KHSzmKlweI9ce9eN_iW08V70KGmG1Z0K5455T0,604
140
+ vellum/types/container_image_read.py,sha256=4i2dZkGrmWapW884F5ESVOLWElT5Y_478oB5NbDjAi0,787
140
141
  vellum/types/create_test_suite_test_case_request.py,sha256=SYUz7_aZMQlin_c1C0-B0W14YB0kC3cn21oPE4_64Ys,1711
141
142
  vellum/types/deployment_provider_payload_response.py,sha256=b0lkt0rK88ARQaMWn9MAHeWtMBsZKofDMlOAUsQvv7g,818
142
143
  vellum/types/deployment_provider_payload_response_payload.py,sha256=xHLQnWFN0AZRZdrOiKawwpoKK7BTmnZfp0P7FCc2ZqE,188
@@ -153,6 +154,7 @@ vellum/types/document_read.py,sha256=heZt7k29GVehbKTofcLjRVe1R_UjbCK5Hcbgga3OODY
153
154
  vellum/types/document_status.py,sha256=GD_TSoFmZUBJnPl-chAmaQFzQ2_TYO3PSqi3-9QfEHE,122
154
155
  vellum/types/enriched_normalized_completion.py,sha256=_NDkKVJj70uKDtIOsQB7E-dL0mOMPwjwgCzhif0RuJI,1796
155
156
  vellum/types/entity_status.py,sha256=bY0jEpISwXqFnbWd3PSb3yXEr-ounPXlAO_fyvHV7l8,158
157
+ vellum/types/entity_visibility.py,sha256=BX1KdYd7dirpv878XDDvtOHkMOqebM8-lkWmLyFLaw4,184
156
158
  vellum/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wBDGA,179
157
159
  vellum/types/ephemeral_prompt_cache_config_request.py,sha256=cWJIUY6Y4StTLszPeGRlwgvSkmL9OvFT9IrcbCDcI6g,719
158
160
  vellum/types/ephemeral_prompt_cache_config_type_enum.py,sha256=houFyNbNr9r2uXTBoRTA0eZJaBDe0CFTIUbsDyWK2e4,145
@@ -164,7 +166,7 @@ vellum/types/execute_prompt_event.py,sha256=wq_TZBDJcmXQhSj25jR9nMTnN-mP8Ku5Vq3r
164
166
  vellum/types/execute_prompt_response.py,sha256=n6ODveXcO8uWG-kr_B9wXziHH8JUaVTUcUAZKifClEo,334
165
167
  vellum/types/execute_workflow_response.py,sha256=0Q-NGPv5jpxjq6xNlHa3qUNK7yOmkU8h6Z2vQb6bHsU,1022
166
168
  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
169
+ vellum/types/execution_array_vellum_value.py,sha256=NlchSxuH3uF7INizvjPabvtQ8xJKkYtBo2m7-L9zsJk,1124
168
170
  vellum/types/execution_chat_history_vellum_value.py,sha256=FBDP88wZKY9hz5h6cc8Z84fIgHritVZOybnE_tx5i3A,887
169
171
  vellum/types/execution_error_vellum_value.py,sha256=_1KRV9vG5x0wACKubh6O-uj9weKh3in8xvVVTATkN5w,850
170
172
  vellum/types/execution_function_call_vellum_value.py,sha256=3GmqmQOxYuVFqO3m58M3Bfp-zN9ENnbTzPRFryldIY8,883
@@ -262,8 +264,8 @@ vellum/types/named_scenario_input_chat_history_variable_value_request.py,sha256=
262
264
  vellum/types/named_scenario_input_json_variable_value_request.py,sha256=UgnKv70zFviv1kl4nM7aM7IFA-7xyDOtglW4Y3GBZ28,757
263
265
  vellum/types/named_scenario_input_request.py,sha256=Pi8l377OHvKBwvPu9slZ1omf_NJ9S1mCQ5Wr-Ux5KVg,611
264
266
  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
267
+ vellum/types/named_test_case_array_variable_value.py,sha256=lrsRJGZ-_LLJVRjQubiX7X6rKZWTL6S6CweRQvd9B2Y,1028
268
+ vellum/types/named_test_case_array_variable_value_request.py,sha256=MqKZWZY47ndR467uEdsNXns_XxGEe-6oeEKfFbaF5JI,1099
267
269
  vellum/types/named_test_case_chat_history_variable_value.py,sha256=tRN-8jKDeth_VIeWIYzSAcZIT-PeKKAUBjsUB3JbUjo,808
268
270
  vellum/types/named_test_case_chat_history_variable_value_request.py,sha256=e4yLVJJnWyba3Yl_IJ4jJMfDdK1zxj19OuwirVBloSw,837
269
271
  vellum/types/named_test_case_error_variable_value.py,sha256=lEw5i9J4JK0LwSqtnefgxZ9Y9KUdy_omKUZe_goRmNo,768
@@ -280,7 +282,7 @@ vellum/types/named_test_case_string_variable_value.py,sha256=2xuTh35MarcDMMCy6px
280
282
  vellum/types/named_test_case_string_variable_value_request.py,sha256=Bv7LEBEyDHtBPPWdzgvCA8DHG6n1jF4NVlEe6zYPJUs,733
281
283
  vellum/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
282
284
  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
285
+ vellum/types/node_input_compiled_array_value.py,sha256=-UO10E0Lx_f0ISmuHfQ3V0mJbyCOL--rqm_tTsv2aiQ,973
284
286
  vellum/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
285
287
  vellum/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
286
288
  vellum/types/node_input_compiled_function_call_value.py,sha256=Q9vrORvrPDvHrBBYNA2YALHQd7WlGMytEBtoQdJelvk,747
@@ -289,7 +291,7 @@ vellum/types/node_input_compiled_number_value.py,sha256=Olc4UpYsm-v7ZhlTVXsp7JVQ
289
291
  vellum/types/node_input_compiled_search_results_value.py,sha256=A2SnHYZAt2_VsQDXL4B2CF3KYgDJeUAQ5L0RbI8flH0,763
290
292
  vellum/types/node_input_compiled_string_value.py,sha256=V4HKhHW6B2iUvYqYbuwcOHTxiui3nfOe0DKOiTXshJQ,678
291
293
  vellum/types/node_input_variable_compiled_value.py,sha256=ahG5KdRDQ97w3Ljhfz9EssY0FD1DKeE4C5y393QOS78,1046
292
- vellum/types/node_output_compiled_array_value.py,sha256=j2JB6jLk6aRyJTfH8Eagz24VNk6jkPX7PZ4QB7FsrsM,1205
294
+ vellum/types/node_output_compiled_array_value.py,sha256=-lUee9E-IrlndzNS-tzfAQrEOZv-ZcgAmm06_kcqOr8,1176
293
295
  vellum/types/node_output_compiled_chat_history_value.py,sha256=rAAnJ2PcXGxKusMpq2NEhJdBSRrPB9da5uN19x92Wu4,962
294
296
  vellum/types/node_output_compiled_error_value.py,sha256=dkgT_h463S8AF3QHVZdvy9HGF3A2LhxuNnAQouAYQlE,922
295
297
  vellum/types/node_output_compiled_function_call_value.py,sha256=Fygp5S2479B71vDmmBTjmJpp1ZfMEm3Qow2uINjNyZE,956
@@ -312,6 +314,7 @@ vellum/types/open_ai_vectorizer_text_embedding_3_small.py,sha256=T_-P7qGjTHJiJfM
312
314
  vellum/types/open_ai_vectorizer_text_embedding_3_small_request.py,sha256=-lwNeWj7ExP-JLncUp1Uyd20FxweVIDu-aEnenPB98A,841
313
315
  vellum/types/open_ai_vectorizer_text_embedding_ada_002.py,sha256=c4vNlR6lRvUjq-67M06sroDMNMG_qC4JUBqwmKEJQ2I,812
314
316
  vellum/types/open_ai_vectorizer_text_embedding_ada_002_request.py,sha256=FdpkkNBGgRwfqFjBwpfH4t2zKIM0pIYminX2iZQUzvY,841
317
+ vellum/types/paginated_container_image_read_list.py,sha256=7lwIgs1q7Z0xDYPGWPnjSNC1kU_peu79CotzaaQfRdA,801
315
318
  vellum/types/paginated_document_index_read_list.py,sha256=bO7pm3KCZi5LDO17YXgr_lUF9SRdAfMu6wOutX91ANw,797
316
319
  vellum/types/paginated_folder_entity_list.py,sha256=PElkrxMrnEjL9YGXde_r7RpNQUjzYfaLDlnwO8WFDSo,776
317
320
  vellum/types/paginated_slim_deployment_read_list.py,sha256=H8VKHr-aZP4ACwQJSs7KOrbqaj2nmMmyyvZHe7NRWRc,1048
@@ -399,7 +402,7 @@ vellum/types/submit_completion_actual_request.py,sha256=hMWNAGUc54I44kDFKFSXdXTx
399
402
  vellum/types/submit_workflow_execution_actual_request.py,sha256=xRCiA1QvQBD0lbZfBZUSZnm_XNOj17jyXXmppztQEB8,535
400
403
  vellum/types/subworkflow_node_result.py,sha256=a2N7E6OSVxH1fQB24j96a6qucw1DgCz7w_hChENNV9A,808
401
404
  vellum/types/subworkflow_node_result_data.py,sha256=np3Wnc5pmnehtMLfJZVz3bozYJN752vf9VERs9rIuqA,600
402
- vellum/types/templating_node_array_result.py,sha256=ZqEno03BYJFgUZZ2r2ThM4uSaZlw1Ew0aB5uuBgtNqs,972
405
+ vellum/types/templating_node_array_result.py,sha256=RDRVf9xpy6lRunPD-G0BpWLqnde-BbmHd_eHQnQkOW0,943
403
406
  vellum/types/templating_node_chat_history_result.py,sha256=RhEeDRtvWOPlLPsSuz3lAA3m8EqmdhB8sI_pwXuPgGg,728
404
407
  vellum/types/templating_node_error_result.py,sha256=A9CkVXU0YUYko0epKmZlIHPwvFNfmLuM3iwduH0OhNU,695
405
408
  vellum/types/templating_node_function_call_result.py,sha256=bJDLDS_N_dzf7w7wfUUaePg0N6_6amaJ8GrtDey8Kvw,721
@@ -410,7 +413,7 @@ vellum/types/templating_node_result_data.py,sha256=ySZesaAaCU6Zr2J2eSVK4Bu6nHnnF
410
413
  vellum/types/templating_node_result_output.py,sha256=f94nwW79EAAjHKpL70Vc_N2DRq-FC4993g1X79V5Q7M,986
411
414
  vellum/types/templating_node_search_results_result.py,sha256=LRChfWy1btVEuz8AX6x6x_s0o4uKKokc-R3O7kHGr5Q,737
412
415
  vellum/types/templating_node_string_result.py,sha256=b3BOuBwqhYMJHvsfVwtYaFSeau7R4XkyJ6gG37J0x7M,652
413
- vellum/types/terminal_node_array_result.py,sha256=XaetOZXyK1bebh1FH8QYMTGMnDvd6MfP14WC908gRlk,1114
416
+ vellum/types/terminal_node_array_result.py,sha256=Wml0lQLYTAN9qApPPjNqQ_GITh633ONf0bp2M1GxnDw,1085
414
417
  vellum/types/terminal_node_chat_history_result.py,sha256=YGywmDryELuzeLYi6p59pQoCNoPekA6bhSF0sYFAsw0,874
415
418
  vellum/types/terminal_node_error_result.py,sha256=qwhunjngnumpeNoqxnVEbvFoXAyX-CXQ_MusOwOeNv0,841
416
419
  vellum/types/terminal_node_function_call_result.py,sha256=-9tPhggVBQ9wvCHehZl1-L9G7oxrfDdR9aU8TFxowTo,867
@@ -421,7 +424,7 @@ vellum/types/terminal_node_result_data.py,sha256=JwpRyewiBPpOmHvCIof1fqBfDX_B6O9
421
424
  vellum/types/terminal_node_result_output.py,sha256=f3sAqpRpw9_TfPfW4312I0nwfrRLfaDny-ETFuIieao,936
422
425
  vellum/types/terminal_node_search_results_result.py,sha256=rX_ftp_C7hez_xjPRZm8yJuwMFoM6jsTDfPAseYmzFc,883
423
426
  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
427
+ vellum/types/test_case_array_variable_value.py,sha256=XZlpkDSmdvYdyVOC5u4EV3c7U-Nz9-JYjBr-UT7GO8c,1036
425
428
  vellum/types/test_case_chat_history_variable_value.py,sha256=YNaaLEmjmQLvflknYW_21y1KfyD-rLLBjIlHQURJhXg,825
426
429
  vellum/types/test_case_error_variable_value.py,sha256=he2fkOcwsRfXfC2hKT3MhzDkXctIi3cNARqhMi13bYk,786
427
430
  vellum/types/test_case_function_call_variable_value.py,sha256=p7Q7jgpZVKDlanszm31E5lTLfxQmegggyto9DHVQXzI,819
@@ -437,7 +440,7 @@ vellum/types/test_suite_run_deployment_release_tag_exec_config_request.py,sha256
437
440
  vellum/types/test_suite_run_exec_config.py,sha256=OuaNtd6ulP_Eq1ptz_YstJs5VtBOY3-p1XANEGnVwUA,530
438
441
  vellum/types/test_suite_run_exec_config_request.py,sha256=GNwGzV6SZiZWThoy4lM5JpRyegoqy3ylHjB2Kj5WOXI,612
439
442
  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
443
+ vellum/types/test_suite_run_execution_array_output.py,sha256=fnGLAXY6NC8uJKK2500lsRXDvugjfIBJiDAfWDg1sUo,1101
441
444
  vellum/types/test_suite_run_execution_chat_history_output.py,sha256=tzeWqczo04aXl-ALhfOHYEabrgOIqmG7E-nA5-l3dME,879
442
445
  vellum/types/test_suite_run_execution_error_output.py,sha256=6UXaVzWivUTQ639W5Tb7EJIudV3Lj4tzkYp_eknAX90,839
443
446
  vellum/types/test_suite_run_execution_function_call_output.py,sha256=jgAk0xgWnJudZh4VhDNb8HfgUAUHA6I8PK_2ExHW9hE,873
@@ -492,16 +495,16 @@ vellum/types/vellum_error_code_enum.py,sha256=thsWeS_QSTEF_vElgJ5tA2Zn98kF1mYnDR
492
495
  vellum/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
493
496
  vellum/types/vellum_image.py,sha256=wkFRgxOkxFPrmRdWTO58_41_vk0HYn5k4xsc-5ywxEs,637
494
497
  vellum/types/vellum_image_request.py,sha256=_Gr4L7PSY8PNQINyTy04hPdwLc8_bR1RTUWZ73RQRYM,644
495
- vellum/types/vellum_value.py,sha256=edQfVkLNI_6lqd84XFigqx8MBOupTDdDPZORBJfXsHs,818
498
+ vellum/types/vellum_value.py,sha256=LPV1UFvtD2P3pnq1pyVNHHgVip_1Ncl3u8C7RCa6rkE,898
496
499
  vellum/types/vellum_value_logical_condition_group_request.py,sha256=vyr6lhHuS-6YtcFL5TTmPGtKRoNI9w63N7N2RPQwKVQ,1402
497
500
  vellum/types/vellum_value_logical_condition_request.py,sha256=HkZfj4X48UHFrPDHgUi3lp0MUGBMfroC0noNqZ_rW8o,1177
498
501
  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
502
+ vellum/types/vellum_value_request.py,sha256=c0ds41RlI9rQnUXrt-An6wssRKLk7hKntjSEk7FqOuo,1103
500
503
  vellum/types/vellum_variable.py,sha256=LNNNlYbT1VqadO6aUmeir9cXirtxgrIl-R2EalYZ5Uo,1123
501
504
  vellum/types/vellum_variable_extensions.py,sha256=PsrRo0STOKhxrkSFRrOXCPlf1x5Uxpy3vVMJz02O20E,685
502
505
  vellum/types/vellum_variable_extensions_request.py,sha256=n5qAdEDpPtC_eS4HVRMFkm0f9GAvu16DZy7-R9FGEPI,692
503
506
  vellum/types/vellum_variable_request.py,sha256=OyQbVgFIYK_-RRLiZSDE8otpzRwsccHa1NUJ5T9UKLM,1210
504
- vellum/types/vellum_variable_type.py,sha256=uHeBCGi7U_SksgKOxtvI4KxYffD4BD2TlddTPo_LUSM,281
507
+ vellum/types/vellum_variable_type.py,sha256=SX8PY9l8zui3IaT9BwmOxczmb_WE7S9w37JshEZVemE,371
505
508
  vellum/types/workflow_deployment_read.py,sha256=zBn6JDHemCnmU6M4tMtyxwmxETOPeGKJeg9fmiAEP4w,2363
506
509
  vellum/types/workflow_event_error.py,sha256=HIewu_kh3KNPpWegAQArvAGHCp-cBIXqlUAAc_dBZhc,687
507
510
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=L6U8tgM7SiU4qGJMZChFzj6HfHgO-YAlTXfbT7ZIaE4,1993
@@ -516,7 +519,7 @@ vellum/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx
516
519
  vellum/types/workflow_node_result_event.py,sha256=qnhruqkIcKRqP8uB-o-27shcruiT2pjgD7wdrPcp0NE,603
517
520
  vellum/types/workflow_node_result_event_state.py,sha256=cC3CdfmXR8bPzSG4W6vDnndA9HAnfF3v4UzmyeVwxog,209
518
521
  vellum/types/workflow_output.py,sha256=gtqJeAoVE56QS8N0muYpXxaTUR1O9iFm2YIN_FmOEjk,902
519
- vellum/types/workflow_output_array.py,sha256=0rdxq9HDD4s_63cK_gePNlcXt8EKBoeSOdy1WRHoUsE,1118
522
+ vellum/types/workflow_output_array.py,sha256=pGBWpGx2_y792gt7afRcq-audwKnfIaAj-M9xx1deok,1089
520
523
  vellum/types/workflow_output_chat_history.py,sha256=oBoq6b9tJGyIzZAe7NWvoBKWeE5o7NgtlY6yiJtp3lM,892
521
524
  vellum/types/workflow_output_error.py,sha256=bJWwndZxiO6vWP2bM0jlD1oarlpSAjbE3n9kzOWbpGs,853
522
525
  vellum/types/workflow_output_function_call.py,sha256=HkfqsC86OMhlXr80CFDWuxKALNWb-JsQMOoDuzxourg,886
@@ -547,7 +550,7 @@ vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb
547
550
  vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
548
551
  vellum/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
549
552
  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,,
553
+ vellum_ai-0.9.1.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
554
+ vellum_ai-0.9.1.dist-info/METADATA,sha256=puAeAFvUsT8dk-MWeizk0MDqQqV8pfFmksGzaUZ3By0,4394
555
+ vellum_ai-0.9.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
556
+ vellum_ai-0.9.1.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
- ]