vellum-ai 0.9.1__py3-none-any.whl → 0.9.2__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 +8 -0
- vellum/core/client_wrapper.py +1 -1
- vellum/resources/workflows/client.py +8 -0
- vellum/types/__init__.py +8 -0
- vellum/types/array_chat_message_content_item.py +2 -1
- vellum/types/array_chat_message_content_item_request.py +5 -1
- vellum/types/audio_chat_message_content.py +25 -0
- vellum/types/audio_chat_message_content_request.py +25 -0
- vellum/types/chat_message_content.py +6 -1
- vellum/types/chat_message_content_request.py +2 -0
- vellum/types/vellum_audio.py +20 -0
- vellum/types/vellum_audio_request.py +20 -0
- {vellum_ai-0.9.1.dist-info → vellum_ai-0.9.2.dist-info}/METADATA +1 -1
- {vellum_ai-0.9.1.dist-info → vellum_ai-0.9.2.dist-info}/RECORD +16 -12
- {vellum_ai-0.9.1.dist-info → vellum_ai-0.9.2.dist-info}/LICENSE +0 -0
- {vellum_ai-0.9.1.dist-info → vellum_ai-0.9.2.dist-info}/WHEEL +0 -0
vellum/__init__.py
CHANGED
@@ -19,6 +19,8 @@ from .types import (
|
|
19
19
|
ArrayVariableValueItem,
|
20
20
|
ArrayVellumValue,
|
21
21
|
ArrayVellumValueRequest,
|
22
|
+
AudioChatMessageContent,
|
23
|
+
AudioChatMessageContentRequest,
|
22
24
|
BasicVectorizerIntfloatMultilingualE5Large,
|
23
25
|
BasicVectorizerIntfloatMultilingualE5LargeRequest,
|
24
26
|
BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1,
|
@@ -412,6 +414,8 @@ from .types import (
|
|
412
414
|
UploadDocumentResponse,
|
413
415
|
UpsertTestSuiteTestCaseRequest,
|
414
416
|
VariablePromptBlockRequest,
|
417
|
+
VellumAudio,
|
418
|
+
VellumAudioRequest,
|
415
419
|
VellumError,
|
416
420
|
VellumErrorCodeEnum,
|
417
421
|
VellumErrorRequest,
|
@@ -517,6 +521,8 @@ __all__ = [
|
|
517
521
|
"ArrayVellumValue",
|
518
522
|
"ArrayVellumValueRequest",
|
519
523
|
"AsyncVellum",
|
524
|
+
"AudioChatMessageContent",
|
525
|
+
"AudioChatMessageContentRequest",
|
520
526
|
"BadRequestError",
|
521
527
|
"BasicVectorizerIntfloatMultilingualE5Large",
|
522
528
|
"BasicVectorizerIntfloatMultilingualE5LargeRequest",
|
@@ -918,6 +924,8 @@ __all__ = [
|
|
918
924
|
"UpsertTestSuiteTestCaseRequest",
|
919
925
|
"VariablePromptBlockRequest",
|
920
926
|
"Vellum",
|
927
|
+
"VellumAudio",
|
928
|
+
"VellumAudioRequest",
|
921
929
|
"VellumEnvironment",
|
922
930
|
"VellumError",
|
923
931
|
"VellumErrorCodeEnum",
|
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": "0.9.2",
|
21
21
|
}
|
22
22
|
headers["X_API_KEY"] = self.api_key
|
23
23
|
return headers
|
@@ -23,6 +23,7 @@ class WorkflowsClient:
|
|
23
23
|
*,
|
24
24
|
exec_config: WorkflowPushExecConfig,
|
25
25
|
label: str,
|
26
|
+
workflow_sandbox_id: typing.Optional[str] = OMIT,
|
26
27
|
request_options: typing.Optional[RequestOptions] = None,
|
27
28
|
) -> WorkflowPushResponse:
|
28
29
|
"""
|
@@ -34,6 +35,8 @@ class WorkflowsClient:
|
|
34
35
|
|
35
36
|
label : str
|
36
37
|
|
38
|
+
workflow_sandbox_id : typing.Optional[str]
|
39
|
+
|
37
40
|
request_options : typing.Optional[RequestOptions]
|
38
41
|
Request-specific configuration.
|
39
42
|
|
@@ -61,6 +64,7 @@ class WorkflowsClient:
|
|
61
64
|
json={
|
62
65
|
"exec_config": exec_config,
|
63
66
|
"label": label,
|
67
|
+
"workflow_sandbox_id": workflow_sandbox_id,
|
64
68
|
},
|
65
69
|
request_options=request_options,
|
66
70
|
omit=OMIT,
|
@@ -89,6 +93,7 @@ class AsyncWorkflowsClient:
|
|
89
93
|
*,
|
90
94
|
exec_config: WorkflowPushExecConfig,
|
91
95
|
label: str,
|
96
|
+
workflow_sandbox_id: typing.Optional[str] = OMIT,
|
92
97
|
request_options: typing.Optional[RequestOptions] = None,
|
93
98
|
) -> WorkflowPushResponse:
|
94
99
|
"""
|
@@ -100,6 +105,8 @@ class AsyncWorkflowsClient:
|
|
100
105
|
|
101
106
|
label : str
|
102
107
|
|
108
|
+
workflow_sandbox_id : typing.Optional[str]
|
109
|
+
|
103
110
|
request_options : typing.Optional[RequestOptions]
|
104
111
|
Request-specific configuration.
|
105
112
|
|
@@ -135,6 +142,7 @@ class AsyncWorkflowsClient:
|
|
135
142
|
json={
|
136
143
|
"exec_config": exec_config,
|
137
144
|
"label": label,
|
145
|
+
"workflow_sandbox_id": workflow_sandbox_id,
|
138
146
|
},
|
139
147
|
request_options=request_options,
|
140
148
|
omit=OMIT,
|
vellum/types/__init__.py
CHANGED
@@ -18,6 +18,8 @@ from .array_variable_value import ArrayVariableValue
|
|
18
18
|
from .array_variable_value_item import ArrayVariableValueItem
|
19
19
|
from .array_vellum_value import ArrayVellumValue
|
20
20
|
from .array_vellum_value_request import ArrayVellumValueRequest
|
21
|
+
from .audio_chat_message_content import AudioChatMessageContent
|
22
|
+
from .audio_chat_message_content_request import AudioChatMessageContentRequest
|
21
23
|
from .basic_vectorizer_intfloat_multilingual_e_5_large import BasicVectorizerIntfloatMultilingualE5Large
|
22
24
|
from .basic_vectorizer_intfloat_multilingual_e_5_large_request import BasicVectorizerIntfloatMultilingualE5LargeRequest
|
23
25
|
from .basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1 import (
|
@@ -427,6 +429,8 @@ from .unit_enum import UnitEnum
|
|
427
429
|
from .upload_document_response import UploadDocumentResponse
|
428
430
|
from .upsert_test_suite_test_case_request import UpsertTestSuiteTestCaseRequest
|
429
431
|
from .variable_prompt_block_request import VariablePromptBlockRequest
|
432
|
+
from .vellum_audio import VellumAudio
|
433
|
+
from .vellum_audio_request import VellumAudioRequest
|
430
434
|
from .vellum_error import VellumError
|
431
435
|
from .vellum_error_code_enum import VellumErrorCodeEnum
|
432
436
|
from .vellum_error_request import VellumErrorRequest
|
@@ -506,6 +510,8 @@ __all__ = [
|
|
506
510
|
"ArrayVariableValueItem",
|
507
511
|
"ArrayVellumValue",
|
508
512
|
"ArrayVellumValueRequest",
|
513
|
+
"AudioChatMessageContent",
|
514
|
+
"AudioChatMessageContentRequest",
|
509
515
|
"BasicVectorizerIntfloatMultilingualE5Large",
|
510
516
|
"BasicVectorizerIntfloatMultilingualE5LargeRequest",
|
511
517
|
"BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1",
|
@@ -899,6 +905,8 @@ __all__ = [
|
|
899
905
|
"UploadDocumentResponse",
|
900
906
|
"UpsertTestSuiteTestCaseRequest",
|
901
907
|
"VariablePromptBlockRequest",
|
908
|
+
"VellumAudio",
|
909
|
+
"VellumAudioRequest",
|
902
910
|
"VellumError",
|
903
911
|
"VellumErrorCodeEnum",
|
904
912
|
"VellumErrorRequest",
|
@@ -4,7 +4,8 @@ import typing
|
|
4
4
|
from .string_chat_message_content import StringChatMessageContent
|
5
5
|
from .function_call_chat_message_content import FunctionCallChatMessageContent
|
6
6
|
from .image_chat_message_content import ImageChatMessageContent
|
7
|
+
from .audio_chat_message_content import AudioChatMessageContent
|
7
8
|
|
8
9
|
ArrayChatMessageContentItem = typing.Union[
|
9
|
-
StringChatMessageContent, FunctionCallChatMessageContent, ImageChatMessageContent
|
10
|
+
StringChatMessageContent, FunctionCallChatMessageContent, ImageChatMessageContent, AudioChatMessageContent
|
10
11
|
]
|
@@ -4,7 +4,11 @@ import typing
|
|
4
4
|
from .string_chat_message_content_request import StringChatMessageContentRequest
|
5
5
|
from .function_call_chat_message_content_request import FunctionCallChatMessageContentRequest
|
6
6
|
from .image_chat_message_content_request import ImageChatMessageContentRequest
|
7
|
+
from .audio_chat_message_content_request import AudioChatMessageContentRequest
|
7
8
|
|
8
9
|
ArrayChatMessageContentItemRequest = typing.Union[
|
9
|
-
StringChatMessageContentRequest,
|
10
|
+
StringChatMessageContentRequest,
|
11
|
+
FunctionCallChatMessageContentRequest,
|
12
|
+
ImageChatMessageContentRequest,
|
13
|
+
AudioChatMessageContentRequest,
|
10
14
|
]
|
@@ -0,0 +1,25 @@
|
|
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 .vellum_audio import VellumAudio
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
7
|
+
import pydantic
|
8
|
+
|
9
|
+
|
10
|
+
class AudioChatMessageContent(UniversalBaseModel):
|
11
|
+
"""
|
12
|
+
An audio value that is used in a chat message.
|
13
|
+
"""
|
14
|
+
|
15
|
+
type: typing.Literal["AUDIO"] = "AUDIO"
|
16
|
+
value: VellumAudio
|
17
|
+
|
18
|
+
if IS_PYDANTIC_V2:
|
19
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
20
|
+
else:
|
21
|
+
|
22
|
+
class Config:
|
23
|
+
frozen = True
|
24
|
+
smart_union = True
|
25
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,25 @@
|
|
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 .vellum_audio_request import VellumAudioRequest
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
7
|
+
import pydantic
|
8
|
+
|
9
|
+
|
10
|
+
class AudioChatMessageContentRequest(UniversalBaseModel):
|
11
|
+
"""
|
12
|
+
An audio value that is used in a chat message.
|
13
|
+
"""
|
14
|
+
|
15
|
+
type: typing.Literal["AUDIO"] = "AUDIO"
|
16
|
+
value: VellumAudioRequest
|
17
|
+
|
18
|
+
if IS_PYDANTIC_V2:
|
19
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
20
|
+
else:
|
21
|
+
|
22
|
+
class Config:
|
23
|
+
frozen = True
|
24
|
+
smart_union = True
|
25
|
+
extra = pydantic.Extra.allow
|
@@ -5,7 +5,12 @@ from .string_chat_message_content import StringChatMessageContent
|
|
5
5
|
from .function_call_chat_message_content import FunctionCallChatMessageContent
|
6
6
|
from .array_chat_message_content import ArrayChatMessageContent
|
7
7
|
from .image_chat_message_content import ImageChatMessageContent
|
8
|
+
from .audio_chat_message_content import AudioChatMessageContent
|
8
9
|
|
9
10
|
ChatMessageContent = typing.Union[
|
10
|
-
StringChatMessageContent,
|
11
|
+
StringChatMessageContent,
|
12
|
+
FunctionCallChatMessageContent,
|
13
|
+
ArrayChatMessageContent,
|
14
|
+
ImageChatMessageContent,
|
15
|
+
AudioChatMessageContent,
|
11
16
|
]
|
@@ -5,10 +5,12 @@ from .string_chat_message_content_request import StringChatMessageContentRequest
|
|
5
5
|
from .function_call_chat_message_content_request import FunctionCallChatMessageContentRequest
|
6
6
|
from .array_chat_message_content_request import ArrayChatMessageContentRequest
|
7
7
|
from .image_chat_message_content_request import ImageChatMessageContentRequest
|
8
|
+
from .audio_chat_message_content_request import AudioChatMessageContentRequest
|
8
9
|
|
9
10
|
ChatMessageContentRequest = typing.Union[
|
10
11
|
StringChatMessageContentRequest,
|
11
12
|
FunctionCallChatMessageContentRequest,
|
12
13
|
ArrayChatMessageContentRequest,
|
13
14
|
ImageChatMessageContentRequest,
|
15
|
+
AudioChatMessageContentRequest,
|
14
16
|
]
|
@@ -0,0 +1,20 @@
|
|
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 ..core.pydantic_utilities import IS_PYDANTIC_V2
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class VellumAudio(UniversalBaseModel):
|
10
|
+
src: str
|
11
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
|
12
|
+
|
13
|
+
if IS_PYDANTIC_V2:
|
14
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
15
|
+
else:
|
16
|
+
|
17
|
+
class Config:
|
18
|
+
frozen = True
|
19
|
+
smart_union = True
|
20
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,20 @@
|
|
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 ..core.pydantic_utilities import IS_PYDANTIC_V2
|
6
|
+
import pydantic
|
7
|
+
|
8
|
+
|
9
|
+
class VellumAudioRequest(UniversalBaseModel):
|
10
|
+
src: str
|
11
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
|
12
|
+
|
13
|
+
if IS_PYDANTIC_V2:
|
14
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
15
|
+
else:
|
16
|
+
|
17
|
+
class Config:
|
18
|
+
frozen = True
|
19
|
+
smart_union = True
|
20
|
+
extra = pydantic.Extra.allow
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=DLO3lFK8O_dYKoxb8rvavpQM33DWDyiUZ7vtj14w41I,34176
|
2
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=
|
5
|
+
vellum/core/client_wrapper.py,sha256=U0Ysm0UaPDp8GR9MXU31QAE37RXWmykoO9ek-a5jrwo,1889
|
6
6
|
vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
vellum/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
|
8
8
|
vellum/core/http_client.py,sha256=R0pQpCppnEtxccGvXl4uJ76s7ro_65Fo_erlNNLp_AI,19228
|
@@ -64,7 +64,7 @@ vellum/resources/workflow_deployments/types/workflow_deployments_list_request_st
|
|
64
64
|
vellum/resources/workflow_sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
65
65
|
vellum/resources/workflow_sandboxes/client.py,sha256=3wVQxkjrJ5bIS8fB5FpKXCP2dX38299ghWrJ8YmXxwQ,7435
|
66
66
|
vellum/resources/workflows/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
67
|
-
vellum/resources/workflows/client.py,sha256=
|
67
|
+
vellum/resources/workflows/client.py,sha256=y8rjg69GUUiOxpenS8j4S_H7Rhpsn_A-1XV9zw9YTMM,4979
|
68
68
|
vellum/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
69
69
|
vellum/resources/workspace_secrets/client.py,sha256=h7UzXLyTttPq1t-JZGMg1BWxypxJvBGUdqg7KGT7MK4,8027
|
70
70
|
vellum/terraform/__init__.py,sha256=CxzT0rkV9cXwAtxZ3gv46DCRt9vBl_Sx1SOj5MJtl0Y,498
|
@@ -78,7 +78,7 @@ vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw
|
|
78
78
|
vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
|
79
79
|
vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
80
80
|
vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
|
81
|
-
vellum/types/__init__.py,sha256=
|
81
|
+
vellum/types/__init__.py,sha256=u_3CDRrgpYIHwabMsDv4M_zYjO0gE3hCLGBYt1lc3CM,52006
|
82
82
|
vellum/types/ad_hoc_execute_prompt_event.py,sha256=bCjujA2XsOgyF3bRZbcEqV2rOIymRgsLoIRtZpB14xg,607
|
83
83
|
vellum/types/ad_hoc_expand_meta_request.py,sha256=hS8PC3hC--OKvRKi2ZFj_RJPQ1bxo2GXno8qJq1kk28,1338
|
84
84
|
vellum/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=Bfvf1d_dkmshxRACVM5vcxbH_7AQY23RmrrnPc0ytYY,939
|
@@ -89,14 +89,16 @@ vellum/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJ
|
|
89
89
|
vellum/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
|
90
90
|
vellum/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
|
91
91
|
vellum/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
|
92
|
-
vellum/types/array_chat_message_content_item.py,sha256=
|
93
|
-
vellum/types/array_chat_message_content_item_request.py,sha256=
|
92
|
+
vellum/types/array_chat_message_content_item.py,sha256=7Um9YRe91I4F6YAOMEHoaJeplRdKwLP7a5HyLpYk_Y4,510
|
93
|
+
vellum/types/array_chat_message_content_item_request.py,sha256=sF6gvW2UqE1EDJlG8w7mmiGWYehdSyfU350r1LTpwJM,618
|
94
94
|
vellum/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
|
95
95
|
vellum/types/array_input_request.py,sha256=eOuIc8jRrE4uCGWiopQkoSA9QR3VLDogbh2hj8ZxLzw,1069
|
96
96
|
vellum/types/array_variable_value.py,sha256=_BQX5Kk1OLJaAyk3CPgsIgiLR_FI2pvbe5Ne8q9gsqY,876
|
97
97
|
vellum/types/array_variable_value_item.py,sha256=UeEoHg9zOjYi9MPez8CAeZuRQy5RSu3KEiEyF-t2Nng,963
|
98
98
|
vellum/types/array_vellum_value.py,sha256=6ZDizIzijUFX29JD4lnNv1mOH-venLD_c_sIiONWzqE,915
|
99
99
|
vellum/types/array_vellum_value_request.py,sha256=SUIfUTeJTDcsH76mb_PfQv3q0GEUkVr4Gk-dqn2Qr-I,951
|
100
|
+
vellum/types/audio_chat_message_content.py,sha256=159ELbeifFmAOvqPKaVSemHytSJ6OR0kOCtspCj4Lmc,725
|
101
|
+
vellum/types/audio_chat_message_content_request.py,sha256=0iy-fv_AYp_3FIJUNza3aqCZrnHBsYN-IwQO690qeUk,754
|
100
102
|
vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
|
101
103
|
vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
|
102
104
|
vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
|
@@ -108,8 +110,8 @@ vellum/types/chat_history_variable_value.py,sha256=pHMZQSnkfbAfVZaeiZaPVMDt1xdlV
|
|
108
110
|
vellum/types/chat_history_vellum_value.py,sha256=_yg6qk2Jci_rjFPOd3KNkXY0AduoEX1Tk8oPzQVpBYw,763
|
109
111
|
vellum/types/chat_history_vellum_value_request.py,sha256=HzAiysncG5unJ-tlb43HhGZF8oYxN3rN7HGxG9g6Jiw,792
|
110
112
|
vellum/types/chat_message.py,sha256=EOA8v5Ebx2KS9BtwBBGbuvSK-pn4xWYZiioHuuPWvzw,916
|
111
|
-
vellum/types/chat_message_content.py,sha256=
|
112
|
-
vellum/types/chat_message_content_request.py,sha256=
|
113
|
+
vellum/types/chat_message_content.py,sha256=DQLB5rG40qLRLsmKWWo-XKa4rhk9TGQs_eFTFow2zEM,607
|
114
|
+
vellum/types/chat_message_content_request.py,sha256=iFT_PmN6sUjeN1_fZXr2ePJEbSq_GZcClBvtu8SdVmQ,724
|
113
115
|
vellum/types/chat_message_prompt_block_properties_request.py,sha256=lMBVwR5hnBykjVpcptjBJLj4QhUpomtxdj-E2Th8iYw,1346
|
114
116
|
vellum/types/chat_message_prompt_block_request.py,sha256=osPqtdZOG9NW_Iqcv0CyvkU2cHZzPeVVIWQUGvnB-Dw,1423
|
115
117
|
vellum/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
|
@@ -490,6 +492,8 @@ vellum/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
|
|
490
492
|
vellum/types/upload_document_response.py,sha256=6_5Cm4yBPq5nD-rEql6GsmrAtSVVtNRczOL5YwsBVMI,649
|
491
493
|
vellum/types/upsert_test_suite_test_case_request.py,sha256=iB38vx4mo4yNLV5XTeXMGR-PJLOQPloWQOAAi7PDpM0,2079
|
492
494
|
vellum/types/variable_prompt_block_request.py,sha256=XYiA3R_jaMZ2Mq37Lbh7CfBqqj93Yv8ZMVYGheodBdY,990
|
495
|
+
vellum/types/vellum_audio.py,sha256=PiCX2QSfGIhVclKWwciTUQjbhK9vUiFyUzWVnt3x8ic,637
|
496
|
+
vellum/types/vellum_audio_request.py,sha256=CHjXt7WV8oRQ7QbcT_Ty929yGAq--mMg2bZx3UU9fvE,644
|
493
497
|
vellum/types/vellum_error.py,sha256=jCKfuCkDTiyFb1-QyP2cg0wReja6wMuooKPAjNhBA0M,643
|
494
498
|
vellum/types/vellum_error_code_enum.py,sha256=thsWeS_QSTEF_vElgJ5tA2Zn98kF1mYnDRKtIJTu4fo,271
|
495
499
|
vellum/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
|
@@ -550,7 +554,7 @@ vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb
|
|
550
554
|
vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
|
551
555
|
vellum/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
|
552
556
|
vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
|
553
|
-
vellum_ai-0.9.
|
554
|
-
vellum_ai-0.9.
|
555
|
-
vellum_ai-0.9.
|
556
|
-
vellum_ai-0.9.
|
557
|
+
vellum_ai-0.9.2.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
558
|
+
vellum_ai-0.9.2.dist-info/METADATA,sha256=FFfP07L5xYK0bVhI00nVlnXSKbShSu97EjOb7qZ82y4,4394
|
559
|
+
vellum_ai-0.9.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
560
|
+
vellum_ai-0.9.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|