vellum-ai 0.8.27__py3-none-any.whl → 0.8.28__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.
- vellum/__init__.py +2 -2
- vellum/core/client_wrapper.py +1 -1
- vellum/types/__init__.py +2 -2
- vellum/types/code_execution_node_array_result.py +4 -4
- vellum/types/code_execution_node_result.py +2 -2
- vellum/types/code_execution_node_result_data.py +2 -2
- vellum/types/fulfilled_workflow_node_result_event.py +0 -2
- vellum/types/initiated_workflow_node_result_event.py +2 -2
- vellum/types/node_input_compiled_array_value.py +4 -4
- vellum/types/{node_input_compiled_function_call.py → node_input_compiled_function_call_value.py} +1 -1
- vellum/types/node_input_variable_compiled_value.py +2 -2
- vellum/types/rejected_workflow_node_result_event.py +2 -2
- vellum/types/streaming_workflow_node_result_event.py +0 -2
- vellum/types/templating_node_array_result.py +4 -4
- vellum/types/templating_node_result.py +2 -2
- vellum/types/templating_node_result_data.py +2 -2
- vellum/types/terminal_node_array_result.py +4 -4
- vellum/types/terminal_node_result.py +2 -2
- vellum/types/terminal_node_result_data.py +2 -2
- vellum/types/terminal_node_result_output.py +2 -2
- vellum/types/workflow_execution_node_result_event.py +0 -2
- {vellum_ai-0.8.27.dist-info → vellum_ai-0.8.28.dist-info}/METADATA +1 -1
- {vellum_ai-0.8.27.dist-info → vellum_ai-0.8.28.dist-info}/RECORD +25 -25
- {vellum_ai-0.8.27.dist-info → vellum_ai-0.8.28.dist-info}/LICENSE +0 -0
- {vellum_ai-0.8.27.dist-info → vellum_ai-0.8.28.dist-info}/WHEEL +0 -0
vellum/__init__.py
CHANGED
@@ -206,7 +206,7 @@ from .types import (
|
|
206
206
|
NodeInputCompiledArrayValue,
|
207
207
|
NodeInputCompiledChatHistoryValue,
|
208
208
|
NodeInputCompiledErrorValue,
|
209
|
-
|
209
|
+
NodeInputCompiledFunctionCallValue,
|
210
210
|
NodeInputCompiledJsonValue,
|
211
211
|
NodeInputCompiledNumberValue,
|
212
212
|
NodeInputCompiledSearchResultsValue,
|
@@ -707,7 +707,7 @@ __all__ = [
|
|
707
707
|
"NodeInputCompiledArrayValue",
|
708
708
|
"NodeInputCompiledChatHistoryValue",
|
709
709
|
"NodeInputCompiledErrorValue",
|
710
|
-
"
|
710
|
+
"NodeInputCompiledFunctionCallValue",
|
711
711
|
"NodeInputCompiledJsonValue",
|
712
712
|
"NodeInputCompiledNumberValue",
|
713
713
|
"NodeInputCompiledSearchResultsValue",
|
vellum/core/client_wrapper.py
CHANGED
@@ -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": "
|
20
|
+
"X-Fern-SDK-Version": "v0.8.28",
|
21
21
|
}
|
22
22
|
headers["X_API_KEY"] = self.api_key
|
23
23
|
return headers
|
vellum/types/__init__.py
CHANGED
@@ -217,7 +217,7 @@ from .named_test_case_variable_value_request import NamedTestCaseVariableValueRe
|
|
217
217
|
from .node_input_compiled_array_value import NodeInputCompiledArrayValue
|
218
218
|
from .node_input_compiled_chat_history_value import NodeInputCompiledChatHistoryValue
|
219
219
|
from .node_input_compiled_error_value import NodeInputCompiledErrorValue
|
220
|
-
from .
|
220
|
+
from .node_input_compiled_function_call_value import NodeInputCompiledFunctionCallValue
|
221
221
|
from .node_input_compiled_json_value import NodeInputCompiledJsonValue
|
222
222
|
from .node_input_compiled_number_value import NodeInputCompiledNumberValue
|
223
223
|
from .node_input_compiled_search_results_value import NodeInputCompiledSearchResultsValue
|
@@ -691,7 +691,7 @@ __all__ = [
|
|
691
691
|
"NodeInputCompiledArrayValue",
|
692
692
|
"NodeInputCompiledChatHistoryValue",
|
693
693
|
"NodeInputCompiledErrorValue",
|
694
|
-
"
|
694
|
+
"NodeInputCompiledFunctionCallValue",
|
695
695
|
"NodeInputCompiledJsonValue",
|
696
696
|
"NodeInputCompiledNumberValue",
|
697
697
|
"NodeInputCompiledSearchResultsValue",
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
|
-
from .
|
7
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
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[
|
16
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = 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
|
@@ -25,4 +25,4 @@ class CodeExecutionNodeArrayResult(UniversalBaseModel):
|
|
25
25
|
extra = pydantic.Extra.allow
|
26
26
|
|
27
27
|
|
28
|
-
update_forward_refs(
|
28
|
+
update_forward_refs(ArrayVellumValue, CodeExecutionNodeArrayResult=CodeExecutionNodeArrayResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
from .code_execution_node_result_data import CodeExecutionNodeResultData
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -28,4 +28,4 @@ class CodeExecutionNodeResult(UniversalBaseModel):
|
|
28
28
|
extra = pydantic.Extra.allow
|
29
29
|
|
30
30
|
|
31
|
-
update_forward_refs(
|
31
|
+
update_forward_refs(ArrayVellumValue, CodeExecutionNodeResult=CodeExecutionNodeResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
from .code_execution_node_result_output import CodeExecutionNodeResultOutput
|
7
7
|
import typing
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -24,4 +24,4 @@ class CodeExecutionNodeResultData(UniversalBaseModel):
|
|
24
24
|
extra = pydantic.Extra.allow
|
25
25
|
|
26
26
|
|
27
|
-
update_forward_refs(
|
27
|
+
update_forward_refs(ArrayVellumValue, CodeExecutionNodeResultData=CodeExecutionNodeResultData)
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .array_variable_value import ArrayVariableValue
|
6
5
|
from .array_vellum_value import ArrayVellumValue
|
7
6
|
import typing
|
8
7
|
import datetime as dt
|
@@ -38,5 +37,4 @@ class FulfilledWorkflowNodeResultEvent(UniversalBaseModel):
|
|
38
37
|
extra = pydantic.Extra.allow
|
39
38
|
|
40
39
|
|
41
|
-
update_forward_refs(ArrayVariableValue, FulfilledWorkflowNodeResultEvent=FulfilledWorkflowNodeResultEvent)
|
42
40
|
update_forward_refs(ArrayVellumValue, FulfilledWorkflowNodeResultEvent=FulfilledWorkflowNodeResultEvent)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
import datetime as dt
|
8
8
|
from .workflow_node_result_data import WorkflowNodeResultData
|
@@ -36,4 +36,4 @@ class InitiatedWorkflowNodeResultEvent(UniversalBaseModel):
|
|
36
36
|
extra = pydantic.Extra.allow
|
37
37
|
|
38
38
|
|
39
|
-
update_forward_refs(
|
39
|
+
update_forward_refs(ArrayVellumValue, InitiatedWorkflowNodeResultEvent=InitiatedWorkflowNodeResultEvent)
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
|
-
from .
|
7
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
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[
|
17
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = 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,4 +26,4 @@ class NodeInputCompiledArrayValue(UniversalBaseModel):
|
|
26
26
|
extra = pydantic.Extra.allow
|
27
27
|
|
28
28
|
|
29
|
-
update_forward_refs(
|
29
|
+
update_forward_refs(ArrayVellumValue, NodeInputCompiledArrayValue=NodeInputCompiledArrayValue)
|
vellum/types/{node_input_compiled_function_call.py → node_input_compiled_function_call_value.py}
RENAMED
@@ -7,7 +7,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
import pydantic
|
8
8
|
|
9
9
|
|
10
|
-
class
|
10
|
+
class NodeInputCompiledFunctionCallValue(UniversalBaseModel):
|
11
11
|
node_input_id: str
|
12
12
|
key: str
|
13
13
|
type: typing.Literal["FUNCTION_CALL"] = "FUNCTION_CALL"
|
@@ -8,7 +8,7 @@ from .node_input_compiled_chat_history_value import NodeInputCompiledChatHistory
|
|
8
8
|
from .node_input_compiled_search_results_value import NodeInputCompiledSearchResultsValue
|
9
9
|
from .node_input_compiled_error_value import NodeInputCompiledErrorValue
|
10
10
|
from .node_input_compiled_array_value import NodeInputCompiledArrayValue
|
11
|
-
from .
|
11
|
+
from .node_input_compiled_function_call_value import NodeInputCompiledFunctionCallValue
|
12
12
|
|
13
13
|
NodeInputVariableCompiledValue = typing.Union[
|
14
14
|
NodeInputCompiledStringValue,
|
@@ -18,5 +18,5 @@ NodeInputVariableCompiledValue = typing.Union[
|
|
18
18
|
NodeInputCompiledSearchResultsValue,
|
19
19
|
NodeInputCompiledErrorValue,
|
20
20
|
NodeInputCompiledArrayValue,
|
21
|
-
|
21
|
+
NodeInputCompiledFunctionCallValue,
|
22
22
|
]
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
import datetime as dt
|
8
8
|
from .workflow_node_result_data import WorkflowNodeResultData
|
@@ -36,4 +36,4 @@ class RejectedWorkflowNodeResultEvent(UniversalBaseModel):
|
|
36
36
|
extra = pydantic.Extra.allow
|
37
37
|
|
38
38
|
|
39
|
-
update_forward_refs(
|
39
|
+
update_forward_refs(ArrayVellumValue, RejectedWorkflowNodeResultEvent=RejectedWorkflowNodeResultEvent)
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .array_variable_value import ArrayVariableValue
|
6
5
|
from .array_vellum_value import ArrayVellumValue
|
7
6
|
import typing
|
8
7
|
import datetime as dt
|
@@ -38,5 +37,4 @@ class StreamingWorkflowNodeResultEvent(UniversalBaseModel):
|
|
38
37
|
extra = pydantic.Extra.allow
|
39
38
|
|
40
39
|
|
41
|
-
update_forward_refs(ArrayVariableValue, StreamingWorkflowNodeResultEvent=StreamingWorkflowNodeResultEvent)
|
42
40
|
update_forward_refs(ArrayVellumValue, StreamingWorkflowNodeResultEvent=StreamingWorkflowNodeResultEvent)
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
|
-
from .
|
7
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
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[
|
16
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = 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
|
@@ -25,4 +25,4 @@ class TemplatingNodeArrayResult(UniversalBaseModel):
|
|
25
25
|
extra = pydantic.Extra.allow
|
26
26
|
|
27
27
|
|
28
|
-
update_forward_refs(
|
28
|
+
update_forward_refs(ArrayVellumValue, TemplatingNodeArrayResult=TemplatingNodeArrayResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
from .templating_node_result_data import TemplatingNodeResultData
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -28,4 +28,4 @@ class TemplatingNodeResult(UniversalBaseModel):
|
|
28
28
|
extra = pydantic.Extra.allow
|
29
29
|
|
30
30
|
|
31
|
-
update_forward_refs(
|
31
|
+
update_forward_refs(ArrayVellumValue, TemplatingNodeResult=TemplatingNodeResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
from .templating_node_result_output import TemplatingNodeResultOutput
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
8
8
|
import typing
|
@@ -23,4 +23,4 @@ class TemplatingNodeResultData(UniversalBaseModel):
|
|
23
23
|
extra = pydantic.Extra.allow
|
24
24
|
|
25
25
|
|
26
|
-
update_forward_refs(
|
26
|
+
update_forward_refs(ArrayVellumValue, TemplatingNodeResultData=TemplatingNodeResultData)
|
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
import pydantic
|
8
|
-
from .
|
8
|
+
from .array_vellum_value_item import ArrayVellumValueItem
|
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[
|
21
|
+
value: typing.Optional[typing.List[ArrayVellumValueItem]] = 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
|
@@ -30,4 +30,4 @@ class TerminalNodeArrayResult(UniversalBaseModel):
|
|
30
30
|
extra = pydantic.Extra.allow
|
31
31
|
|
32
32
|
|
33
|
-
update_forward_refs(
|
33
|
+
update_forward_refs(ArrayVellumValue, TerminalNodeArrayResult=TerminalNodeArrayResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
import typing
|
7
7
|
from .terminal_node_result_data import TerminalNodeResultData
|
8
8
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
@@ -28,4 +28,4 @@ class TerminalNodeResult(UniversalBaseModel):
|
|
28
28
|
extra = pydantic.Extra.allow
|
29
29
|
|
30
30
|
|
31
|
-
update_forward_refs(
|
31
|
+
update_forward_refs(ArrayVellumValue, TerminalNodeResult=TerminalNodeResult)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .
|
5
|
+
from .array_vellum_value import ArrayVellumValue
|
6
6
|
from .terminal_node_result_output import TerminalNodeResultOutput
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
8
8
|
import typing
|
@@ -23,4 +23,4 @@ class TerminalNodeResultData(UniversalBaseModel):
|
|
23
23
|
extra = pydantic.Extra.allow
|
24
24
|
|
25
25
|
|
26
|
-
update_forward_refs(
|
26
|
+
update_forward_refs(ArrayVellumValue, TerminalNodeResultData=TerminalNodeResultData)
|
@@ -6,9 +6,9 @@ from .terminal_node_number_result import TerminalNodeNumberResult
|
|
6
6
|
from .terminal_node_json_result import TerminalNodeJsonResult
|
7
7
|
from .terminal_node_chat_history_result import TerminalNodeChatHistoryResult
|
8
8
|
from .terminal_node_search_results_result import TerminalNodeSearchResultsResult
|
9
|
+
from .terminal_node_error_result import TerminalNodeErrorResult
|
9
10
|
from .terminal_node_array_result import TerminalNodeArrayResult
|
10
11
|
from .terminal_node_function_call_result import TerminalNodeFunctionCallResult
|
11
|
-
from .terminal_node_error_result import TerminalNodeErrorResult
|
12
12
|
|
13
13
|
TerminalNodeResultOutput = typing.Union[
|
14
14
|
TerminalNodeStringResult,
|
@@ -16,7 +16,7 @@ TerminalNodeResultOutput = typing.Union[
|
|
16
16
|
TerminalNodeJsonResult,
|
17
17
|
TerminalNodeChatHistoryResult,
|
18
18
|
TerminalNodeSearchResultsResult,
|
19
|
+
TerminalNodeErrorResult,
|
19
20
|
TerminalNodeArrayResult,
|
20
21
|
TerminalNodeFunctionCallResult,
|
21
|
-
TerminalNodeErrorResult,
|
22
22
|
]
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from ..core.pydantic_utilities import UniversalBaseModel
|
5
|
-
from .array_variable_value import ArrayVariableValue
|
6
5
|
from .array_vellum_value import ArrayVellumValue
|
7
6
|
import typing
|
8
7
|
from .workflow_node_result_event import WorkflowNodeResultEvent
|
@@ -32,5 +31,4 @@ class WorkflowExecutionNodeResultEvent(UniversalBaseModel):
|
|
32
31
|
extra = pydantic.Extra.allow
|
33
32
|
|
34
33
|
|
35
|
-
update_forward_refs(ArrayVariableValue, WorkflowExecutionNodeResultEvent=WorkflowExecutionNodeResultEvent)
|
36
34
|
update_forward_refs(ArrayVellumValue, WorkflowExecutionNodeResultEvent=WorkflowExecutionNodeResultEvent)
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=zYlpwH3oy4YWEGkHMD8aGno4hdlSKgghpEvt3bvjM-0,33786
|
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=
|
5
|
+
vellum/core/client_wrapper.py,sha256=inyxfaovl6is19wUahN6_9s1KGa0kCwDU7CVka1R5mw,1891
|
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=
|
79
|
+
vellum/types/__init__.py,sha256=o2F5GYnijRy2aPArf1cu5jz5u7Cql76axxx7JGtZ9E8,51464
|
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
|
@@ -114,14 +114,14 @@ 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=
|
117
|
+
vellum/types/code_execution_node_array_result.py,sha256=6BTyZQTtRfkZTz9dJ8j4IKQq-OfsjRvFFBpltzqNV3g,981
|
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
|
121
121
|
vellum/types/code_execution_node_json_result.py,sha256=7FFqCR8B1fIjaRZ7Ix5fUhtAJfct_GDg7YWYAw7RUd4,656
|
122
122
|
vellum/types/code_execution_node_number_result.py,sha256=PEhYlKvzPuJAoFwsZ2MTgFIswxhyjxc3AskDg9NBVWk,657
|
123
|
-
vellum/types/code_execution_node_result.py,sha256=
|
124
|
-
vellum/types/code_execution_node_result_data.py,sha256=
|
123
|
+
vellum/types/code_execution_node_result.py,sha256=JBE6RyfWSKxXJSj9keeRsrvErtCLy3xAkM6YO6YrDyw,1033
|
124
|
+
vellum/types/code_execution_node_result_data.py,sha256=CJ73aynNfct57S0AVD1cr8Kj4Pz6oWLV-AvUAzTvKRk,961
|
125
125
|
vellum/types/code_execution_node_result_output.py,sha256=ZddnayoP01i5alC12OaoNdSgLoXr_Y4Nl343xGJvJeU,1069
|
126
126
|
vellum/types/code_execution_node_search_results_result.py,sha256=yPh94v7pgFL-4x1JPSnXXGihUi42i-OfOaNVHLN4jE8,740
|
127
127
|
vellum/types/code_execution_node_string_result.py,sha256=uH6KO57muMko4u_xISchhvP0E-VzJfhKD_rijXgisZ8,655
|
@@ -192,7 +192,7 @@ vellum/types/fulfilled_execute_prompt_event.py,sha256=E-iBwlMWvwQyRfzqPlgtX8KurE
|
|
192
192
|
vellum/types/fulfilled_execute_prompt_response.py,sha256=nKhDk2ZloCuE0uijX5XOE63_cq8PBo4UWs4hK4e3jUE,1227
|
193
193
|
vellum/types/fulfilled_execute_workflow_workflow_result_event.py,sha256=kYlTOfJd9SydVSmJ8dr8pdLh7RHOwcFv5UzBYgKlyTw,1147
|
194
194
|
vellum/types/fulfilled_prompt_execution_meta.py,sha256=sMWAMqJCh8n_NBtRSM4muiAqKne_W-NCxJVzKy9Q1Ec,934
|
195
|
-
vellum/types/fulfilled_workflow_node_result_event.py,sha256=
|
195
|
+
vellum/types/fulfilled_workflow_node_result_event.py,sha256=dYZUcyl_nFRFpBA_imaHkp9F7dLi59z2ESq4R7do9mo,1403
|
196
196
|
vellum/types/function_call.py,sha256=nXPEC3nJh8QzjCvyomfm80fyO-Aar60KBOaGfQtZ5D0,804
|
197
197
|
vellum/types/function_call_chat_message_content.py,sha256=qXbrMQeXn_CLjfDzQvv9llmae2wvpoTlUSQWdfMvf-k,831
|
198
198
|
vellum/types/function_call_chat_message_content_request.py,sha256=HVGxHs6jc4EBgW7rdJXlF8KRlugY5YHa0ujDrEQqPCo,860
|
@@ -233,7 +233,7 @@ vellum/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwF
|
|
233
233
|
vellum/types/initiated_ad_hoc_execute_prompt_event.py,sha256=B34Q2aU2vj9qpjpWXIieN839iB7t4EWCD9mmCfbkwpo,915
|
234
234
|
vellum/types/initiated_execute_prompt_event.py,sha256=tHt80ZIuKk6B85IQqSF3MQqiSSiBsSP2Aw3XuD5xk6E,893
|
235
235
|
vellum/types/initiated_prompt_execution_meta.py,sha256=pnRjcPnVRp650k0W7kfwg9f24S4vAJfQoGGdBs_aKlc,887
|
236
|
-
vellum/types/initiated_workflow_node_result_event.py,sha256=
|
236
|
+
vellum/types/initiated_workflow_node_result_event.py,sha256=Nu1J4iQYsW2HHjQFzQq-ZQAQtEmS95pPnHOZZDdPrcU,1407
|
237
237
|
vellum/types/instructor_vectorizer_config.py,sha256=7udlosXv4CUWTW_Q9m0mz3VRi1FKSbBhDIOhtxRd0-U,731
|
238
238
|
vellum/types/instructor_vectorizer_config_request.py,sha256=6LGFFQKntMfX7bdetUqEMVdr3KJHEps0oDp2bNmqWbM,738
|
239
239
|
vellum/types/iteration_state_enum.py,sha256=83JSh842OJgQiLtNn1KMimy6RlEYRVH3mDmYWS6Ewzo,180
|
@@ -279,15 +279,15 @@ vellum/types/named_test_case_string_variable_value.py,sha256=2xuTh35MarcDMMCy6px
|
|
279
279
|
vellum/types/named_test_case_string_variable_value_request.py,sha256=Bv7LEBEyDHtBPPWdzgvCA8DHG6n1jF4NVlEe6zYPJUs,733
|
280
280
|
vellum/types/named_test_case_variable_value.py,sha256=R_O3nh15km-yGxg2ZybT9wmSxElROBO84Wg_29sCC8o,1146
|
281
281
|
vellum/types/named_test_case_variable_value_request.py,sha256=P3qWYQynb1rR9ohB628krxu-EUY2fkf290g5BeGowFU,1329
|
282
|
-
vellum/types/node_input_compiled_array_value.py,sha256=
|
282
|
+
vellum/types/node_input_compiled_array_value.py,sha256=qbJyqtTaq7JuPgId2DMGQGGAzUKDr7L21rKWYKi0yQ4,1002
|
283
283
|
vellum/types/node_input_compiled_chat_history_value.py,sha256=9mCnXxmWCRSxvP_YZH1RvHRnKGGfSX-kJWRZcINr5p4,754
|
284
284
|
vellum/types/node_input_compiled_error_value.py,sha256=49N9jmGU-QReYNmtf0qXILnRLYa6kXwoix_ZdJPzs2I,721
|
285
|
-
vellum/types/
|
285
|
+
vellum/types/node_input_compiled_function_call_value.py,sha256=Q9vrORvrPDvHrBBYNA2YALHQd7WlGMytEBtoQdJelvk,747
|
286
286
|
vellum/types/node_input_compiled_json_value.py,sha256=ketb8FNY9DQjAxgJd4SPDE6ErHJYY0NEkW0-STapBkw,679
|
287
287
|
vellum/types/node_input_compiled_number_value.py,sha256=Olc4UpYsm-v7ZhlTVXsp7JVQE0ytLsBSd9HolCYWmZ4,680
|
288
288
|
vellum/types/node_input_compiled_search_results_value.py,sha256=A2SnHYZAt2_VsQDXL4B2CF3KYgDJeUAQ5L0RbI8flH0,763
|
289
289
|
vellum/types/node_input_compiled_string_value.py,sha256=V4HKhHW6B2iUvYqYbuwcOHTxiui3nfOe0DKOiTXshJQ,678
|
290
|
-
vellum/types/node_input_variable_compiled_value.py,sha256=
|
290
|
+
vellum/types/node_input_variable_compiled_value.py,sha256=ahG5KdRDQ97w3Ljhfz9EssY0FD1DKeE4C5y393QOS78,1046
|
291
291
|
vellum/types/node_output_compiled_array_value.py,sha256=j2JB6jLk6aRyJTfH8Eagz24VNk6jkPX7PZ4QB7FsrsM,1205
|
292
292
|
vellum/types/node_output_compiled_chat_history_value.py,sha256=rAAnJ2PcXGxKusMpq2NEhJdBSRrPB9da5uN19x92Wu4,962
|
293
293
|
vellum/types/node_output_compiled_error_value.py,sha256=dkgT_h463S8AF3QHVZdvy9HGF3A2LhxuNnAQouAYQlE,922
|
@@ -349,7 +349,7 @@ vellum/types/rejected_execute_prompt_event.py,sha256=Jt8lXmZrZ7FiSWAqZMguUDeZC_X
|
|
349
349
|
vellum/types/rejected_execute_prompt_response.py,sha256=YyY9KGTbJ53DmwiXHqYkuxxDIx3w560bB3R0fzqzwQk,1185
|
350
350
|
vellum/types/rejected_execute_workflow_workflow_result_event.py,sha256=6k6GRr2TnVSM0DxS3H3hczwV7962UDG92yLh6j8OjcM,882
|
351
351
|
vellum/types/rejected_prompt_execution_meta.py,sha256=4Oidh3XBBHzgjOys2kuETxqWc_MOqS50UpB0o8YNZd8,844
|
352
|
-
vellum/types/rejected_workflow_node_result_event.py,sha256=
|
352
|
+
vellum/types/rejected_workflow_node_result_event.py,sha256=o9AUc9hT60F8ckMkCx8HtKxtj4y82LBoJduB9u8w0TM,1319
|
353
353
|
vellum/types/release_tag_source.py,sha256=YavosOXZ976yfXTNWRTZwh2HhRiYmSDk0bQCkl-jCoQ,158
|
354
354
|
vellum/types/replace_test_suite_test_case_request.py,sha256=c1GT1RUCei1yWxyZy4Gv40PkXYisvK5OkzlqQ6WeBYA,1906
|
355
355
|
vellum/types/rich_text_child_block_request.py,sha256=Uggxf_xIIIu8x1LlR8uJdmr6_drFL0izWhVr6b5TxqQ,321
|
@@ -387,7 +387,7 @@ vellum/types/slim_workflow_deployment.py,sha256=FW7qXPtSIP9QAzECbl8gKL1iFqKWTAfI
|
|
387
387
|
vellum/types/streaming_ad_hoc_execute_prompt_event.py,sha256=NdgmJ3AZMp6io-whZIGnGb49aiqz6__KafsrzjEF_9o,1183
|
388
388
|
vellum/types/streaming_execute_prompt_event.py,sha256=bjfY5ZU8ZI048a7x1VW8dDXMtSl-3Ej5koSpfKboJj0,1161
|
389
389
|
vellum/types/streaming_prompt_execution_meta.py,sha256=vFLNQAVbbuvQamO9NeKDDTLQDe2n7YVLqxbhOaf6Ytc,736
|
390
|
-
vellum/types/streaming_workflow_node_result_event.py,sha256=
|
390
|
+
vellum/types/streaming_workflow_node_result_event.py,sha256=AEPuKp9rtq1EodBxXVADdwTfe7EAioM2Vuxk2Ipt1ZQ,1413
|
391
391
|
vellum/types/string_chat_message_content.py,sha256=6ZVl5cofQXFV2RlEJvVdWWYa9WVe172DPOZ-Uk82lDM,682
|
392
392
|
vellum/types/string_chat_message_content_request.py,sha256=qFB_JJvI4FgbW7bB60tyGChWDNINnHqa7hW13rlOvak,689
|
393
393
|
vellum/types/string_input_request.py,sha256=6GjNnhuK2krO_8U-id0TOqNyND2GfNpDm7OWd60DyqE,744
|
@@ -398,26 +398,26 @@ vellum/types/submit_completion_actual_request.py,sha256=hMWNAGUc54I44kDFKFSXdXTx
|
|
398
398
|
vellum/types/submit_workflow_execution_actual_request.py,sha256=xRCiA1QvQBD0lbZfBZUSZnm_XNOj17jyXXmppztQEB8,535
|
399
399
|
vellum/types/subworkflow_node_result.py,sha256=a2N7E6OSVxH1fQB24j96a6qucw1DgCz7w_hChENNV9A,808
|
400
400
|
vellum/types/subworkflow_node_result_data.py,sha256=np3Wnc5pmnehtMLfJZVz3bozYJN752vf9VERs9rIuqA,600
|
401
|
-
vellum/types/templating_node_array_result.py,sha256=
|
401
|
+
vellum/types/templating_node_array_result.py,sha256=ZqEno03BYJFgUZZ2r2ThM4uSaZlw1Ew0aB5uuBgtNqs,972
|
402
402
|
vellum/types/templating_node_chat_history_result.py,sha256=RhEeDRtvWOPlLPsSuz3lAA3m8EqmdhB8sI_pwXuPgGg,728
|
403
403
|
vellum/types/templating_node_error_result.py,sha256=A9CkVXU0YUYko0epKmZlIHPwvFNfmLuM3iwduH0OhNU,695
|
404
404
|
vellum/types/templating_node_function_call_result.py,sha256=bJDLDS_N_dzf7w7wfUUaePg0N6_6amaJ8GrtDey8Kvw,721
|
405
405
|
vellum/types/templating_node_json_result.py,sha256=ShHCYLxdf4mO_XYH4GEmdNY2S1RaruGLJGYkP2Td398,653
|
406
406
|
vellum/types/templating_node_number_result.py,sha256=LLlRuHVbhNb4FHbsbClfYHJb083l20UTE-TVrmbhR1U,654
|
407
|
-
vellum/types/templating_node_result.py,sha256=
|
408
|
-
vellum/types/templating_node_result_data.py,sha256=
|
407
|
+
vellum/types/templating_node_result.py,sha256=b1f-ITDJvf8793JrK3POwjVth-GEljjlEtCsnMGDz2E,1002
|
408
|
+
vellum/types/templating_node_result_data.py,sha256=ySZesaAaCU6Zr2J2eSVK4Bu6nHnnFP9ptxoirlKwRck,895
|
409
409
|
vellum/types/templating_node_result_output.py,sha256=f94nwW79EAAjHKpL70Vc_N2DRq-FC4993g1X79V5Q7M,986
|
410
410
|
vellum/types/templating_node_search_results_result.py,sha256=LRChfWy1btVEuz8AX6x6x_s0o4uKKokc-R3O7kHGr5Q,737
|
411
411
|
vellum/types/templating_node_string_result.py,sha256=b3BOuBwqhYMJHvsfVwtYaFSeau7R4XkyJ6gG37J0x7M,652
|
412
|
-
vellum/types/terminal_node_array_result.py,sha256=
|
412
|
+
vellum/types/terminal_node_array_result.py,sha256=XaetOZXyK1bebh1FH8QYMTGMnDvd6MfP14WC908gRlk,1114
|
413
413
|
vellum/types/terminal_node_chat_history_result.py,sha256=YGywmDryELuzeLYi6p59pQoCNoPekA6bhSF0sYFAsw0,874
|
414
414
|
vellum/types/terminal_node_error_result.py,sha256=qwhunjngnumpeNoqxnVEbvFoXAyX-CXQ_MusOwOeNv0,841
|
415
415
|
vellum/types/terminal_node_function_call_result.py,sha256=-9tPhggVBQ9wvCHehZl1-L9G7oxrfDdR9aU8TFxowTo,867
|
416
416
|
vellum/types/terminal_node_json_result.py,sha256=vCTnr-xZvBxRmByAiwA8Y0MviNSZ6xQrCM3qSRRisuQ,799
|
417
417
|
vellum/types/terminal_node_number_result.py,sha256=ob2sOXeIjMl0pVdHW9niDzDclhpuAMBYCKY-ow7jXdU,800
|
418
|
-
vellum/types/terminal_node_result.py,sha256=
|
419
|
-
vellum/types/terminal_node_result_data.py,sha256=
|
420
|
-
vellum/types/terminal_node_result_output.py,sha256=
|
418
|
+
vellum/types/terminal_node_result.py,sha256=uZsVnfuVtRO08v7I-Yv6tKgXHv_5V6j8WVDlWFiSOTA,984
|
419
|
+
vellum/types/terminal_node_result_data.py,sha256=JwpRyewiBPpOmHvCIof1fqBfDX_B6O9q1aka6n7ESR4,883
|
420
|
+
vellum/types/terminal_node_result_output.py,sha256=f3sAqpRpw9_TfPfW4312I0nwfrRLfaDny-ETFuIieao,936
|
421
421
|
vellum/types/terminal_node_search_results_result.py,sha256=rX_ftp_C7hez_xjPRZm8yJuwMFoM6jsTDfPAseYmzFc,883
|
422
422
|
vellum/types/terminal_node_string_result.py,sha256=CW_nl-fI4YwhCm3YEO_cQW9mjG6rNZo5L-Ic4v1iAMo,798
|
423
423
|
vellum/types/test_case_array_variable_value.py,sha256=MvfEGItX9iJ4xmfsOyDb_wdPxBKK_AC3vu20I_xhLPc,1065
|
@@ -508,7 +508,7 @@ vellum/types/workflow_execution_actual_json_request.py,sha256=5QYaPCSOwFnjH_kTrB
|
|
508
508
|
vellum/types/workflow_execution_actual_string_request.py,sha256=1optEDv090iVev1l0Z9cgZ1NfNrHp2VRiNjmS7f7jtc,1895
|
509
509
|
vellum/types/workflow_execution_event_error_code.py,sha256=Vf-MTOx0KclZp35aajWDHSdtwGgg0LWvM5yVQfnXYc4,425
|
510
510
|
vellum/types/workflow_execution_event_type.py,sha256=ESKqV3ItoAlqBooruf-i0AnmEh_GvCySZ0Co3r9Bvt0,170
|
511
|
-
vellum/types/workflow_execution_node_result_event.py,sha256=
|
511
|
+
vellum/types/workflow_execution_node_result_event.py,sha256=wJNwOPwqOl1fBim9Y1rtHiNMoWBZ2xausdSddQI5Mg8,1136
|
512
512
|
vellum/types/workflow_execution_workflow_result_event.py,sha256=9Y8ycC8DfarOHiA8CWKt117QJsWStCuHaSgS5qW9ZIY,1315
|
513
513
|
vellum/types/workflow_expand_meta_request.py,sha256=XOqufKO7gHAumATiJGgxzOYWvGx_iZsf3A49JKs4LJ8,771
|
514
514
|
vellum/types/workflow_node_result_data.py,sha256=fRzWA8CdNCNxk1FuARCJz1rg9LqAwKx-RZYcx5W32Hs,951
|
@@ -546,7 +546,7 @@ vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb
|
|
546
546
|
vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
|
547
547
|
vellum/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
|
548
548
|
vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
|
549
|
-
vellum_ai-0.8.
|
550
|
-
vellum_ai-0.8.
|
551
|
-
vellum_ai-0.8.
|
552
|
-
vellum_ai-0.8.
|
549
|
+
vellum_ai-0.8.28.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
550
|
+
vellum_ai-0.8.28.dist-info/METADATA,sha256=bIELfoZgsA4VpAorddt-_J3pS2_wZFZMe_3HjSWWCJg,4395
|
551
|
+
vellum_ai-0.8.28.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
552
|
+
vellum_ai-0.8.28.dist-info/RECORD,,
|
File without changes
|
File without changes
|