vellum-ai 1.5.2__py3-none-any.whl → 1.5.4__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 CHANGED
@@ -348,6 +348,8 @@ from .client.types import (
348
348
  PdfSearchResultMetaSourceRequest,
349
349
  PlainTextPromptBlock,
350
350
  Price,
351
+ PrivateVectorizer,
352
+ PrivateVectorizerRequest,
351
353
  ProcessingFailureReasonEnum,
352
354
  PromptBlock,
353
355
  PromptBlockState,
@@ -1073,6 +1075,8 @@ __all__ = [
1073
1075
  "PdfSearchResultMetaSourceRequest",
1074
1076
  "PlainTextPromptBlock",
1075
1077
  "Price",
1078
+ "PrivateVectorizer",
1079
+ "PrivateVectorizerRequest",
1076
1080
  "ProcessingFailureReasonEnum",
1077
1081
  "PromptBlock",
1078
1082
  "PromptBlockState",
@@ -27,10 +27,10 @@ class BaseClientWrapper:
27
27
 
28
28
  def get_headers(self) -> typing.Dict[str, str]:
29
29
  headers: typing.Dict[str, str] = {
30
- "User-Agent": "vellum-ai/1.5.2",
30
+ "User-Agent": "vellum-ai/1.5.4",
31
31
  "X-Fern-Language": "Python",
32
32
  "X-Fern-SDK-Name": "vellum-ai",
33
- "X-Fern-SDK-Version": "1.5.2",
33
+ "X-Fern-SDK-Version": "1.5.4",
34
34
  **(self.get_custom_headers() or {}),
35
35
  }
36
36
  if self._api_version is not None:
@@ -3122,6 +3122,14 @@ client.document_indexes.retrieve(
3122
3122
  <dl>
3123
3123
  <dd>
3124
3124
 
3125
+ **mask_indexing_config:** `typing.Optional[bool]` — Whether to mask the indexing configuration in the response
3126
+
3127
+ </dd>
3128
+ </dl>
3129
+
3130
+ <dl>
3131
+ <dd>
3132
+
3125
3133
  **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
3126
3134
 
3127
3135
  </dd>
@@ -5810,6 +5818,14 @@ client.workflow_deployments.list_workflow_deployment_event_executions(
5810
5818
  <dl>
5811
5819
  <dd>
5812
5820
 
5821
+ **ordering:** `typing.Optional[str]`
5822
+
5823
+ </dd>
5824
+ </dl>
5825
+
5826
+ <dl>
5827
+ <dd>
5828
+
5813
5829
  **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
5814
5830
 
5815
5831
  </dd>
@@ -163,7 +163,13 @@ class DocumentIndexesClient:
163
163
  )
164
164
  return _response.data
165
165
 
166
- def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> DocumentIndexRead:
166
+ def retrieve(
167
+ self,
168
+ id: str,
169
+ *,
170
+ mask_indexing_config: typing.Optional[bool] = None,
171
+ request_options: typing.Optional[RequestOptions] = None,
172
+ ) -> DocumentIndexRead:
167
173
  """
168
174
  Used to retrieve a Document Index given its ID or name.
169
175
 
@@ -172,6 +178,9 @@ class DocumentIndexesClient:
172
178
  id : str
173
179
  Either the Document Index's ID or its unique name
174
180
 
181
+ mask_indexing_config : typing.Optional[bool]
182
+ Whether to mask the indexing configuration in the response
183
+
175
184
  request_options : typing.Optional[RequestOptions]
176
185
  Request-specific configuration.
177
186
 
@@ -192,7 +201,9 @@ class DocumentIndexesClient:
192
201
  id="id",
193
202
  )
194
203
  """
195
- _response = self._raw_client.retrieve(id, request_options=request_options)
204
+ _response = self._raw_client.retrieve(
205
+ id, mask_indexing_config=mask_indexing_config, request_options=request_options
206
+ )
196
207
  return _response.data
197
208
 
198
209
  def update(
@@ -558,7 +569,13 @@ class AsyncDocumentIndexesClient:
558
569
  )
559
570
  return _response.data
560
571
 
561
- async def retrieve(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> DocumentIndexRead:
572
+ async def retrieve(
573
+ self,
574
+ id: str,
575
+ *,
576
+ mask_indexing_config: typing.Optional[bool] = None,
577
+ request_options: typing.Optional[RequestOptions] = None,
578
+ ) -> DocumentIndexRead:
562
579
  """
563
580
  Used to retrieve a Document Index given its ID or name.
564
581
 
@@ -567,6 +584,9 @@ class AsyncDocumentIndexesClient:
567
584
  id : str
568
585
  Either the Document Index's ID or its unique name
569
586
 
587
+ mask_indexing_config : typing.Optional[bool]
588
+ Whether to mask the indexing configuration in the response
589
+
570
590
  request_options : typing.Optional[RequestOptions]
571
591
  Request-specific configuration.
572
592
 
@@ -595,7 +615,9 @@ class AsyncDocumentIndexesClient:
595
615
 
596
616
  asyncio.run(main())
597
617
  """
598
- _response = await self._raw_client.retrieve(id, request_options=request_options)
618
+ _response = await self._raw_client.retrieve(
619
+ id, mask_indexing_config=mask_indexing_config, request_options=request_options
620
+ )
599
621
  return _response.data
600
622
 
601
623
  async def update(
@@ -168,7 +168,11 @@ class RawDocumentIndexesClient:
168
168
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
169
169
 
170
170
  def retrieve(
171
- self, id: str, *, request_options: typing.Optional[RequestOptions] = None
171
+ self,
172
+ id: str,
173
+ *,
174
+ mask_indexing_config: typing.Optional[bool] = None,
175
+ request_options: typing.Optional[RequestOptions] = None,
172
176
  ) -> HttpResponse[DocumentIndexRead]:
173
177
  """
174
178
  Used to retrieve a Document Index given its ID or name.
@@ -178,6 +182,9 @@ class RawDocumentIndexesClient:
178
182
  id : str
179
183
  Either the Document Index's ID or its unique name
180
184
 
185
+ mask_indexing_config : typing.Optional[bool]
186
+ Whether to mask the indexing configuration in the response
187
+
181
188
  request_options : typing.Optional[RequestOptions]
182
189
  Request-specific configuration.
183
190
 
@@ -190,6 +197,9 @@ class RawDocumentIndexesClient:
190
197
  f"v1/document-indexes/{jsonable_encoder(id)}",
191
198
  base_url=self._client_wrapper.get_environment().default,
192
199
  method="GET",
200
+ params={
201
+ "mask_indexing_config": mask_indexing_config,
202
+ },
193
203
  request_options=request_options,
194
204
  )
195
205
  try:
@@ -580,7 +590,11 @@ class AsyncRawDocumentIndexesClient:
580
590
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
581
591
 
582
592
  async def retrieve(
583
- self, id: str, *, request_options: typing.Optional[RequestOptions] = None
593
+ self,
594
+ id: str,
595
+ *,
596
+ mask_indexing_config: typing.Optional[bool] = None,
597
+ request_options: typing.Optional[RequestOptions] = None,
584
598
  ) -> AsyncHttpResponse[DocumentIndexRead]:
585
599
  """
586
600
  Used to retrieve a Document Index given its ID or name.
@@ -590,6 +604,9 @@ class AsyncRawDocumentIndexesClient:
590
604
  id : str
591
605
  Either the Document Index's ID or its unique name
592
606
 
607
+ mask_indexing_config : typing.Optional[bool]
608
+ Whether to mask the indexing configuration in the response
609
+
593
610
  request_options : typing.Optional[RequestOptions]
594
611
  Request-specific configuration.
595
612
 
@@ -602,6 +619,9 @@ class AsyncRawDocumentIndexesClient:
602
619
  f"v1/document-indexes/{jsonable_encoder(id)}",
603
620
  base_url=self._client_wrapper.get_environment().default,
604
621
  method="GET",
622
+ params={
623
+ "mask_indexing_config": mask_indexing_config,
624
+ },
605
625
  request_options=request_options,
606
626
  )
607
627
  try:
@@ -127,6 +127,7 @@ class WorkflowDeploymentsClient:
127
127
  filters: typing.Optional[str] = None,
128
128
  limit: typing.Optional[int] = None,
129
129
  offset: typing.Optional[int] = None,
130
+ ordering: typing.Optional[str] = None,
130
131
  request_options: typing.Optional[RequestOptions] = None,
131
132
  ) -> WorkflowDeploymentEventExecutionsResponse:
132
133
  """
@@ -142,6 +143,8 @@ class WorkflowDeploymentsClient:
142
143
  offset : typing.Optional[int]
143
144
  The initial index from which to return the executions.
144
145
 
146
+ ordering : typing.Optional[str]
147
+
145
148
  request_options : typing.Optional[RequestOptions]
146
149
  Request-specific configuration.
147
150
 
@@ -163,7 +166,7 @@ class WorkflowDeploymentsClient:
163
166
  )
164
167
  """
165
168
  _response = self._raw_client.list_workflow_deployment_event_executions(
166
- id, filters=filters, limit=limit, offset=offset, request_options=request_options
169
+ id, filters=filters, limit=limit, offset=offset, ordering=ordering, request_options=request_options
167
170
  )
168
171
  return _response.data
169
172
 
@@ -546,6 +549,7 @@ class AsyncWorkflowDeploymentsClient:
546
549
  filters: typing.Optional[str] = None,
547
550
  limit: typing.Optional[int] = None,
548
551
  offset: typing.Optional[int] = None,
552
+ ordering: typing.Optional[str] = None,
549
553
  request_options: typing.Optional[RequestOptions] = None,
550
554
  ) -> WorkflowDeploymentEventExecutionsResponse:
551
555
  """
@@ -561,6 +565,8 @@ class AsyncWorkflowDeploymentsClient:
561
565
  offset : typing.Optional[int]
562
566
  The initial index from which to return the executions.
563
567
 
568
+ ordering : typing.Optional[str]
569
+
564
570
  request_options : typing.Optional[RequestOptions]
565
571
  Request-specific configuration.
566
572
 
@@ -590,7 +596,7 @@ class AsyncWorkflowDeploymentsClient:
590
596
  asyncio.run(main())
591
597
  """
592
598
  _response = await self._raw_client.list_workflow_deployment_event_executions(
593
- id, filters=filters, limit=limit, offset=offset, request_options=request_options
599
+ id, filters=filters, limit=limit, offset=offset, ordering=ordering, request_options=request_options
594
600
  )
595
601
  return _response.data
596
602
 
@@ -136,6 +136,7 @@ class RawWorkflowDeploymentsClient:
136
136
  filters: typing.Optional[str] = None,
137
137
  limit: typing.Optional[int] = None,
138
138
  offset: typing.Optional[int] = None,
139
+ ordering: typing.Optional[str] = None,
139
140
  request_options: typing.Optional[RequestOptions] = None,
140
141
  ) -> HttpResponse[WorkflowDeploymentEventExecutionsResponse]:
141
142
  """
@@ -151,6 +152,8 @@ class RawWorkflowDeploymentsClient:
151
152
  offset : typing.Optional[int]
152
153
  The initial index from which to return the executions.
153
154
 
155
+ ordering : typing.Optional[str]
156
+
154
157
  request_options : typing.Optional[RequestOptions]
155
158
  Request-specific configuration.
156
159
 
@@ -167,6 +170,7 @@ class RawWorkflowDeploymentsClient:
167
170
  "filters": filters,
168
171
  "limit": limit,
169
172
  "offset": offset,
173
+ "ordering": ordering,
170
174
  },
171
175
  request_options=request_options,
172
176
  )
@@ -589,6 +593,7 @@ class AsyncRawWorkflowDeploymentsClient:
589
593
  filters: typing.Optional[str] = None,
590
594
  limit: typing.Optional[int] = None,
591
595
  offset: typing.Optional[int] = None,
596
+ ordering: typing.Optional[str] = None,
592
597
  request_options: typing.Optional[RequestOptions] = None,
593
598
  ) -> AsyncHttpResponse[WorkflowDeploymentEventExecutionsResponse]:
594
599
  """
@@ -604,6 +609,8 @@ class AsyncRawWorkflowDeploymentsClient:
604
609
  offset : typing.Optional[int]
605
610
  The initial index from which to return the executions.
606
611
 
612
+ ordering : typing.Optional[str]
613
+
607
614
  request_options : typing.Optional[RequestOptions]
608
615
  Request-specific configuration.
609
616
 
@@ -620,6 +627,7 @@ class AsyncRawWorkflowDeploymentsClient:
620
627
  "filters": filters,
621
628
  "limit": limit,
622
629
  "offset": offset,
630
+ "ordering": ordering,
623
631
  },
