vellum-ai 0.3.6__py3-none-any.whl → 0.3.8__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. vellum/__init__.py +40 -0
  2. vellum/client.py +11 -8
  3. vellum/core/client_wrapper.py +1 -1
  4. vellum/resources/__init__.py +2 -0
  5. vellum/resources/deployments/client.py +2 -2
  6. vellum/resources/folder_entities/__init__.py +2 -0
  7. vellum/resources/folder_entities/client.py +98 -0
  8. vellum/resources/workflow_deployments/client.py +65 -8
  9. vellum/types/__init__.py +40 -0
  10. vellum/types/array_enum.py +5 -0
  11. vellum/types/array_variable_value_item.py +89 -0
  12. vellum/types/chat_history_variable_value.py +29 -0
  13. vellum/types/node_input_compiled_array_value.py +31 -0
  14. vellum/types/node_input_variable_compiled_value.py +11 -0
  15. vellum/types/node_output_compiled_array_value.py +30 -0
  16. vellum/types/node_output_compiled_function_value.py +30 -0
  17. vellum/types/node_output_compiled_value.py +22 -0
  18. vellum/types/number_variable_value.py +28 -0
  19. vellum/types/prompt_node_result_data.py +1 -0
  20. vellum/types/search_results_variable_value.py +29 -0
  21. vellum/types/workflow_deployment_read.py +57 -0
  22. vellum/types/workflow_request_chat_history_input_request.py +4 -0
  23. vellum/types/workflow_request_json_input_request.py +4 -0
  24. vellum/types/workflow_request_number_input_request.py +4 -0
  25. vellum/types/workflow_request_string_input_request.py +4 -0
  26. {vellum_ai-0.3.6.dist-info → vellum_ai-0.3.8.dist-info}/METADATA +1 -1
  27. {vellum_ai-0.3.6.dist-info → vellum_ai-0.3.8.dist-info}/RECORD +29 -18
  28. {vellum_ai-0.3.6.dist-info → vellum_ai-0.3.8.dist-info}/LICENSE +0 -0
  29. {vellum_ai-0.3.6.dist-info → vellum_ai-0.3.8.dist-info}/WHEEL +0 -0
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing_extensions
4
+
5
+ ArrayEnum = typing_extensions.Literal["ARRAY"]
@@ -0,0 +1,89 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from __future__ import annotations
4
+
5
+ import typing
6
+
7
+ import typing_extensions
8
+
9
+ from .chat_history_variable_value import ChatHistoryVariableValue
10
+ from .error_variable_value import ErrorVariableValue
11
+ from .function_call_variable_value import FunctionCallVariableValue
12
+ from .json_variable_value import JsonVariableValue
13
+ from .number_variable_value import NumberVariableValue
14
+ from .search_results_variable_value import SearchResultsVariableValue
15
+ from .string_variable_value import StringVariableValue
16
+
17
+
18
+ class ArrayVariableValueItem_String(StringVariableValue):
19
+ type: typing_extensions.Literal["STRING"]
20
+
21
+ class Config:
22
+ frozen = True
23
+ smart_union = True
24
+ allow_population_by_field_name = True
25
+
26
+
27
+ class ArrayVariableValueItem_Number(NumberVariableValue):
28
+ type: typing_extensions.Literal["NUMBER"]
29
+
30
+ class Config:
31
+ frozen = True
32
+ smart_union = True
33
+ allow_population_by_field_name = True
34
+
35
+
36
+ class ArrayVariableValueItem_Json(JsonVariableValue):
37
+ type: typing_extensions.Literal["JSON"]
38
+
39
+ class Config:
40
+ frozen = True
41
+ smart_union = True
42
+ allow_population_by_field_name = True
43
+
44
+
45
+ class ArrayVariableValueItem_ChatHistory(ChatHistoryVariableValue):
46
+ type: typing_extensions.Literal["CHAT_HISTORY"]
47
+
48
+ class Config:
49
+ frozen = True
50
+ smart_union = True
51
+ allow_population_by_field_name = True
52
+
53
+
54
+ class ArrayVariableValueItem_SearchResults(SearchResultsVariableValue):
55
+ type: typing_extensions.Literal["SEARCH_RESULTS"]
56
+
57
+ class Config:
58
+ frozen = True
59
+ smart_union = True
60
+ allow_population_by_field_name = True
61
+
62
+
63
+ class ArrayVariableValueItem_Error(ErrorVariableValue):
64
+ type: typing_extensions.Literal["ERROR"]
65
+
66
+ class Config:
67
+ frozen = True
68
+ smart_union = True
69
+ allow_population_by_field_name = True
70
+
71
+
72
+ class ArrayVariableValueItem_FunctionCall(FunctionCallVariableValue):
73
+ type: typing_extensions.Literal["FUNCTION_CALL"]
74
+
75
+ class Config:
76
+ frozen = True
77
+ smart_union = True
78
+ allow_population_by_field_name = True
79
+
80
+
81
+ ArrayVariableValueItem = typing.Union[
82
+ ArrayVariableValueItem_String,
83
+ ArrayVariableValueItem_Number,
84
+ ArrayVariableValueItem_Json,
85
+ ArrayVariableValueItem_ChatHistory,
86
+ ArrayVariableValueItem_SearchResults,
87
+ ArrayVariableValueItem_Error,
88
+ ArrayVariableValueItem_FunctionCall,
89
+ ]
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .chat_message import ChatMessage
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class ChatHistoryVariableValue(pydantic.BaseModel):
16
+ value: typing.Optional[typing.List[ChatMessage]]
17
+
18
+ def json(self, **kwargs: typing.Any) -> str:
19
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
20
+ return super().json(**kwargs_with_defaults)
21
+
22
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
23
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
24
+ return super().dict(**kwargs_with_defaults)
25
+
26
+ class Config:
27
+ frozen = True
28
+ smart_union = True
29
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,31 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .array_variable_value_item import ArrayVariableValueItem
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class NodeInputCompiledArrayValue(pydantic.BaseModel):
16
+ node_input_id: str
17
+ key: str
18
+ value: typing.List[ArrayVariableValueItem]
19
+
20
+ def json(self, **kwargs: typing.Any) -> str:
21
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
22
+ return super().json(**kwargs_with_defaults)
23
+
24
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
25
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
26
+ return super().dict(**kwargs_with_defaults)
27
+
28
+ class Config:
29
+ frozen = True
30
+ smart_union = True
31
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -6,6 +6,7 @@ import typing
6
6
 
