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

Sign up to get free protection for your applications and to get access to all the features.
vellum/__init__.py CHANGED
@@ -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,
@@ -59,6 +61,7 @@ from .types import (
59
61
  ConditionCombinator,
60
62
  ConditionalNodeResult,
61
63
  ConditionalNodeResultData,
64
+ ContainerImageRead,
62
65
  CreateTestSuiteTestCaseRequest,
63
66
  DeploymentProviderPayloadResponse,
64
67
  DeploymentProviderPayloadResponsePayload,
@@ -75,6 +78,7 @@ from .types import (
75
78
  DocumentStatus,
76
79
  EnrichedNormalizedCompletion,
77
80
  EntityStatus,
81
+ EntityVisibility,
78
82
  EnvironmentEnum,
79
83
  EphemeralPromptCacheConfigRequest,
80
84
  EphemeralPromptCacheConfigTypeEnum,
@@ -234,6 +238,7 @@ from .types import (
234
238
  OpenAiVectorizerTextEmbedding3SmallRequest,
235
239
  OpenAiVectorizerTextEmbeddingAda002,
236
240
  OpenAiVectorizerTextEmbeddingAda002Request,
241
+ PaginatedContainerImageReadList,
237
242
  PaginatedDocumentIndexReadList,
238
243
  PaginatedFolderEntityList,
239
244
  PaginatedSlimDeploymentReadList,
@@ -409,6 +414,8 @@ from .types import (
409
414
  UploadDocumentResponse,
410
415
  UpsertTestSuiteTestCaseRequest,
411
416
  VariablePromptBlockRequest,
417
+ VellumAudio,
418
+ VellumAudioRequest,
412
419
  VellumError,
413
420
  VellumErrorCodeEnum,
414
421
  VellumErrorRequest,
@@ -476,6 +483,7 @@ from .resources import (
476
483
  FolderEntitiesListRequestEntityStatus,
477
484
  WorkflowDeploymentsListRequestStatus,
478
485
  ad_hoc,
486
+ container_images,
479
487
  deployments,
480
488
  document_indexes,
481
489
  documents,
@@ -513,6 +521,8 @@ __all__ = [
513
521
  "ArrayVellumValue",
514
522
  "ArrayVellumValueRequest",
515
523
  "AsyncVellum",
524
+ "AudioChatMessageContent",
525
+ "AudioChatMessageContentRequest",
516
526
  "BadRequestError",
517
527
  "BasicVectorizerIntfloatMultilingualE5Large",
518
528
  "BasicVectorizerIntfloatMultilingualE5LargeRequest",
@@ -554,6 +564,7 @@ __all__ = [
554
564
  "ConditionCombinator",
555
565
  "ConditionalNodeResult",
556
566
  "ConditionalNodeResultData",
567
+ "ContainerImageRead",
557
568
  "CreateTestSuiteTestCaseRequest",
558
569
  "DeploymentProviderPayloadResponse",
559
570
  "DeploymentProviderPayloadResponsePayload",
@@ -572,6 +583,7 @@ __all__ = [
572
583
  "DocumentStatus",
573
584
  "EnrichedNormalizedCompletion",
574
585
  "EntityStatus",
586
+ "EntityVisibility",
575
587
  "EnvironmentEnum",
576
588
  "EphemeralPromptCacheConfigRequest",
577
589
  "EphemeralPromptCacheConfigTypeEnum",
@@ -735,6 +747,7 @@ __all__ = [
735
747
  "OpenAiVectorizerTextEmbedding3SmallRequest",
736
748
  "OpenAiVectorizerTextEmbeddingAda002",
737
749
  "OpenAiVectorizerTextEmbeddingAda002Request",
750
+ "PaginatedContainerImageReadList",
738
751
  "PaginatedDocumentIndexReadList",
739
752
  "PaginatedFolderEntityList",
740
753
  "PaginatedSlimDeploymentReadList",
@@ -911,6 +924,8 @@ __all__ = [
911
924
  "UpsertTestSuiteTestCaseRequest",
912
925
  "VariablePromptBlockRequest",
913
926
  "Vellum",
927
+ "VellumAudio",
928
+ "VellumAudioRequest",
914
929
  "VellumEnvironment",
915
930
  "VellumError",
916
931
  "VellumErrorCodeEnum",
@@ -974,6 +989,7 @@ __all__ = [
974
989
  "WorkspaceSecretRead",
975
990
  "__version__",
976
991
  "ad_hoc",
992
+ "container_images",
977
993
  "deployments",
978
994
  "document_indexes",
979
995
  "documents",
vellum/client.py CHANGED
@@ -5,6 +5,7 @@ from .environment import VellumEnvironment
5
5
  import httpx
6
6
  from .core.client_wrapper import SyncClientWrapper
7
7
  from .resources.ad_hoc.client import AdHocClient
8
+ from .resources.container_images.client import ContainerImagesClient
8
9
  from .resources.deployments.client import DeploymentsClient
9
10
  from .resources.document_indexes.client import DocumentIndexesClient
10
11
  from .resources.documents.client import DocumentsClient
@@ -52,6 +53,7 @@ from .types.submit_completion_actual_request import SubmitCompletionActualReques
52
53
  from .types.submit_workflow_execution_actual_request import SubmitWorkflowExecutionActualRequest
53
54
  from .core.client_wrapper import AsyncClientWrapper
54
55
  from .resources.ad_hoc.client import AsyncAdHocClient
56
+ from .resources.container_images.client import AsyncContainerImagesClient
55
57
  from .resources.deployments.client import AsyncDeploymentsClient
56
58
  from .resources.document_indexes.client import AsyncDocumentIndexesClient
57
59
  from .resources.documents.client import AsyncDocumentsClient
@@ -124,6 +126,7 @@ class Vellum:
124
126
  timeout=_defaulted_timeout,
125
127
  )
126
128
  self.ad_hoc = AdHocClient(client_wrapper=self._client_wrapper)
129
+ self.container_images = ContainerImagesClient(client_wrapper=self._client_wrapper)
127
130
  self.deployments = DeploymentsClient(client_wrapper=self._client_wrapper)
128
131
  self.document_indexes = DocumentIndexesClient(client_wrapper=self._client_wrapper)
129
132
  self.documents = DocumentsClient(client_wrapper=self._client_wrapper)
@@ -1442,6 +1445,7 @@ class AsyncVellum:
1442
1445
  timeout=_defaulted_timeout,
1443
1446
  )
1444
1447
  self.ad_hoc = AsyncAdHocClient(client_wrapper=self._client_wrapper)
1448
+ self.container_images = AsyncContainerImagesClient(client_wrapper=self._client_wrapper)
1445
1449
  self.deployments = AsyncDeploymentsClient(client_wrapper=self._client_wrapper)
1446
1450
  self.document_indexes = AsyncDocumentIndexesClient(client_wrapper=self._client_wrapper)
1447
1451
  self.documents = AsyncDocumentsClient(client_wrapper=self._client_wrapper)
@@ -17,7 +17,7 @@ class BaseClientWrapper:
17
17
  headers: typing.Dict[str, str] = {
18
18
  "X-Fern-Language": "Python",
19
19
  "X-Fern-SDK-Name": "vellum-ai",
20
- "X-Fern-SDK-Version": "0.9.0",
20
+ "X-Fern-SDK-Version": "0.9.2",
21
21
  }
22
22
  headers["X_API_KEY"] = self.api_key
23
23
  return headers
@@ -2,6 +2,7 @@
2
2
 
3
3
  from . import (
4
4
  ad_hoc,
5
+ container_images,
5
6
  deployments,
6
7
  document_indexes,
7
8
  documents,
@@ -26,6 +27,7 @@ __all__ = [
26
27
  "FolderEntitiesListRequestEntityStatus",
27
28
  "WorkflowDeploymentsListRequestStatus",
28
29
  "ad_hoc",
30
+ "container_images",
29
31
  "deployments",
30
32
  "document_indexes",
31
33
  "documents",
@@ -0,0 +1,2 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
@@ -0,0 +1,405 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+ from ...core.client_wrapper import SyncClientWrapper
5
+ from ...core.request_options import RequestOptions
6
+ from ...types.paginated_container_image_read_list import PaginatedContainerImageReadList
7
+ from ...core.pydantic_utilities import parse_obj_as
8
+ from json.decoder import JSONDecodeError
9
+ from ...core.api_error import ApiError
10
+ from ...types.container_image_read import ContainerImageRead
11
+ from ...core.jsonable_encoder import jsonable_encoder
12
+ from ...core.client_wrapper import AsyncClientWrapper
13
+
14
+ # this is used as the default value for optional parameters
15
+ OMIT = typing.cast(typing.Any, ...)
16
+
17
+
18
+ class ContainerImagesClient:
19
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
20
+ self._client_wrapper = client_wrapper
21
+
22
+ def list(
23
+ self,
24
+ *,
25
+ limit: typing.Optional[int] = None,
26
+ offset: typing.Optional[int] = None,
27
+ ordering: typing.Optional[str] = None,
28
+ request_options: typing.Optional[RequestOptions] = None,
29
+ ) -> PaginatedContainerImageReadList:
30
+ """
31
+ Retrieve a list of container images for the organization.
32
+
33
+ Parameters
34
+ ----------
35
+ limit : typing.Optional[int]
36
+ Number of results to return per page.
37
+
38
+ offset : typing.Optional[int]
39
+ The initial index from which to return the results.
40
+
41
+ ordering : typing.Optional[str]
42
+ Which field to use when ordering the results.
43
+
44
+ request_options : typing.Optional[RequestOptions]
45
+ Request-specific configuration.
46
+
47
+ Returns
48
+ -------
49
+ PaginatedContainerImageReadList
50
+
51
+
52
+ Examples
53
+ --------
54
+ from vellum import Vellum
55
+
56
+ client = Vellum(
57
+ api_key="YOUR_API_KEY",
58
+ )
59
+ client.container_images.list()
60
+ """
61
+ _response = self._client_wrapper.httpx_client.request(
62
+ "v1/container-images",
63
+ base_url=self._client_wrapper.get_environment().default,
64
+ method="GET",
65
+ params={
66
+ "limit": limit,
67
+ "offset": offset,
68
+ "ordering": ordering,
69
+ },
70
+ request_options=request_options,
71
+ )
72
+ try:
73
+ if 200 <= _response.status_code < 300:
74
+ return typing.cast(
75
+ PaginatedContainerImageReadList,
76
+ parse_obj_as(
77
+ type_=PaginatedContainerImageReadList, # type: ignore
78
+ object_=_response.json(),
79
+ ),
80
+ )
81
+ _response_json = _response.json()
82
+ except JSONDecodeError:
83
+ raise ApiError(status_code=_response.status_code, body=_response.text)
84
+ raise ApiError(status_code=_response.status_code, body=_response_json)
85
+
86
+ def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> ContainerImageRead:
87
+ """
88
+ Retrieve a Container Image by its ID or name.
89
+
90
+ Parameters
91
+ ----------
92
+ id : str
93
+ Either the Container Image's ID or its unique name
94
+
95
+ request_options : typing.Optional[RequestOptions]
96
+ Request-specific configuration.
97
+
98
+ Returns
99
+ -------
100
+ ContainerImageRead
101
+
102
+
103
+ Examples
104
+ --------
105
+ from vellum import Vellum
106
+
107
+ client = Vellum(
108
+ api_key="YOUR_API_KEY",
109
+ )
110
+ client.container_images.retrieve(
111
+ id="id",
112
+ )
113
+ """
114
+ _response = self._client_wrapper.httpx_client.request(
115
+ f"v1/container-images/{jsonable_encoder(id)}",
116
+ base_url=self._client_wrapper.get_environment().default,
117
+ method="GET",
118
+ request_options=request_options,
119
+ )
120
+ try:
121
+ if 200 <= _response.status_code < 300:
122
+ return typing.cast(
123
+ ContainerImageRead,
124
+ parse_obj_as(
125
+ type_=ContainerImageRead, # type: ignore
126
+ object_=_response.json(),
127
+ ),
128
+ )
129
+ _response_json = _response.json()
130
+ except JSONDecodeError:
131
+ raise ApiError(status_code=_response.status_code, body=_response.text)
132
+ raise ApiError(status_code=_response.status_code, body=_response_json)
133
+
134
+ def push_container_image(
135
+ self,
136
+ *,
137
+ name: str,
138
+ sha: str,
139
+ tags: typing.Sequence[str],
140
+ request_options: typing.Optional[RequestOptions] = None,
141
+ ) -> ContainerImageRead:
142
+ """
143
+ An internal-only endpoint that's subject to breaking changes without notice. Not intended for public use.
144
+
145
+ Parameters
146
+ ----------
147
+ name : str
148
+
149
+ sha : str
150
+
151
+ tags : typing.Sequence[str]
152
+
153
+ request_options : typing.Optional[RequestOptions]
154
+ Request-specific configuration.
155
+
156
+ Returns
157
+ -------
158
+ ContainerImageRead
159
+
160
+
161
+ Examples
162
+ --------
163
+ from vellum import Vellum
164
+
165
+ client = Vellum(
166
+ api_key="YOUR_API_KEY",
167
+ )
168
+ client.container_images.push_container_image(
169
+ name="name",
170
+ sha="sha",
171
+ tags=["tags"],
172
+ )
173
+ """
174
+ _response = self._client_wrapper.httpx_client.request(
175
+ "v1/container-images/push",
176
+ base_url=self._client_wrapper.get_environment().default,
177
+ method="POST",
178
+ json={
179
+ "name": name,
180
+ "sha": sha,
181
+ "tags": tags,
182
+ },
183
+ request_options=request_options,
184
+ omit=OMIT,
185
+ )
186
+ try:
187
+ if 200 <= _response.status_code < 300:
188
+ return typing.cast(
189
+ ContainerImageRead,
190
+ parse_obj_as(
191
+ type_=ContainerImageRead, # type: ignore
192
+ object_=_response.json(),
193
+ ),
194
+ )
195
+ _response_json = _response.json()
196
+ except JSONDecodeError:
197
+ raise ApiError(status_code=_response.status_code, body=_response.text)
198
+ raise ApiError(status_code=_response.status_code, body=_response_json)
199
+
200
+
201
+ class AsyncContainerImagesClient:
202
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
203
+ self._client_wrapper = client_wrapper
204
+
205
+ async def list(
206
+ self,
207
+ *,
208
+ limit: typing.Optional[int] = None,
209
+ offset: typing.Optional[int] = None,
210
+ ordering: typing.Optional[str] = None,
211
+ request_options: typing.Optional[RequestOptions] = None,
212
+ ) -> PaginatedContainerImageReadList:
213
+ """
214
+ Retrieve a list of container images for the organization.
215
+
216
+ Parameters
217
+ ----------
218
+ limit : typing.Optional[int]
219
+ Number of results to return per page.
220
+
221
+ offset : typing.Optional[int]
222
+ The initial index from which to return the results.
223
+
224
+ ordering : typing.Optional[str]
225
+ Which field to use when ordering the results.
226
+
227
+ request_options : typing.Optional[RequestOptions]
228
+ Request-specific configuration.
229
+
230
+ Returns
231
+ -------
232
+ PaginatedContainerImageReadList
233
+
234
+
235
+ Examples
236
+ --------
237
+ import asyncio
238
+
239
+ from vellum import AsyncVellum
240
+
241
+ client = AsyncVellum(
242
+ api_key="YOUR_API_KEY",
243
+ )
244
+
245
+
246
+ async def main() -> None:
247
+ await client.container_images.list()
248
+
249
+
250
+ asyncio.run(main())
251
+ """
252
+ _response = await self._client_wrapper.httpx_client.request(
253
+ "v1/container-images",
254
+ base_url=self._client_wrapper.get_environment().default,
255
+ method="GET",
256
+ params={
257
+ "limit": limit,
258
+ "offset": offset,
259
+ "ordering": ordering,
260
+ },
261
+ request_options=request_options,
262
+ )
263
+ try:
264
+ if 200 <= _response.status_code < 300:
265
+ return typing.cast(
266
+ PaginatedContainerImageReadList,
267
+ parse_obj_as(
268
+ type_=PaginatedContainerImageReadList, # type: ignore
269
+ object_=_response.json(),
270
+ ),
271
+ )
272
+ _response_json = _response.json()
273
+ except JSONDecodeError:
274
+ raise ApiError(status_code=_response.status_code, body=_response.text)
275
+ raise ApiError(status_code=_response.status_code, body=_response_json)
276
+
277
+ async def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> ContainerImageRead:
278
+ """
279
+ Retrieve a Container Image by its ID or name.
280
+
281
+ Parameters
282
+ ----------
283
+ id : str
284
+ Either the Container Image's ID or its unique name
285
+
286
+ request_options : typing.Optional[RequestOptions]
287
+ Request-specific configuration.
288
+
289
+ Returns
290
+ -------
291
+ ContainerImageRead
292
+
293
+
294
+ Examples
295
+ --------
296
+ import asyncio
297
+
298
+ from vellum import AsyncVellum
299
+
300
+ client = AsyncVellum(
301
+ api_key="YOUR_API_KEY",
302
+ )
303
+
304
+
305
+ async def main() -> None:
306
+ await client.container_images.retrieve(
307
+ id="id",
308
+ )
309
+
310
+
311
+ asyncio.run(main())
312
+ """
313
+ _response = await self._client_wrapper.httpx_client.request(
314
+ f"v1/container-images/{jsonable_encoder(id)}",
315
+ base_url=self._client_wrapper.get_environment().default,
316
+ method="GET",
317
+ request_options=request_options,
318
+ )
319
+ try:
320
+ if 200 <= _response.status_code < 300:
321
+ return typing.cast(
322
+ ContainerImageRead,
323
+ parse_obj_as(
324
+ type_=ContainerImageRead, # type: ignore
325
+ object_=_response.json(),
326
+ ),
327
+ )
328
+ _response_json = _response.json()
329
+ except JSONDecodeError:
330
+ raise ApiError(status_code=_response.status_code, body=_response.text)
331
+ raise ApiError(status_code=_response.status_code, body=_response_json)
332
+
333
+ async def push_container_image(
334
+ self,
335
+ *,
336
+ name: str,
337
+ sha: str,
338
+ tags: typing.Sequence[str],
339
+ request_options: typing.Optional[RequestOptions] = None,
340
+ ) -> ContainerImageRead:
341
+ """
342
+ An internal-only endpoint that's subject to breaking changes without notice. Not intended for public use.
343
+
344
+ Parameters
345
+ ----------
346
+ name : str
347
+
348
+ sha : str
349
+
350
+ tags : typing.Sequence[str]
351
+
352
+ request_options : typing.Optional[RequestOptions]
353
+ Request-specific configuration.
354
+
355
+ Returns
356
+ -------
357
+ ContainerImageRead
358
+
359
+
360
+ Examples
361
+ --------
362
+ import asyncio
363
+
364
+ from vellum import AsyncVellum
365
+
366
+ client = AsyncVellum(
367
+ api_key="YOUR_API_KEY",
368
+ )
369
+
370
+
371
+ async def main() -> None:
372
+ await client.container_images.push_container_image(
373
+ name="name",
374
+ sha="sha",
375
+ tags=["tags"],
376
+ )
377
+
378
+
379
+ asyncio.run(main())
380
+ """
381
+ _response = await self._client_wrapper.httpx_client.request(
382
+ "v1/container-images/push",
383
+ base_url=self._client_wrapper.get_environment().default,
384
+ method="POST",
385
+ json={
386
+ "name": name,
387
+ "sha": sha,
388
+ "tags": tags,
389
+ },
390
+ request_options=request_options,
391
+ omit=OMIT,
392
+ )
393
+ try:
394
+ if 200 <= _response.status_code < 300:
395
+ return typing.cast(
396
+ ContainerImageRead,
397
+ parse_obj_as(
398
+ type_=ContainerImageRead, # type: ignore
399
+ object_=_response.json(),
400
+ ),
401
+ )
402
+ _response_json = _response.json()
403
+ except JSONDecodeError:
404
+ raise ApiError(status_code=_response.status_code, body=_response.text)
405
+ raise ApiError(status_code=_response.status_code, body=_response_json)
@@ -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 (
@@ -66,6 +68,7 @@ from .components_schemas_pdf_search_result_meta_source_request import Components
66
68
  from .condition_combinator import ConditionCombinator
67
69
  from .conditional_node_result import ConditionalNodeResult
68
70
  from .conditional_node_result_data import ConditionalNodeResultData
71
+ from .container_image_read import ContainerImageRead
69
72
  from .create_test_suite_test_case_request import CreateTestSuiteTestCaseRequest
70
73
  from .deployment_provider_payload_response import DeploymentProviderPayloadResponse
71
74
  from .deployment_provider_payload_response_payload import DeploymentProviderPayloadResponsePayload
@@ -82,6 +85,7 @@ from .document_read import DocumentRead
82
85
  from .document_status import DocumentStatus
83
86
  from .enriched_normalized_completion import EnrichedNormalizedCompletion
84
87
  from .entity_status import EntityStatus
88
+ from .entity_visibility import EntityVisibility
85
89
  from .environment_enum import EnvironmentEnum
86
90
  from .ephemeral_prompt_cache_config_request import EphemeralPromptCacheConfigRequest
87
91
  from .ephemeral_prompt_cache_config_type_enum import EphemeralPromptCacheConfigTypeEnum
@@ -245,6 +249,7 @@ from .open_ai_vectorizer_text_embedding_3_small import OpenAiVectorizerTextEmbed
245
249
  from .open_ai_vectorizer_text_embedding_3_small_request import OpenAiVectorizerTextEmbedding3SmallRequest
246
250
  from .open_ai_vectorizer_text_embedding_ada_002 import OpenAiVectorizerTextEmbeddingAda002
247
251
  from .open_ai_vectorizer_text_embedding_ada_002_request import OpenAiVectorizerTextEmbeddingAda002Request
252
+ from .paginated_container_image_read_list import PaginatedContainerImageReadList
248
253
  from .paginated_document_index_read_list import PaginatedDocumentIndexReadList
249
254
  from .paginated_folder_entity_list import PaginatedFolderEntityList
250
255
  from .paginated_slim_deployment_read_list import PaginatedSlimDeploymentReadList
@@ -424,6 +429,8 @@ from .unit_enum import UnitEnum
424
429
  from .upload_document_response import UploadDocumentResponse
425
430
  from .upsert_test_suite_test_case_request import UpsertTestSuiteTestCaseRequest
426
431
  from .variable_prompt_block_request import VariablePromptBlockRequest
432
+ from .vellum_audio import VellumAudio
433
+ from .vellum_audio_request import VellumAudioRequest
427
434
  from .vellum_error import VellumError
428
435
  from .vellum_error_code_enum import VellumErrorCodeEnum
429
436
  from .vellum_error_request import VellumErrorRequest
@@ -503,6 +510,8 @@ __all__ = [
503
510
  "ArrayVariableValueItem",
504
511
  "ArrayVellumValue",
505
512
  "ArrayVellumValueRequest",
513
+ "AudioChatMessageContent",
514
+ "AudioChatMessageContentRequest",
506
515
  "BasicVectorizerIntfloatMultilingualE5Large",
507
516
  "BasicVectorizerIntfloatMultilingualE5LargeRequest",
508
517
  "BasicVectorizerSentenceTransformersMultiQaMpnetBaseCosV1",
@@ -543,6 +552,7 @@ __all__ = [
543
552
  "ConditionCombinator",
544
553
  "ConditionalNodeResult",
545
554
  "ConditionalNodeResultData",
555
+ "ContainerImageRead",
546
556
  "CreateTestSuiteTestCaseRequest",
547
557
  "DeploymentProviderPayloadResponse",
548
558
  "DeploymentProviderPayloadResponsePayload",
@@ -559,6 +569,7 @@ __all__ = [
559
569
  "DocumentStatus",
560
570
  "EnrichedNormalizedCompletion",
561
571
  "EntityStatus",
572
+ "EntityVisibility",
562
573
  "EnvironmentEnum",
563
574
  "EphemeralPromptCacheConfigRequest",
564
575
  "EphemeralPromptCacheConfigTypeEnum",
@@ -718,6 +729,7 @@ __all__ = [
718
729
  "OpenAiVectorizerTextEmbedding3SmallRequest",
719
730
  "OpenAiVectorizerTextEmbeddingAda002",
720
731
  "OpenAiVectorizerTextEmbeddingAda002Request",
732
+ "PaginatedContainerImageReadList",
721
733
  "PaginatedDocumentIndexReadList",
722
734
  "PaginatedFolderEntityList",
723
735
  "PaginatedSlimDeploymentReadList",
@@ -893,6 +905,8 @@ __all__ = [
893
905
  "UploadDocumentResponse",
894
906
  "UpsertTestSuiteTestCaseRequest",
895
907
  "VariablePromptBlockRequest",
908
+ "VellumAudio",
909
+ "VellumAudioRequest",
896
910
  "VellumError",
897
911
  "VellumErrorCodeEnum",
898
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, FunctionCallChatMessageContentRequest, ImageChatMessageContentRequest
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, FunctionCallChatMessageContent, ArrayChatMessageContent, ImageChatMessageContent
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,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]
@@ -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
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 0.9.0
3
+ Version: 0.9.2
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -1,8 +1,8 @@
1
- vellum/__init__.py,sha256=s0G61XarqooYamISE7pvtHeSZ6k6HepO7CWq171pPtQ,33738
2
- vellum/client.py,sha256=oyKQasaHZqssc_CiZdvIcrGePxzg9k7GfB7_ik1jsH0,114871
1
+ vellum/__init__.py,sha256=DLO3lFK8O_dYKoxb8rvavpQM33DWDyiUZ7vtj14w41I,34176
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=vbLh5ABAr1D54q4vF3AznyexsEQvCLL1FLr3MtNmQOk,1889
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
@@ -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
@@ -62,7 +64,7 @@ vellum/resources/workflow_deployments/types/workflow_deployments_list_request_st
62
64
  vellum/resources/workflow_sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
63
65
  vellum/resources/workflow_sandboxes/client.py,sha256=3wVQxkjrJ5bIS8fB5FpKXCP2dX38299ghWrJ8YmXxwQ,7435
64
66
  vellum/resources/workflows/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
65
- vellum/resources/workflows/client.py,sha256=ZOUOWKdQRv7tFks5c8gwU6JMSLeskYu7Om9gk8t1oCM,4639
67
+ vellum/resources/workflows/client.py,sha256=y8rjg69GUUiOxpenS8j4S_H7Rhpsn_A-1XV9zw9YTMM,4979
66
68
  vellum/resources/workspace_secrets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
67
69
  vellum/resources/workspace_secrets/client.py,sha256=h7UzXLyTttPq1t-JZGMg1BWxypxJvBGUdqg7KGT7MK4,8027
68
70
  vellum/terraform/__init__.py,sha256=CxzT0rkV9cXwAtxZ3gv46DCRt9vBl_Sx1SOj5MJtl0Y,498
@@ -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=xHyYHqe3WJAppo834MHYRb0xV0bhsZWCIwlCCdVw80E,51387
81
+ vellum/types/__init__.py,sha256=u_3CDRrgpYIHwabMsDv4M_zYjO0gE3hCLGBYt1lc3CM,52006
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
@@ -87,14 +89,16 @@ vellum/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJ
87
89
  vellum/types/api_node_result.py,sha256=3zAbNGNYY6EgJDzqmcIvLqq8wU-WoMEwGT1W1fjto6U,729
88
90
  vellum/types/api_node_result_data.py,sha256=qb0hMdyZvWnlqjfmzSf_AWyUYbBhwkXGoRXNtduSG0U,909
89
91
  vellum/types/array_chat_message_content.py,sha256=353TDzStNXA2dQETvnJrazCr33nlFx7hgvvPV526ECg,780
90
- vellum/types/array_chat_message_content_item.py,sha256=XyWDIqVeWoqLzUIvZO_qj_-iwCr6SBcvQJoVxKAjmDs,421
91
- vellum/types/array_chat_message_content_item_request.py,sha256=AUFfh6CQfrD4MdwpS3KhGpalaYpEj_hAlF_lePDDdbU,494
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
92
94
  vellum/types/array_chat_message_content_request.py,sha256=vpPV0KmM_uui7vFHY6f6kE1yj7iOwqOjxEuGhh1ZxFM,809
93
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
98
  vellum/types/array_vellum_value.py,sha256=6ZDizIzijUFX29JD4lnNv1mOH-venLD_c_sIiONWzqE,915
97
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
98
102
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large.py,sha256=YaPY5r4YGfMrcnmIKZgZhjNrVOINZfSo_c7xtNA9MY0,827
99
103
  vellum/types/basic_vectorizer_intfloat_multilingual_e_5_large_request.py,sha256=HuuCD5Z_mUoMkkGoCnvQ4vkI8xt3zjO4x5mD6dheQ1I,834
100
104
  vellum/types/basic_vectorizer_sentence_transformers_multi_qa_mpnet_base_cos_v_1.py,sha256=2svbTOM633pvslH9fw4F4M4LcWby_5r8-ukihTFuDuY,911
@@ -106,8 +110,8 @@ vellum/types/chat_history_variable_value.py,sha256=pHMZQSnkfbAfVZaeiZaPVMDt1xdlV
106
110
  vellum/types/chat_history_vellum_value.py,sha256=_yg6qk2Jci_rjFPOd3KNkXY0AduoEX1Tk8oPzQVpBYw,763
107
111
  vellum/types/chat_history_vellum_value_request.py,sha256=HzAiysncG5unJ-tlb43HhGZF8oYxN3rN7HGxG9g6Jiw,792
108
112
  vellum/types/chat_message.py,sha256=EOA8v5Ebx2KS9BtwBBGbuvSK-pn4xWYZiioHuuPWvzw,916
109
- vellum/types/chat_message_content.py,sha256=2Fd2Ek-lO3rdfAXFc1eJlwisMVQwbESAcRHFedkeF3A,501
110
- vellum/types/chat_message_content_request.py,sha256=609nXvgmv65ZohV2B4Kh3cr30Tez69BdDidBYhiREP4,609
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
111
115
  vellum/types/chat_message_prompt_block_properties_request.py,sha256=lMBVwR5hnBykjVpcptjBJLj4QhUpomtxdj-E2Th8iYw,1346
112
116
  vellum/types/chat_message_prompt_block_request.py,sha256=osPqtdZOG9NW_Iqcv0CyvkU2cHZzPeVVIWQUGvnB-Dw,1423
113
117
  vellum/types/chat_message_request.py,sha256=r2EW1pfnvNYx2fo6mBqU5HQrUzp67WXuE5G-XK281E4,945
@@ -135,6 +139,7 @@ vellum/types/components_schemas_pdf_search_result_meta_source_request.py,sha256=
135
139
  vellum/types/condition_combinator.py,sha256=NQ6-F85juf21jsRuZRA6PjIFv7ITVWG5myuuZdLxeQI,156
136
140
  vellum/types/conditional_node_result.py,sha256=vx8xo9F1KoJqOnYPtSevfOcBxKYAk8J8JGWFr1c4UO8,784
137
141
  vellum/types/conditional_node_result_data.py,sha256=yk4E7KHSzmKlweI9ce9eN_iW08V70KGmG1Z0K5455T0,604
142
+ vellum/types/container_image_read.py,sha256=4i2dZkGrmWapW884F5ESVOLWElT5Y_478oB5NbDjAi0,787
138
143
  vellum/types/create_test_suite_test_case_request.py,sha256=SYUz7_aZMQlin_c1C0-B0W14YB0kC3cn21oPE4_64Ys,1711
139
144
  vellum/types/deployment_provider_payload_response.py,sha256=b0lkt0rK88ARQaMWn9MAHeWtMBsZKofDMlOAUsQvv7g,818
140
145
  vellum/types/deployment_provider_payload_response_payload.py,sha256=xHLQnWFN0AZRZdrOiKawwpoKK7BTmnZfp0P7FCc2ZqE,188
@@ -151,6 +156,7 @@ vellum/types/document_read.py,sha256=heZt7k29GVehbKTofcLjRVe1R_UjbCK5Hcbgga3OODY
151
156
  vellum/types/document_status.py,sha256=GD_TSoFmZUBJnPl-chAmaQFzQ2_TYO3PSqi3-9QfEHE,122
152
157
  vellum/types/enriched_normalized_completion.py,sha256=_NDkKVJj70uKDtIOsQB7E-dL0mOMPwjwgCzhif0RuJI,1796
153
158
  vellum/types/entity_status.py,sha256=bY0jEpISwXqFnbWd3PSb3yXEr-ounPXlAO_fyvHV7l8,158
159
+ vellum/types/entity_visibility.py,sha256=BX1KdYd7dirpv878XDDvtOHkMOqebM8-lkWmLyFLaw4,184
154
160
  vellum/types/environment_enum.py,sha256=Wcewxp1cpGAMDIAZbTp4Y0GGfvy2Bq_Qu_67f_wBDGA,179
155
161
  vellum/types/ephemeral_prompt_cache_config_request.py,sha256=cWJIUY6Y4StTLszPeGRlwgvSkmL9OvFT9IrcbCDcI6g,719
156
162
  vellum/types/ephemeral_prompt_cache_config_type_enum.py,sha256=houFyNbNr9r2uXTBoRTA0eZJaBDe0CFTIUbsDyWK2e4,145
@@ -310,6 +316,7 @@ vellum/types/open_ai_vectorizer_text_embedding_3_small.py,sha256=T_-P7qGjTHJiJfM
310
316
  vellum/types/open_ai_vectorizer_text_embedding_3_small_request.py,sha256=-lwNeWj7ExP-JLncUp1Uyd20FxweVIDu-aEnenPB98A,841
311
317
  vellum/types/open_ai_vectorizer_text_embedding_ada_002.py,sha256=c4vNlR6lRvUjq-67M06sroDMNMG_qC4JUBqwmKEJQ2I,812
312
318
  vellum/types/open_ai_vectorizer_text_embedding_ada_002_request.py,sha256=FdpkkNBGgRwfqFjBwpfH4t2zKIM0pIYminX2iZQUzvY,841
319
+ vellum/types/paginated_container_image_read_list.py,sha256=7lwIgs1q7Z0xDYPGWPnjSNC1kU_peu79CotzaaQfRdA,801
313
320
  vellum/types/paginated_document_index_read_list.py,sha256=bO7pm3KCZi5LDO17YXgr_lUF9SRdAfMu6wOutX91ANw,797
314
321
  vellum/types/paginated_folder_entity_list.py,sha256=PElkrxMrnEjL9YGXde_r7RpNQUjzYfaLDlnwO8WFDSo,776
315
322
  vellum/types/paginated_slim_deployment_read_list.py,sha256=H8VKHr-aZP4ACwQJSs7KOrbqaj2nmMmyyvZHe7NRWRc,1048
@@ -485,6 +492,8 @@ vellum/types/unit_enum.py,sha256=BKWRVp2WfHtGK4D6TsolhNJHGHfExzrRHkFn8H8QkwQ,113
485
492
  vellum/types/upload_document_response.py,sha256=6_5Cm4yBPq5nD-rEql6GsmrAtSVVtNRczOL5YwsBVMI,649
486
493
  vellum/types/upsert_test_suite_test_case_request.py,sha256=iB38vx4mo4yNLV5XTeXMGR-PJLOQPloWQOAAi7PDpM0,2079
487
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
488
497
  vellum/types/vellum_error.py,sha256=jCKfuCkDTiyFb1-QyP2cg0wReja6wMuooKPAjNhBA0M,643
489
498
  vellum/types/vellum_error_code_enum.py,sha256=thsWeS_QSTEF_vElgJ5tA2Zn98kF1mYnDRKtIJTu4fo,271
490
499
  vellum/types/vellum_error_request.py,sha256=RacXJoIgR8MeXXWDMI76pkxLBhCRgHnbj-aIJytZtP4,650
@@ -545,7 +554,7 @@ vellum/types/workflow_result_event_output_data_string.py,sha256=tM3kgh6tEhD0dFEb
545
554
  vellum/types/workflow_stream_event.py,sha256=Wn3Yzuy9MqWAeo8tEaXDTKDEbJoA8DdYdMVq8EKuhu8,361
546
555
  vellum/types/workspace_secret_read.py,sha256=3CnHDG72IAY0KRNvc31F0xLmhnpwjQHnDYCfQJzCxI0,714
547
556
  vellum/version.py,sha256=jq-1PlAYxN9AXuaZqbYk9ak27SgE2lw9Ia5gx1b1gVI,76
548
- vellum_ai-0.9.0.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
549
- vellum_ai-0.9.0.dist-info/METADATA,sha256=8ksHDO6H_rxKkBYm3LvAySye6WOerJol1IKAdNkfUrg,4394
550
- vellum_ai-0.9.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
551
- vellum_ai-0.9.0.dist-info/RECORD,,
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,,