624
632
  request_options=request_options,
625
633
  )
@@ -356,6 +356,8 @@ from .pdf_search_result_meta_source import PdfSearchResultMetaSource
356
356
  from .pdf_search_result_meta_source_request import PdfSearchResultMetaSourceRequest
357
357
  from .plain_text_prompt_block import PlainTextPromptBlock
358
358
  from .price import Price
359
+ from .private_vectorizer import PrivateVectorizer
360
+ from .private_vectorizer_request import PrivateVectorizerRequest
359
361
  from .processing_failure_reason_enum import ProcessingFailureReasonEnum
360
362
  from .prompt_block import PromptBlock
361
363
  from .prompt_block_state import PromptBlockState
@@ -1044,6 +1046,8 @@ __all__ = [
1044
1046
  "PdfSearchResultMetaSourceRequest",
1045
1047
  "PlainTextPromptBlock",
1046
1048
  "Price",
1049
+ "PrivateVectorizer",
1050
+ "PrivateVectorizerRequest",
1047
1051
  "ProcessingFailureReasonEnum",
1048
1052
  "PromptBlock",
1049
1053
  "PromptBlockState",
@@ -19,6 +19,7 @@ from .hkunlp_instructor_xl_vectorizer import HkunlpInstructorXlVectorizer
19
19
  from .open_ai_vectorizer_text_embedding_3_large import OpenAiVectorizerTextEmbedding3Large
20
20
  from .open_ai_vectorizer_text_embedding_3_small import OpenAiVectorizerTextEmbedding3Small
21
21
  from .open_ai_vectorizer_text_embedding_ada_002 import OpenAiVectorizerTextEmbeddingAda002
22
+ from .private_vectorizer import PrivateVectorizer
22
23
 
23
24
  IndexingConfigVectorizer = typing.Union[
24
25
  OpenAiVectorizerTextEmbedding3Small,
@@ -32,4 +33,5 @@ IndexingConfigVectorizer = typing.Union[
32
33
  GoogleVertexAiVectorizerTextMultilingualEmbedding002,
33
34
  GoogleVertexAiVectorizerGeminiEmbedding001,
34
35
  FastEmbedVectorizerBaaiBgeSmallEnV15,
36
+ PrivateVectorizer,
35
37
  ]
@@ -19,6 +19,7 @@ from .hkunlp_instructor_xl_vectorizer_request import HkunlpInstructorXlVectorize
19
19
  from .open_ai_vectorizer_text_embedding_3_large_request import OpenAiVectorizerTextEmbedding3LargeRequest
20
20
  from .open_ai_vectorizer_text_embedding_3_small_request import OpenAiVectorizerTextEmbedding3SmallRequest
21
21
  from .open_ai_vectorizer_text_embedding_ada_002_request import OpenAiVectorizerTextEmbeddingAda002Request
22
+ from .private_vectorizer_request import PrivateVectorizerRequest
22
23
 
23
24
  IndexingConfigVectorizerRequest = typing.Union[
24
25
  OpenAiVectorizerTextEmbedding3SmallRequest,
@@ -32,4 +33,5 @@ IndexingConfigVectorizerRequest = typing.Union[
32
33
  GoogleVertexAiVectorizerTextMultilingualEmbedding002Request,
33
34
  GoogleVertexAiVectorizerGeminiEmbedding001Request,
34
35
  FastEmbedVectorizerBaaiBgeSmallEnV15Request,
36
+ PrivateVectorizerRequest,
35
37
  ]
@@ -0,0 +1,23 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+
8
+
9
+ class PrivateVectorizer(UniversalBaseModel):
10
+ """
11
+ Serializer for private vectorizer.
12
+ """
13
+
14
+ model_name: typing.Literal["private-vectorizer"] = "private-vectorizer"
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,23 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+
8
+
9
+ class PrivateVectorizerRequest(UniversalBaseModel):
10
+ """
11
+ Serializer for private vectorizer.
12
+ """
13
+
14
+ model_name: typing.Literal["private-vectorizer"] = "private-vectorizer"
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
@@ -7,7 +7,7 @@ VellumErrorCodeEnum = typing.Union[
7
7
  "INVALID_REQUEST",
8
8
  "INVALID_INPUTS",
9
9
  "PROVIDER_ERROR",
10
- "PROVIDER_CREDENTIALS_AVAILABLE",
10
+ "PROVIDER_CREDENTIALS_UNAVAILABLE",
11
11
  "REQUEST_TIMEOUT",
12
12
  "INTERNAL_SERVER_ERROR",
13
13
  "USER_DEFINED_ERROR",
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.types.private_vectorizer import *
@@ -0,0 +1,3 @@
1
+ # WARNING: This file will be removed in a future release. Please import from "vellum.client" instead.
2
+
3
+ from vellum.client.types.private_vectorizer_request import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-ai
3
- Version: 1.5.2
3
+ Version: 1.5.4
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.9,<4.0
@@ -153,12 +153,12 @@ vellum_ee/workflows/tests/test_registry.py,sha256=B8xRIuEyLWfSqrYoPldNQXhKPfe50P
153
153
  vellum_ee/workflows/tests/test_serialize_module.py,sha256=d4ZpMd3oIxiq-sBXeSQESS6ix6-1P6rdCRFqBEReJIU,2882
154
154
  vellum_ee/workflows/tests/test_server.py,sha256=dXFBraU99Y6cKp2aBhLFXQTScSRcE9WaWjo1z9piqdU,23344
155
155
  vellum_ee/workflows/tests/test_virtual_files.py,sha256=TJEcMR0v2S8CkloXNmCHA0QW0K6pYNGaIjraJz7sFvY,2762
156
- vellum/__init__.py,sha256=QWxRjUIOceGP7ARsXZVhWrwJDrbtyoZmXeAtJ8uud5A,47952
156
+ vellum/__init__.py,sha256=eR-V_gunexfXJhjtd2ayuyvACUUcNgGRf1lTGPJlp3w,48062
157
157
  vellum/client/README.md,sha256=flqu57ubZNTfpq60CdLtJC9gp4WEkyjb_n_eZ4OYf9w,6497
158
158
  vellum/client/__init__.py,sha256=-dZaD_0KtlkpQ-pULNNWcarC5xXlGMcGc2nBKLIyRlA,73661
159
159
  vellum/client/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
160
160
  vellum/client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
161
- vellum/client/core/client_wrapper.py,sha256=dgP8KuamHuhB9q-zUV2SOGwlGkksYCbOSO1zmJRGB7A,2840
161
+ vellum/client/core/client_wrapper.py,sha256=n_8wMch-CrtQ-wYEcxnBiIaMgaWQ0M2CgvqeB11eOlM,2840
162
162
  vellum/client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
163
163
  vellum/client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
164
164
  vellum/client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -179,7 +179,7 @@ vellum/client/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy
179
179
  vellum/client/errors/too_many_requests_error.py,sha256=SJJemdgUlQHV_VpxK8UfFNexgZebNT5_MTOeQs6oVgc,397
180
180
  vellum/client/errors/unauthorized_error.py,sha256=waPl5Swiqsk3FQK-Lljzx4KDh4RPZ0wL6BLHjM8onQ8,394
181
181
  vellum/client/raw_client.py,sha256=cmMR0t87iUYvkIE9L4g0dcCmw3uUQNze9rD9CBv5rzs,113481
182
- vellum/client/reference.md,sha256=Cmp2G_L5Xrw2y_R6NzOhJj4w8e1qdkM8bhHURgkY9yo,98843
182
+ vellum/client/reference.md,sha256=i1hKF-inDAc3CqodGJM0FdkgR10zO4nhHJDLdGjjkw4,99052
183
183
  vellum/client/resources/__init__.py,sha256=AlEiBj5gJLcaAJhAa-X1vtES-uujc6c83p6_C55U6FE,1647
184
184
  vellum/client/resources/ad_hoc/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
185
185
  vellum/client/resources/ad_hoc/client.py,sha256=v5I_YzJaaPezsE4KVuMSUXJISstKuJ_9-VUeXakIJhw,14353
@@ -194,8 +194,8 @@ vellum/client/resources/deployments/types/__init__.py,sha256=IjycypLdKnmutjjli7a
194
194
  vellum/client/resources/deployments/types/deployments_list_request_status.py,sha256=CxlQD16KZXme7x31YYCe_3aAgEueutDTeJo5A4Au-aU,174
195
195
  vellum/client/resources/deployments/types/list_deployment_release_tags_request_source.py,sha256=hRGgWMYZL9uKCmD_2dU8-u9RCPUUGItpNn1tUY-NXKY,180
196
196
  vellum/client/resources/document_indexes/__init__.py,sha256=cCCSLBe93_1w6-u6Q-IYM0XXS57PW9Xw14myKqdcaqc,185
197
- vellum/client/resources/document_indexes/client.py,sha256=cMJo6xEPnHW7-rX-3vOb4-jupdH_M3u9oA6uuxaTIO8,24213
198
- vellum/client/resources/document_indexes/raw_client.py,sha256=HOBjCtuP1slPMIShqkDv0uoDl2bbu7CQrGG3paLDFN4,32063
197
+ vellum/client/resources/document_indexes/client.py,sha256=pH9slCzMzC-x403hRwQQwcJB0spFFXBv3Hp7rwlIUK0,24791
198
+ vellum/client/resources/document_indexes/raw_client.py,sha256=jD717kJH4j5kdXx9rOp37uyjGAV5FiBBARYHdoWua-s,32679
199
199
  vellum/client/resources/document_indexes/types/__init__.py,sha256=HaAObnALQo1B9vq9-6NxBcr5z-IRjqaPojE2Q6thkPM,216
200
200
  vellum/client/resources/document_indexes/types/document_indexes_list_request_status.py,sha256=sfUEB0cvOSmlE2iITqnMVyHv05Zy2fWP4QjCIYqMg0M,178
201
201
  vellum/client/resources/documents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -234,8 +234,8 @@ vellum/client/resources/test_suites/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-C
234
234
  vellum/client/resources/test_suites/client.py,sha256=xo197bXk84jj6gEieRmJuhqBbQ8IB-VMNLki7gdqhlo,20753
235
235
  vellum/client/resources/test_suites/raw_client.py,sha256=XfDqmJa7fngPsHAirTSSNBMHy2O4mKOaNS16IL567L8,22335
236
236
  vellum/client/resources/workflow_deployments/__init__.py,sha256=MVnGG7CkZA7F8p__MGerey22DTg6oYqfay77mdlDjBc,271
237
- vellum/client/resources/workflow_deployments/client.py,sha256=OjISxlNMMw241kmQN5uD3Cp9cOtQYJgbGh_yABG9J4o,27114
238
- vellum/client/resources/workflow_deployments/raw_client.py,sha256=ypDXg7CzASIiTsThqJZhTmgpKuDQERgNJenFPWAnugU,37281
237
+ vellum/client/resources/workflow_deployments/client.py,sha256=AolU-CJ7gKKTkVekNp9qZM5EyQQlsQyDtwJplwHIHLs,27328
238
+ vellum/client/resources/workflow_deployments/raw_client.py,sha256=LvOUJmHV7EVk734DQGH65XbTtIPGLFzWzaOaXLHU7Ss,37533
239
239
  vellum/client/resources/workflow_deployments/types/__init__.py,sha256=2Lrjd-cX_h9gZEgxsF7e9nhCWUcTNXQyEaOjytC1NEM,360
240
240
  vellum/client/resources/workflow_deployments/types/list_workflow_release_tags_request_source.py,sha256=LPETHLX9Ygha_JRT9oWZAZR6clv-W1tTelXzktkTBX8,178
241
241
  vellum/client/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
@@ -258,7 +258,7 @@ vellum/client/resources/workspaces/client.py,sha256=36KYa2FDu6h65q2GscUFOJs4qKei
258
258
  vellum/client/resources/workspaces/raw_client.py,sha256=M3Ewk1ZfEZ44EeTvBtBNoNKi5whwfLY-1GR07SyfDTI,3517
259
259
  vellum/client/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
260
  vellum/client/tests/test_utils.py,sha256=zk8z45-2xrm9sZ2hq8PTqY8MXmXtPqMqYK0VBBX0GHg,1176
261
- vellum/client/types/__init__.py,sha256=n4NG8ONAsDGYTCAfh1BtPvO7DGKyov_L_fMKkGPshqA,72678
261
+ vellum/client/types/__init__.py,sha256=KhRC4aJBoLP3SMWUNlbLiqmpCB8Wh_5AUPhGXZRQi7c,72850
262
262
  vellum/client/types/ad_hoc_execute_prompt_event.py,sha256=B69EesIH6fpNsdoiJaSG9zF1Sl17FnjoTu4CBkUSoHk,608
263
263
  vellum/client/types/ad_hoc_expand_meta.py,sha256=Kajcj3dKKed5e7uZibRnE3ZonK_bB2JPM-3aLjLfUp4,1295
264
264
  vellum/client/types/ad_hoc_fulfilled_prompt_execution_meta.py,sha256=5kD6ZcbU8P8ynK0lMD8Mh7vHzvQt06ziMyphvWYg6FU,968
@@ -463,8 +463,8 @@ vellum/client/types/image_input_request.py,sha256=8WEE7LaFJ0M8ncxmts6yKTNAwGT-C1
463
463
  vellum/client/types/image_prompt_block.py,sha256=5VUNnsbmvK3RkWFq5PFq6_SleHR4XyHYFzKWBgpmwJ0,972
464
464
  vellum/client/types/image_vellum_value.py,sha256=aYtApnz5PeTYia0Mwmxi3LQ2F6KAoy3vDYzovzaEqzs,712
465
465
  vellum/client/types/image_vellum_value_request.py,sha256=1y5MyppljIcx748SLcC6N84RPNS2nGPdueuLZNrekxk,741
466
- vellum/client/types/indexing_config_vectorizer.py,sha256=nTHf22XEYxZpjzZg29IR2ow4r6zpgJqW1UiY6Ht-T8U,1827
467
- vellum/client/types/indexing_config_vectorizer_request.py,sha256=-ofzJtUpBZ1uykyE_io1wXtMwQdmVbDXJ0EfyD21S3s,2076
466
+ vellum/client/types/indexing_config_vectorizer.py,sha256=rK0JnE9lCCXiB71wkT5FCyky-_WYkgNyL0VrFM5UImg,1900
467
+ vellum/client/types/indexing_config_vectorizer_request.py,sha256=KGaJ4Z74RdjU27o4zIK_Hp32LE82-nFy1V-Tu_2UW8U,2171
468
468
  vellum/client/types/indexing_state_enum.py,sha256=KWYMz5DwJnVhu3ZlSDdqiC5MtiTIdrxE4EvwFYiel1U,213
469
469
  vellum/client/types/initiated_ad_hoc_execute_prompt_event.py,sha256=S2pwVWNs0sJKNfCLPd3N0xlYw1Tl67Js1waB5hSML5E,879
470
470
  vellum/client/types/initiated_execute_prompt_event.py,sha256=yrNgIGqJEfe2cxoE-3zIOFa6j976Qo2Hcbm-vU6wogs,857
@@ -601,6 +601,8 @@ vellum/client/types/pdf_search_result_meta_source.py,sha256=KaYx-xvNtOn_ADRDBbb4
601
601
  vellum/client/types/pdf_search_result_meta_source_request.py,sha256=Fh2EUxWyhdP7yW2CUNvSTSZo8EcukgogALr4HpppHvQ,1097
602
602
  vellum/client/types/plain_text_prompt_block.py,sha256=vqZESoqj6P1IyHFmRAk2kmdU3ktsM_852crRCBcYV64,894
603
603
  vellum/client/types/price.py,sha256=f-j-74UUDuX2c-IQxXH78KV8L-jLi6sdsHWVLRKqBy4,574
604
+ vellum/client/types/private_vectorizer.py,sha256=byAlExo-LWDBOMXrgMalUiV-IgWf1yk1LN9MmJ22p4o,642
605
+ vellum/client/types/private_vectorizer_request.py,sha256=ToGDgT3V_wsr75vpTYFVrhnrHcbzBe03QkadvWL7REg,649
604
606
  vellum/client/types/processing_failure_reason_enum.py,sha256=cQ3Rmryo7U0Lkh-XZzWIDI9Re-oVh1GZb2cDgMR5sL8,224
605
607
  vellum/client/types/prompt_block.py,sha256=950JeKeNKZ0DQXwCD-Sy9SDMtiR7F-BqCrJZoxZt7JM,886
606
608
  vellum/client/types/prompt_block_state.py,sha256=BRAzTYARoSU36IVZGWMeeqhl5fgFMXCyhJ8rCbfB-f0,163
@@ -815,7 +817,7 @@ vellum/client/types/vellum_code_resource_definition.py,sha256=XdueTR342BDjevZ3kt
815
817
  vellum/client/types/vellum_document.py,sha256=qwXqMS2Eud2a5KmF8QHhU_vJzDX0g5cesrCpmBqREsA,604
816
818
  vellum/client/types/vellum_document_request.py,sha256=P9vA7ZDNeaHNlMqyzfl-ZD4bpdf-xA5mH8R1QuOAmOY,611
817
819
  vellum/client/types/vellum_error.py,sha256=G4WSD-w_skoDDnsAt-TtImt-hZT-Sc8LjHvERBUVnhE,691
818
- vellum/client/types/vellum_error_code_enum.py,sha256=_Z1p2ExKwGLmNU5Hq-8MZ328LStQWbevipjYkBF-GSU,402
820
+ vellum/client/types/vellum_error_code_enum.py,sha256=kaqf7PNViS1cELE571Ql2-Xueh058MPzq_jvqLiMH48,404
819
821
  vellum/client/types/vellum_error_request.py,sha256=7l4Ux6wj3C9BdSXUPBrtxECsAirmvaLU42Y23VqncBU,698
820
822
  vellum/client/types/vellum_image.py,sha256=LAGUYBDsT0bmMOqgbaeCTCy2w4zAeHEyUIgPtmdjjJ4,601
821
823
  vellum/client/types/vellum_image_request.py,sha256=6DoI2AdJIG8NShHSslpHvsFUw5PwIMconjlHSipOP5Q,608
@@ -1396,6 +1398,8 @@ vellum/types/pdf_search_result_meta_source.py,sha256=tkM53z99Zky8ifkcfj1HoS7k-sc
1396
1398
  vellum/types/pdf_search_result_meta_source_request.py,sha256=TW9FWTdqZi-SuERKkjMdrKBgQEq3RA4W9nwefm8it6k,175
1397
1399
  vellum/types/plain_text_prompt_block.py,sha256=K5tGXMDCVTLDIDOL17TjLvZD6pMaHnRtcSYfXOrzQMM,161
1398
1400
  vellum/types/price.py,sha256=TTMB0kw-FD2OtTVWMPPB12zay8ncWtnAq48mg1Bwmz0,143
1401
+ vellum/types/private_vectorizer.py,sha256=MjfxUfZCwY-Yt7ksER7w4RfVqtIToJK080U5iq-o-b4,156
1402
+ vellum/types/private_vectorizer_request.py,sha256=sy498k6SmUSPGgaDfrQgb5NN-ebxE68MeGODv7DNXLA,164
1399
1403
  vellum/types/processing_failure_reason_enum.py,sha256=Pz9H8oNn8H6lLLVuLWsuRYzOiQkVXRAW_KeT3mPd5z8,168
1400
1404
  vellum/types/prompt_block.py,sha256=WU91uuWAvel_8EFjoBSJodOZdAVlZAFwQYCrT4Mt-dE,150
1401
1405
  vellum/types/prompt_block_state.py,sha256=tKqNrZnHWjvfGS_6oIUTpdCPGxvRJa31Le6qWL_3198,156
@@ -2012,8 +2016,8 @@ vellum/workflows/workflows/event_filters.py,sha256=GSxIgwrX26a1Smfd-6yss2abGCnad
2012
2016
  vellum/workflows/workflows/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2013
2017
  vellum/workflows/workflows/tests/test_base_workflow.py,sha256=Boa-_m9ii2Qsa1RvVM-VYniF7zCpzGgEGy-OnPZkrHg,23941
2014
2018
  vellum/workflows/workflows/tests/test_context.py,sha256=VJBUcyWVtMa_lE5KxdhgMu0WYNYnUQUDvTF7qm89hJ0,2333
2015
- vellum_ai-1.5.2.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
2016
- vellum_ai-1.5.2.dist-info/METADATA,sha256=-qDjvOuDnllUtWah1AMWM9bItegRKH7bZAY9mDwyIQQ,5547
2017
- vellum_ai-1.5.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2018
- vellum_ai-1.5.2.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
2019
- vellum_ai-1.5.2.dist-info/RECORD,,
2019
+ vellum_ai-1.5.4.dist-info/LICENSE,sha256=hOypcdt481qGNISA784bnAGWAE6tyIf9gc2E78mYC3E,1574
2020
+ vellum_ai-1.5.4.dist-info/METADATA,sha256=soLMtYS_TpD1rHShlsX1sc_VP_GcC9VxqmpeMo70hOo,5547
2021
+ vellum_ai-1.5.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2022
+ vellum_ai-1.5.4.dist-info/entry_points.txt,sha256=xVavzAKN4iF_NbmhWOlOkHluka0YLkbN_pFQ9pW3gLI,117
2023
+ vellum_ai-1.5.4.dist-info/RECORD,,