7
7
  import typing_extensions
8
8
 
9
+ from .node_input_compiled_array_value import NodeInputCompiledArrayValue
9
10
  from .node_input_compiled_chat_history_value import NodeInputCompiledChatHistoryValue
10
11
  from .node_input_compiled_error_value import NodeInputCompiledErrorValue
11
12
  from .node_input_compiled_json_value import NodeInputCompiledJsonValue
@@ -68,6 +69,15 @@ class NodeInputVariableCompiledValue_Error(NodeInputCompiledErrorValue):
68
69
  allow_population_by_field_name = True
69
70
 
70
71
 
72
+ class NodeInputVariableCompiledValue_Array(NodeInputCompiledArrayValue):
73
+ type: typing_extensions.Literal["ARRAY"]
74
+
75
+ class Config:
76
+ frozen = True
77
+ smart_union = True
78
+ allow_population_by_field_name = True
79
+
80
+
71
81
  NodeInputVariableCompiledValue = typing.Union[
72
82
  NodeInputVariableCompiledValue_String,
73
83
  NodeInputVariableCompiledValue_Number,
@@ -75,4 +85,5 @@ NodeInputVariableCompiledValue = typing.Union[
75
85
  NodeInputVariableCompiledValue_ChatHistory,
76
86
  NodeInputVariableCompiledValue_SearchResults,
77
87
  NodeInputVariableCompiledValue_Error,
88
+ NodeInputVariableCompiledValue_Array,
78
89
  ]
@@ -0,0 +1,30 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .array_variable_value_item import ArrayVariableValueItem
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class NodeOutputCompiledArrayValue(pydantic.BaseModel):
16
+ node_output_id: str
17
+ value: typing.List[ArrayVariableValueItem]
18
+
19
+ def json(self, **kwargs: typing.Any) -> str:
20
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
21
+ return super().json(**kwargs_with_defaults)
22
+
23
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
24
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
25
+ return super().dict(**kwargs_with_defaults)
26
+
27
+ class Config:
28
+ frozen = True
29
+ smart_union = True
30
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,30 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .function_call import FunctionCall
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class NodeOutputCompiledFunctionValue(pydantic.BaseModel):
16
+ node_output_id: str
17
+ value: typing.Optional[FunctionCall]
18
+
19
+ def json(self, **kwargs: typing.Any) -> str:
20
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
21
+ return super().json(**kwargs_with_defaults)
22
+
23
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
24
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
25
+ return super().dict(**kwargs_with_defaults)
26
+
27
+ class Config:
28
+ frozen = True
29
+ smart_union = True
30
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -6,8 +6,10 @@ import typing
6
6
 
7
7
  import typing_extensions
8
8
 
9
+ from .node_output_compiled_array_value import NodeOutputCompiledArrayValue
9
10
  from .node_output_compiled_chat_history_value import NodeOutputCompiledChatHistoryValue
10
11
  from .node_output_compiled_error_value import NodeOutputCompiledErrorValue
12
+ from .node_output_compiled_function_value import NodeOutputCompiledFunctionValue
11
13
  from .node_output_compiled_json_value import NodeOutputCompiledJsonValue
12
14
  from .node_output_compiled_number_value import NodeOutputCompiledNumberValue
13
15
  from .node_output_compiled_search_results_value import NodeOutputCompiledSearchResultsValue
@@ -68,6 +70,24 @@ class NodeOutputCompiledValue_Error(NodeOutputCompiledErrorValue):
68
70
  allow_population_by_field_name = True
69
71
 
70
72
 
73
+ class NodeOutputCompiledValue_Array(NodeOutputCompiledArrayValue):
74
+ type: typing_extensions.Literal["ARRAY"]
75
+
76
+ class Config:
77
+ frozen = True
78
+ smart_union = True
79
+ allow_population_by_field_name = True
80
+
81
+
82
+ class NodeOutputCompiledValue_FunctionCall(NodeOutputCompiledFunctionValue):
83
+ type: typing_extensions.Literal["FUNCTION_CALL"]
84
+
85
+ class Config:
86
+ frozen = True
87
+ smart_union = True
88
+ allow_population_by_field_name = True
89
+
90
+
71
91
  NodeOutputCompiledValue = typing.Union[
72
92
  NodeOutputCompiledValue_String,
73
93
  NodeOutputCompiledValue_Number,
@@ -75,4 +95,6 @@ NodeOutputCompiledValue = typing.Union[
75
95
  NodeOutputCompiledValue_ChatHistory,
76
96
  NodeOutputCompiledValue_SearchResults,
77
97
  NodeOutputCompiledValue_Error,
98
+ NodeOutputCompiledValue_Array,
99
+ NodeOutputCompiledValue_FunctionCall,
78
100
  ]
@@ -0,0 +1,28 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic.v1 as pydantic # type: ignore
10
+ except ImportError:
11
+ import pydantic # type: ignore
12
+
13
+
14
+ class NumberVariableValue(pydantic.BaseModel):
15
+ value: typing.Optional[float]
16
+
17
+ def json(self, **kwargs: typing.Any) -> str:
18
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
19
+ return super().json(**kwargs_with_defaults)
20
+
21
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
22
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
23
+ return super().dict(**kwargs_with_defaults)
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -13,6 +13,7 @@ except ImportError:
13
13
 
14
14
  class PromptNodeResultData(pydantic.BaseModel):
15
15
  output_id: str
16
+ array_output_id: typing.Optional[str]
16
17
  text: typing.Optional[str]
17
18
  delta: typing.Optional[str]
18
19
 
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .search_result import SearchResult
8
+
9
+ try:
10
+ import pydantic.v1 as pydantic # type: ignore
11
+ except ImportError:
12
+ import pydantic # type: ignore
13
+
14
+
15
+ class SearchResultsVariableValue(pydantic.BaseModel):
16
+ value: typing.Optional[typing.List[SearchResult]]
17
+
18
+ def json(self, **kwargs: typing.Any) -> str:
19
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
20
+ return super().json(**kwargs_with_defaults)
21
+
22
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
23
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
24
+ return super().dict(**kwargs_with_defaults)
25
+
26
+ class Config:
27
+ frozen = True
28
+ smart_union = True
29
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,57 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .entity_status import EntityStatus
8
+ from .environment_enum import EnvironmentEnum
9
+ from .vellum_variable import VellumVariable
10
+
11
+ try:
12
+ import pydantic.v1 as pydantic # type: ignore
13
+ except ImportError:
14
+ import pydantic # type: ignore
15
+
16
+
17
+ class WorkflowDeploymentRead(pydantic.BaseModel):
18
+ id: str
19
+ name: str = pydantic.Field(
20
+ description="A name that uniquely identifies this workflow deployment within its workspace"
21
+ )
22
+ label: str = pydantic.Field(description="A human-readable label for the workflow deployment")
23
+ status: typing.Optional[EntityStatus] = pydantic.Field(
24
+ description=(
25
+ "The current status of the workflow deployment\n" "\n" "- `ACTIVE` - Active\n" "- `ARCHIVED` - Archived\n"
26
+ )
27
+ )
28
+ environment: typing.Optional[EnvironmentEnum] = pydantic.Field(
29
+ description=(
30
+ "The environment this workflow deployment is used in\n"
31
+ "\n"
32
+ "- `DEVELOPMENT` - Development\n"
33
+ "- `STAGING` - Staging\n"
34
+ "- `PRODUCTION` - Production\n"
35
+ )
36
+ )
37
+ created: dt.datetime
38
+ last_deployed_on: dt.datetime
39
+ input_variables: typing.List[VellumVariable] = pydantic.Field(
40
+ description="The input variables this Workflow Deployment expects to receive values for when it is executed."
41
+ )
42
+ output_variables: typing.List[VellumVariable] = pydantic.Field(
43
+ description="The output variables this Workflow Deployment produces values for when it's executed."
44
+ )
45
+
46
+ def json(self, **kwargs: typing.Any) -> str:
47
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
48
+ return super().json(**kwargs_with_defaults)
49
+
50
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
51
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
52
+ return super().dict(**kwargs_with_defaults)
53
+
54
+ class Config:
55
+ frozen = True
56
+ smart_union = True
57
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -13,6 +13,10 @@ except ImportError:
13
13
 
14
14
 
15
15
  class WorkflowRequestChatHistoryInputRequest(pydantic.BaseModel):
16
+ """
17
+ The input for a chat history variable in a Workflow.
18
+ """
19
+
16
20
  name: str = pydantic.Field(description="The variable's name, as defined in the Workflow.")
17
21
  value: typing.List[ChatMessageRequest]
18
22
 
@@ -12,6 +12,10 @@ except ImportError:
12
12
 
13
13
 
14
14
  class WorkflowRequestJsonInputRequest(pydantic.BaseModel):
15
+ """
16
+ The input for a JSON variable in a Workflow.
17
+ """
18
+
15
19
  name: str = pydantic.Field(description="The variable's name, as defined in the Workflow.")
16
20
  value: typing.Dict[str, typing.Any]
17
21
 
@@ -12,6 +12,10 @@ except ImportError:
12
12
 
13
13
 
14
14
  class WorkflowRequestNumberInputRequest(pydantic.BaseModel):
15
+ """
16
+ The input for a number variable in a Workflow.
17
+ """
18
+
15
19
  name: str = pydantic.Field(description="The variable's name, as defined in the Workflow.")
16
20
  value: float
17
21
 
@@ -12,6 +12,10 @@ except ImportError:
12
12
 
13
13
 
14
14
  class WorkflowRequestStringInputRequest(pydantic.BaseModel):
15
+ """
16
+ The input for a string variable in a Workflow.
17
+ """
18
+
15
19
  name: str = pydantic.Field(description="The variable's name, as defined in the Workflow.")
16
20
  value: str
17
21
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.3.6
3
+ Version: 0.3.8
4
4
  Summary:
5
5
  Requires-Python: >=3.7,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,8 +1,8 @@
1
- vellum/__init__.py,sha256=aLZO9kazzLFke5f7B88oC3peXNupeB23aCL4DymcEKc,25339
2
- vellum/client.py,sha256=AwAWecRomi1ccqhnU8IdyXHh_FvnfVcpGLNYRL5ordY,61052
1
+ vellum/__init__.py,sha256=qeTY0dYPAqebPUUPMyoNptrmmwEIdseQG0IlpCDfQrY,26703
2
+ vellum/client.py,sha256=hZSf31LvTPHEYT2uFo9fgP1JuynttM7LGUlsvZDuQJM,61957
3
3
  vellum/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
4
  vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- vellum/core/client_wrapper.py,sha256=Qp6Ga-3I9EsMJs9hN96CtQc3hy8vOFVDjejai_mp1jw,1212
5
+ vellum/core/client_wrapper.py,sha256=EFru019KX5sHGeDkk3brv26aGALQgiSWhz9zmEzwR7k,1212
6
6
  vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  vellum/core/jsonable_encoder.py,sha256=MTYkDov2EryHgee4QM46uZiBOuOXK9KTHlBdBwU-CpU,3799
8
8
  vellum/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
@@ -14,15 +14,17 @@ vellum/errors/forbidden_error.py,sha256=dgnatOGair3CvxljCE45_qwN_yefzcw2G0vw88wr
14
14
  vellum/errors/internal_server_error.py,sha256=E0rgqJC0-LcetLi1HmSi92KpvNkGSRCIdBeEqT_ln1s,252
15
15
  vellum/errors/not_found_error.py,sha256=P65k-Lm2RuefAVSNLER5hH-4P99SGohKy2cOPSrIxNk,246
16
16
  vellum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- vellum/resources/__init__.py,sha256=vtYfeQ0Owhn3uLX2j7Y16vrh6-8Y4QkZ1IDu9Dne9Po,631
17
+ vellum/resources/__init__.py,sha256=E7dvnCySQgcXn9AADWlkZw4zNN84-8dH3WZ-BgPclhs,675
18
18
  vellum/resources/deployments/__init__.py,sha256=AE0TcFwLrLBljM0ZDX-pPw4Kqt-1f5JDpIok2HS80QI,157
19
- vellum/resources/deployments/client.py,sha256=rqD2zsLBlRwWE619Nb9m3wSEC9DAkz8RLJX8lVx_Ags,10812
19
+ vellum/resources/deployments/client.py,sha256=Kd7M8vjEq8tYgl0lZIX48FT-TnTogpIZC_8ylulWLpg,10752
20
20
  vellum/resources/deployments/types/__init__.py,sha256=IhwnmoXJ0r_QEhh1b2tBcaAm_x3fWMVuIhYmAapp_ZA,183
21
21
  vellum/resources/deployments/types/deployments_list_request_status.py,sha256=phuWe_3mJi4tJh2XR9BFw5QimgzBBWKzKRG2huILy8o,518
22
22
  vellum/resources/document_indexes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
23
23
  vellum/resources/document_indexes/client.py,sha256=nAZ27OvbZg4d94CW-J8JBImiyClWvGaRhkQeEgwUZGA,10894
24
24
  vellum/resources/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
25
25
  vellum/resources/documents/client.py,sha256=V64IA5_vrjq52i_DUV1LEy4jvcwalww5fYxoiVauabA,17776
26
+ vellum/resources/folder_entities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
+ vellum/resources/folder_entities/client.py,sha256=KBC-YKkUQTE31etwG0D9MJF_VW_KiZ0eCi18JYzLE8s,3748
26
28
  vellum/resources/model_versions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
29
  vellum/resources/model_versions/client.py,sha256=6OQ4x0yqdd3kjjI88HXbJLx1W7qblme4YueHYr7j9pg,3053
28
30
  vellum/resources/registered_prompts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -32,19 +34,22 @@ vellum/resources/sandboxes/client.py,sha256=qf7rJ72xWkfmA1ae2NY2yaGJ9It-Q-ha1oX6
32
34
  vellum/resources/test_suites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
33
35
  vellum/resources/test_suites/client.py,sha256=3aySNI0qa-aD-NGZ_zOZOvHmV94i7h8BjBsxH096Ee8,8693
34
36
  vellum/resources/workflow_deployments/__init__.py,sha256=-5BCA0kSmW6WUh4gqLuQtHv4zFdt9lccuDwMU5YvEu4,173
35
- vellum/resources/workflow_deployments/client.py,sha256=KnJAvDe2Z1jlcDj8IHS1ADKZYdVUT1gHefa4P4_QdXA,4776
37
+ vellum/resources/workflow_deployments/client.py,sha256=9MTY1hrzOjy1n7uMD6PDHZ1rFvdKGI2YEQHGJeLbLiw,6711
36
38
  vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_pOloygrjl4sNbKZjTEKBxbMyz6E,208
37
39
  vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=8-G1SalBR6-AfRnb6POOR9M3tvZa3CGwFIs1ArZb6uw,542
38
- vellum/types/__init__.py,sha256=CqTNi5g_hU7CHLrxu-SmSeRvp1y-oVmhv-ulduiGBz8,33919
40
+ vellum/types/__init__.py,sha256=_W9IryjRriGE6RI2xPpSQKNjyq7PHUAhGLJAi8HTjqk,35563
39
41
  vellum/types/api_node_result.py,sha256=ESEn5ydtAWsyEI1H3vYbhh1eiByPWNlNzsgQcUWPIfw,1003
40
42
  vellum/types/api_node_result_data.py,sha256=HvpZaAKYXsoBOnobACIYCmIdxbRc7Zp-ibIohiz_Nzc,1125
41
43
  vellum/types/array_chat_message_content.py,sha256=9aHCzT66f7zTX0oWEL-yvIL8L81joe2Qe5L_DaRDqnU,1050
42
44
  vellum/types/array_chat_message_content_item.py,sha256=a383gaeYCucVDvnY1Xk1z8INbPt-qch4VCT6i_JD3OA,1221
43
45
  vellum/types/array_chat_message_content_item_request.py,sha256=Plg6Ny8pwn-na1r1vPeJSdg1IovFcJqcyT_0UiYqfWs,1345
44
46
  vellum/types/array_chat_message_content_request.py,sha256=nXvKOArX2Bx_T2S4-ZK_09bfsSkCQb69OahL1Q_h3bU,1079
47
+ vellum/types/array_enum.py,sha256=ZpwcTHF6WuYeP8QlVfkuJ_YSyPH0iYjeydvHV5kF0HU,138
48
+ vellum/types/array_variable_value_item.py,sha256=eulneISKZV9OtR0R4Z2QqzKmejNpLRY17gsEjRBcojM,2451
45
49
  vellum/types/block_type_enum.py,sha256=w6z5D3RTe75YQBG6HpX8NCbO_kSZxIL0Xy1xss2RKS8,1051
46
50
  vellum/types/chat_history_enum.py,sha256=aiUhxKMC4D83EjGnKNPSzSwoBT5J6G0O-TvBTKr4Oek,151
47
51
  vellum/types/chat_history_input_request.py,sha256=VyGS0Mv_He-fI2d22ygpC2k5ddXKnzWDRFc7-Xkryog,1130
52
+ vellum/types/chat_history_variable_value.py,sha256=koLGjfczUqLz56JWV0lWFXfE0NkjHFHfbIX1qdD7im0,958
48
53
  vellum/types/chat_message.py,sha256=oQAvsjlhbLWANAiQgdNCOpU1OBRDa9RyiywRklG5M9I,1060
49
54
  vellum/types/chat_message_content.py,sha256=2NQqu8qgDlsYs5-ka7OMYAyZXA0Ft2n2I2efvNDBFg8,1466
50
55
  vellum/types/chat_message_content_request.py,sha256=V0Q4CI4TYeqD4b7flSI69L1XkLSxrgadK4GpMhWo8Yg,1630
@@ -133,23 +138,27 @@ vellum/types/named_test_case_number_variable_value_request.py,sha256=nmpFOi4JDlU
133
138
  vellum/types/named_test_case_search_results_variable_value_request.py,sha256=vazWctXunVP4FbOy97UpAY5nmggd4FpdRnBHp_eRQI4,1019
134
139
  vellum/types/named_test_case_string_variable_value_request.py,sha256=xazwNVwD3LDL8w1AUAwMnCP7-X06ZNSISWvA597pQxw,928
135
140
  vellum/types/named_test_case_variable_value_request.py,sha256=k5TGiJ8P1Pqm16cLniKchYq1bQ6Y73SeJjJ6P7rHAWY,2630
141
+ vellum/types/node_input_compiled_array_value.py,sha256=S7LX6gmvi7sEgmvLKjZS_gL9ZVv-v2lORSffUUYgskw,1015
136
142
  vellum/types/node_input_compiled_chat_history_value.py,sha256=ZVUjSYuz4DeJU7sUcexHTcJSxhOSha1XNBjNlmL-QE8,1003
137
143
  vellum/types/node_input_compiled_error_value.py,sha256=nbFNdikbmqLutApUmpKXI0k3ukAkPMkLEopo-WNWa8g,984
138
144
  vellum/types/node_input_compiled_json_value.py,sha256=-GCgER6yFl3jOu4W4Ktjy9nM_vKYtBj8vqVitOvHd5I,962
139
145
  vellum/types/node_input_compiled_number_value.py,sha256=DC6m1WE6jQsa1fGwei4Gt0U4CLO2bjo6Kn4pxMHRE_E,941
140
146
  vellum/types/node_input_compiled_search_results_value.py,sha256=p9K0LpWvAg9TMzjTNzmODHSCadmfPdDHMF5CnivGHcc,1008
141
147
  vellum/types/node_input_compiled_string_value.py,sha256=lrOr8WhK5wZrsUb1-7bYQ7M2deap8JvnVMtqh8887Zc,939
142
- vellum/types/node_input_variable_compiled_value.py,sha256=6PhquhSskdpslUfbS0roxl8H2iQC_WLOGy3IagsZLQs,2381
148
+ vellum/types/node_input_variable_compiled_value.py,sha256=x53Ex-SzLypkleBw7exiN1QvjkBni4IQ5oegHLC9sIk,2730
149
+ vellum/types/node_output_compiled_array_value.py,sha256=mFen333s-uQMrYdtOqnh6I-7cmaO8KtmvO2hQdngsRo,1004
143
150
  vellum/types/node_output_compiled_chat_history_value.py,sha256=MHoBSeJuzPB_aJqMWH4wp-uqixsU1UjVmDAvts5RGRg,992
144
151
  vellum/types/node_output_compiled_error_value.py,sha256=-H6BghCPoM-EH2pGBmQlDBS6DviiqU6agVf92eNClmQ,973
152
+ vellum/types/node_output_compiled_function_value.py,sha256=iN7_clmEI-2bnBVnrlb5oc9gnvfUop5Eq4ZrUxv5a58,979
145
153
  vellum/types/node_output_compiled_json_value.py,sha256=0XY2zVrCdDgoNdVbWqckbY3W4t-xp86R-uZqQygRtpQ,951
146
154
  vellum/types/node_output_compiled_number_value.py,sha256=y924rxk72uRpRcdUz7mPCOL41JZluoatnDr92eSkzpQ,930
147
155
  vellum/types/node_output_compiled_search_results_value.py,sha256=CVjwk4PhBHv3Cvsl-6-Il7xMLVeS4O_kI9emuyi3Wts,997
148
156
  vellum/types/node_output_compiled_string_value.py,sha256=sy7iRnSSvnS1SK8pRsHpBkBRQ8IpnjM1IEOp_q6n18k,928
149
- vellum/types/node_output_compiled_value.py,sha256=R4-AO22SP-yVg7cBLQxGsot8oK9mR6piKYFymFAXd8I,2308
157
+ vellum/types/node_output_compiled_value.py,sha256=GA8t4odEkzLLSs6td0HqAsqDXVOiqTYNMlWGsG8V9dc,3015
150
158
  vellum/types/normalized_log_probs.py,sha256=XhiqVdoFYWbVhYWinsiDzkIRSs1t2DCMEX18EwK-c24,1013
151
159
  vellum/types/normalized_token_log_probs.py,sha256=ZIEr6evXULAv5GFhkekr1Qc6QsJjr2vsTdumMooO4oc,1014
152
160
  vellum/types/number_enum.py,sha256=NBfcHwHjWrS5-SSV82JsoX7EW-SU9yKcHHYAemRt_Gs,140
161
+ vellum/types/number_variable_value.py,sha256=fKWlCu-Roel4CYQ7go_cPok0bvTEbU6JOaReymrUjSU,896
153
162
  vellum/types/paginated_slim_deployment_read_list.py,sha256=MeOByJstYNcBpqfnsmZ7NIOMilo5DerIALc01FNrU0Q,1087
154
163
  vellum/types/paginated_slim_document_list.py,sha256=rfm_k539tWn6jVBjtgUG1M0AqtPvxtwPXwBJLPBiE6Q,1062
155
164
  vellum/types/paginated_slim_workflow_deployment_list.py,sha256=HSnI0CeB7-gJuCkjCvFZVE2Om00OYCTOs4I5Rzaudm8,1103
@@ -159,7 +168,7 @@ vellum/types/prompt_deployment_expand_meta_request_request.py,sha256=6pPGEk_dKi1
159
168
  vellum/types/prompt_deployment_input_request.py,sha256=pwI4mGEz88s8gJr1j_5-4t501tAVwsFNZrEVfPYWLmk,1159
160
169
  vellum/types/prompt_execution_meta.py,sha256=tF9eMOh_CAMvtq2lXVRfVOaWp12jDhuoEUY2S2aENsM,1266
161
170
  vellum/types/prompt_node_result.py,sha256=M4e37S30KFoMYs2khcxG-BxCWSLdwIxBYIjXWEfQbxQ,1017
162
- vellum/types/prompt_node_result_data.py,sha256=LyNkZz-9lYejVtIaej1m7u5CiWmXVFG8IAr6hVQBgZg,945
171
+ vellum/types/prompt_node_result_data.py,sha256=NjlHXcFbxvP15tDrsgWsj9s6OcDJDcy4LdXCrWAmVZ8,987
163
172
  vellum/types/prompt_output.py,sha256=Bz8hTTGUdg0GAmvTw0_gSCoB3jzs_zhF7kPbpKDMSD0,1336
164
173
  vellum/types/prompt_template_block.py,sha256=2UfBd8ktRrvVp_gZFLWevrV5D1UjXCji4YbeHPAVl0c,1164
165
174
  vellum/types/prompt_template_block_data.py,sha256=fEveYsxf-CAPNhxjirVRNCcqTtmNBxFdjMks-W9-02c,983
@@ -202,6 +211,7 @@ vellum/types/search_result_document_request.py,sha256=MeleItFXTTvx45hPmI4mhKdQSV
202
211
  vellum/types/search_result_merging_request.py,sha256=lLgp8q1WwvdUJcR1YWpLRjmZ3SgYZj2-Bbg450xWxDg,970
203
212
  vellum/types/search_result_request.py,sha256=SMjICHnxr3l8-KCe7ftWMZiKPdlvdMAPZd4zRXNxpQ8,1335
204
213
  vellum/types/search_results_enum.py,sha256=Duyq99BLaCcFw_-VOpHff-tP8QSFP-FfzLRN81Avgjw,155
214
+ vellum/types/search_results_variable_value.py,sha256=vyVdzPmriQPVvQu52CM7z8LZup3tFh5dl5BFnarPMI8,963
205
215
  vellum/types/search_weights_request.py,sha256=guPgN3N0b5Mg0sIpw8ts80iBOT_nUsRNZqjDMKJIphI,1117
206
216
  vellum/types/slim_deployment_read.py,sha256=80-xQdAlZaIwqg_QB6FWRDNGRmXTeHkK8-SHGCJOLFs,1811
207
217
  vellum/types/slim_document.py,sha256=AcFFqAHpE067rn3j4x0qQt6Y2yN5La-pPPLB3s6QfD8,3074
@@ -253,6 +263,7 @@ vellum/types/vellum_image.py,sha256=1lbzLpkpvJ1Te3ZNtCAKCe2y8uHoDog5u5Sk97UBRek,
253
263
  vellum/types/vellum_image_request.py,sha256=7ZSlLAN5YDFLPy3O2j7Lfv7oEdvyZEZRxKTv6pDPS3M,934
254
264
  vellum/types/vellum_variable.py,sha256=mVchGYwlkdti5QKb4nTqalA_rotmwhI0fLlT-dmrweQ,964
255
265
  vellum/types/vellum_variable_type.py,sha256=noEyyIxh9AutFdSnL9hdkngSWSEzF_xHRJVte19RX_E,1855
266
+ vellum/types/workflow_deployment_read.py,sha256=Z_Mfc9uUqDWSKADoUvj4xksM5m7saE192YeQYqqNCR0,2211
256
267
  vellum/types/workflow_event_error.py,sha256=X1jEuhnsZoh75FN6XpTvtbO67UD_1SiACsBk5bhn3wQ,1001
257
268
  vellum/types/workflow_execution_actual_chat_history_request.py,sha256=skI-SuvBfJc8wxH2EDMqyKCGUgjfFFBUPkCLyncHgmM,2014
258
269
  vellum/types/workflow_execution_actual_json_request.py,sha256=hVKpBukLehwDUopO7iiKv-wTvxDDg4SXMYmmexZDMo0,1951
@@ -273,11 +284,11 @@ vellum/types/workflow_output_json.py,sha256=3jqhAl2siI2UIWlNa_08Vd0joioJQ5JxikLR
273
284
  vellum/types/workflow_output_number.py,sha256=8zoGZLnmF1dmO48puGxJWw7T0XQp3EFHj8c5GWj4TXo,1048
274
285
  vellum/types/workflow_output_search_results.py,sha256=6F1iLjcNWbw50PrKnci-JygXYGPlTkGwhU6qqMKZGCs,1123
275
286
  vellum/types/workflow_output_string.py,sha256=WzualuRO4-P9Byg2YbX7icXNRkOirVNbJQ-VHY6M62w,1046
276
- vellum/types/workflow_request_chat_history_input_request.py,sha256=qnbW2l-3k0AgwKNDAam29pvYmMGMn0V4aTXSR2YlXuQ,1072
287
+ vellum/types/workflow_request_chat_history_input_request.py,sha256=uN7LFgwBjoJSvUd2rID9fJriToK8JXFRk93D5wpQPnI,1146
277
288
  vellum/types/workflow_request_input_request.py,sha256=ZYmEH0-gRMGcMSSKDD2aBtfDjwMU_m4hmt17NPZ7uQA,1666
278
- vellum/types/workflow_request_json_input_request.py,sha256=VbcQsnTp4myLN_wRSmkxMJILaDgaPjZQKovNTpkp1Is,1009
279
- vellum/types/workflow_request_number_input_request.py,sha256=E7d2_QE-o1vv_VVfR6CFEGiGLYxrMdkZ7d3sZUN-6cU,988
280
- vellum/types/workflow_request_string_input_request.py,sha256=L1Zl1_K7Tlqjaz5pJfb8Q4GG2BVKWJzw2Wos6IEJpxM,986
289
+ vellum/types/workflow_request_json_input_request.py,sha256=cP-FDnuNjabM2gDm7XR8uWE_9ubIHwwN_a_FHDO1fZc,1075
290
+ vellum/types/workflow_request_number_input_request.py,sha256=FzyzrBiE1QRjGyho6rV6zDmTwUKEiHSxJDa_OXtVxxg,1056
291
+ vellum/types/workflow_request_string_input_request.py,sha256=cE_fci04ITrXC5PNhz-WByw40hTmFpnCBSSjnkXzwHE,1054
281
292
  vellum/types/workflow_result_event.py,sha256=5-HN3_dqTgEiKPnXoxCdzv1C3P9ZP1qL7Y_gDeh9k9w,1347
282
293
  vellum/types/workflow_result_event_output_data.py,sha256=WugPeifmg-x5Ef6hFZ6L3gQC68_e57Q-xThlcWEBhlA,2500
283
294
  vellum/types/workflow_result_event_output_data_chat_history.py,sha256=rvSMvssqF8GqYDIVA-7c48O2qa1bKvE3rULM26OEhao,1397
@@ -287,7 +298,7 @@ vellum/types/workflow_result_event_output_data_number.py,sha256=5IG_4XZhUZjwCfX1
287
298
  vellum/types/workflow_result_event_output_data_search_results.py,sha256=FZeTLuHIBJp0AZUqBOzzMN4ntf_Q3hKP4m3vIzVq2cQ,1404
288
299
  vellum/types/workflow_result_event_output_data_string.py,sha256=XJ7ZFTS2eqIMwa-zXFPDowu3o3JnRUfxC1MJIk8nPDI,1478
289
300
  vellum/types/workflow_stream_event.py,sha256=OQUSzwoM-OCfWxNzeOVVLsjCue_WWqin3tGMtwvp_rc,873
290
- vellum_ai-0.3.6.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
291
- vellum_ai-0.3.6.dist-info/METADATA,sha256=GpxHGUbIm-b5o8zid8VluwZJTj1i8taug1zDC66Csq8,3486
292
- vellum_ai-0.3.6.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
293
- vellum_ai-0.3.6.dist-info/RECORD,,
301
+ vellum_ai-0.3.8.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
302
+ vellum_ai-0.3.8.dist-info/METADATA,sha256=YmyQSboMgCfikBj1x8D0uy8hqkElX6GreNklIhqWLQA,3486
303
+ vellum_ai-0.3.8.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
304
+ vellum_ai-0.3.8.dist-info/RECORD,,