vellum-ai 0.7.8__py3-none-any.whl → 0.7.10__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/ml_models/client.py +56 -4
- vellum/terraform/__init__.py +2 -0
- vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz +0 -0
- vellum/terraform/data_vellum_document_index/__init__.py +10 -10
- vellum/terraform/data_vellum_ml_model/__init__.py +409 -0
- vellum/terraform/document_index/__init__.py +16 -16
- vellum/terraform/ml_model/__init__.py +806 -0
- vellum/terraform/provider/__init__.py +13 -13
- vellum/terraform/versions.json +1 -1
- vellum/types/__init__.py +8 -0
- vellum/types/ml_model_display_config_labelled.py +4 -0
- vellum/types/ml_model_display_config_request.py +4 -0
- vellum/types/ml_model_exec_config.py +5 -0
- vellum/types/ml_model_exec_config_request.py +5 -0
- vellum/types/open_api_array_property.py +1 -1
- vellum/types/open_api_array_property_request.py +1 -1
- vellum/types/open_api_boolean_property.py +1 -1
- vellum/types/open_api_boolean_property_request.py +1 -1
- vellum/types/open_api_const_property.py +1 -1
- vellum/types/open_api_const_property_request.py +1 -1
- vellum/types/open_api_integer_property.py +1 -1
- vellum/types/open_api_integer_property_request.py +1 -1
- vellum/types/open_api_number_property.py +1 -1
- vellum/types/open_api_number_property_request.py +1 -1
- vellum/types/open_api_object_property.py +1 -1
- vellum/types/open_api_object_property_request.py +1 -1
- vellum/types/open_api_one_of_property.py +1 -1
- vellum/types/open_api_one_of_property_request.py +1 -1
- vellum/types/open_api_property.py +26 -0
- vellum/types/open_api_property_request.py +26 -0
- vellum/types/open_api_ref_property.py +35 -0
- vellum/types/open_api_ref_property_request.py +35 -0
- vellum/types/open_api_string_property.py +1 -1
- vellum/types/open_api_string_property_request.py +1 -1
- {vellum_ai-0.7.8.dist-info → vellum_ai-0.7.10.dist-info}/METADATA +1 -1
- {vellum_ai-0.7.8.dist-info → vellum_ai-0.7.10.dist-info}/RECORD +40 -36
- {vellum_ai-0.7.8.dist-info → vellum_ai-0.7.10.dist-info}/LICENSE +0 -0
- {vellum_ai-0.7.8.dist-info → vellum_ai-0.7.10.dist-info}/WHEEL +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
'''
|
2
2
|
# `provider`
|
3
3
|
|
4
|
-
Refer to the Terraform Registry for docs: [`vellum`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
4
|
+
Refer to the Terraform Registry for docs: [`vellum`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs).
|
5
5
|
'''
|
6
6
|
from pkgutil import extend_path
|
7
7
|
__path__ = extend_path(__path__, __name__)
|
@@ -29,7 +29,7 @@ class VellumProvider(
|
|
29
29
|
metaclass=jsii.JSIIMeta,
|
30
30
|
jsii_type="vellum-ai_vellum.provider.VellumProvider",
|
31
31
|
):
|
32
|
-
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
32
|
+
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs vellum}.'''
|
33
33
|
|
34
34
|
def __init__(
|
35
35
|
self,
|
@@ -40,13 +40,13 @@ class VellumProvider(
|
|
40
40
|
api_key: typing.Optional[builtins.str] = None,
|
41
41
|
base_url: typing.Optional[builtins.str] = None,
|
42
42
|
) -> None:
|
43
|
-
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
43
|
+
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs vellum} Resource.
|
44
44
|
|
45
45
|
:param scope: The scope in which to define this construct.
|
46
46
|
:param id: The scoped construct ID. Must be unique amongst siblings in the same scope
|
47
|
-
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
48
|
-
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
49
|
-
:param base_url: Base URL to use with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
47
|
+
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#alias VellumProvider#alias}
|
48
|
+
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#api_key VellumProvider#api_key}
|
49
|
+
:param base_url: Base URL to use with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#base_url VellumProvider#base_url}
|
50
50
|
'''
|
51
51
|
if __debug__:
|
52
52
|
type_hints = typing.get_type_hints(_typecheckingstub__8f332a1b6664893e57a3554abbbfd334296d68a0c02222521351772fec263177)
|
@@ -69,7 +69,7 @@ class VellumProvider(
|
|
69
69
|
|
70
70
|
:param scope: The scope in which to define this construct.
|
71
71
|
:param import_to_id: The construct id used in the generated config for the VellumProvider to import.
|
72
|
-
:param import_from_id: The id of the existing VellumProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
72
|
+
:param import_from_id: The id of the existing VellumProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#import import section} in the documentation of this resource for the id to use
|
73
73
|
:param provider: ? Optional instance of the provider where the VellumProvider to import is found.
|
74
74
|
'''
|
75
75
|
if __debug__:
|
@@ -171,9 +171,9 @@ class VellumProviderConfig:
|
|
171
171
|
base_url: typing.Optional[builtins.str] = None,
|
172
172
|
) -> None:
|
173
173
|
'''
|
174
|
-
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
175
|
-
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
176
|
-
:param base_url: Base URL to use with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
174
|
+
:param alias: Alias name. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#alias VellumProvider#alias}
|
175
|
+
:param api_key: API Key to authenticate with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#api_key VellumProvider#api_key}
|
176
|
+
:param base_url: Base URL to use with the Vellum API. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#base_url VellumProvider#base_url}
|
177
177
|
'''
|
178
178
|
if __debug__:
|
179
179
|
type_hints = typing.get_type_hints(_typecheckingstub__bb8c32f1d43f1344224f7a690abc6e2489c4dff67cb93921483ed2cc4b5410e1)
|
@@ -192,7 +192,7 @@ class VellumProviderConfig:
|
|
192
192
|
def alias(self) -> typing.Optional[builtins.str]:
|
193
193
|
'''Alias name.
|
194
194
|
|
195
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
195
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#alias VellumProvider#alias}
|
196
196
|
'''
|
197
197
|
result = self._values.get("alias")
|
198
198
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -201,7 +201,7 @@ class VellumProviderConfig:
|
|
201
201
|
def api_key(self) -> typing.Optional[builtins.str]:
|
202
202
|
'''API Key to authenticate with the Vellum API.
|
203
203
|
|
204
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
204
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#api_key VellumProvider#api_key}
|
205
205
|
'''
|
206
206
|
result = self._values.get("api_key")
|
207
207
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -210,7 +210,7 @@ class VellumProviderConfig:
|
|
210
210
|
def base_url(self) -> typing.Optional[builtins.str]:
|
211
211
|
'''Base URL to use with the Vellum API.
|
212
212
|
|
213
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
213
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs#base_url VellumProvider#base_url}
|
214
214
|
'''
|
215
215
|
result = self._values.get("base_url")
|
216
216
|
return typing.cast(typing.Optional[builtins.str], result)
|
vellum/terraform/versions.json
CHANGED
vellum/types/__init__.py
CHANGED
@@ -399,6 +399,7 @@ from .open_api_property import (
|
|
399
399
|
OpenApiProperty_Number,
|
400
400
|
OpenApiProperty_Object,
|
401
401
|
OpenApiProperty_OneOf,
|
402
|
+
OpenApiProperty_Ref,
|
402
403
|
OpenApiProperty_String,
|
403
404
|
)
|
404
405
|
from .open_api_property_request import (
|
@@ -410,8 +411,11 @@ from .open_api_property_request import (
|
|
410
411
|
OpenApiPropertyRequest_Number,
|
411
412
|
OpenApiPropertyRequest_Object,
|
412
413
|
OpenApiPropertyRequest_OneOf,
|
414
|
+
OpenApiPropertyRequest_Ref,
|
413
415
|
OpenApiPropertyRequest_String,
|
414
416
|
)
|
417
|
+
from .open_api_ref_property import OpenApiRefProperty
|
418
|
+
from .open_api_ref_property_request import OpenApiRefPropertyRequest
|
415
419
|
from .open_api_string_property import OpenApiStringProperty
|
416
420
|
from .open_api_string_property_request import OpenApiStringPropertyRequest
|
417
421
|
from .paginated_document_index_read_list import PaginatedDocumentIndexReadList
|
@@ -1100,6 +1104,7 @@ __all__ = [
|
|
1100
1104
|
"OpenApiPropertyRequest_Number",
|
1101
1105
|
"OpenApiPropertyRequest_Object",
|
1102
1106
|
"OpenApiPropertyRequest_OneOf",
|
1107
|
+
"OpenApiPropertyRequest_Ref",
|
1103
1108
|
"OpenApiPropertyRequest_String",
|
1104
1109
|
"OpenApiProperty_Array",
|
1105
1110
|
"OpenApiProperty_Boolean",
|
@@ -1108,7 +1113,10 @@ __all__ = [
|
|
1108
1113
|
"OpenApiProperty_Number",
|
1109
1114
|
"OpenApiProperty_Object",
|
1110
1115
|
"OpenApiProperty_OneOf",
|
1116
|
+
"OpenApiProperty_Ref",
|
1111
1117
|
"OpenApiProperty_String",
|
1118
|
+
"OpenApiRefProperty",
|
1119
|
+
"OpenApiRefPropertyRequest",
|
1112
1120
|
"OpenApiStringProperty",
|
1113
1121
|
"OpenApiStringPropertyRequest",
|
1114
1122
|
"PaginatedDocumentIndexReadList",
|
@@ -12,6 +12,10 @@ class MlModelDisplayConfigLabelled(pydantic_v1.BaseModel):
|
|
12
12
|
label: str
|
13
13
|
description: str
|
14
14
|
tags: typing.List[MlModelDisplayTagEnumValueLabel]
|
15
|
+
default_display_priority: typing.Optional[float] = pydantic_v1.Field(default=None)
|
16
|
+
"""
|
17
|
+
Can only be set when using an internal service token.
|
18
|
+
"""
|
15
19
|
|
16
20
|
def json(self, **kwargs: typing.Any) -> str:
|
17
21
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -12,6 +12,10 @@ class MlModelDisplayConfigRequest(pydantic_v1.BaseModel):
|
|
12
12
|
label: str
|
13
13
|
description: str
|
14
14
|
tags: typing.List[MlModelDisplayTag]
|
15
|
+
default_display_priority: typing.Optional[float] = pydantic_v1.Field(default=None)
|
16
|
+
"""
|
17
|
+
Can only be set when using an internal service token.
|
18
|
+
"""
|
15
19
|
|
16
20
|
def json(self, **kwargs: typing.Any) -> str:
|
17
21
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
@@ -16,6 +16,11 @@ class MlModelExecConfig(pydantic_v1.BaseModel):
|
|
16
16
|
base_url: str
|
17
17
|
metadata: typing.Dict[str, typing.Any]
|
18
18
|
features: typing.List[MlModelFeature]
|
19
|
+
force_system_credentials: typing.Optional[bool] = pydantic_v1.Field(default=None)
|
20
|
+
"""
|
21
|
+
Can only be set when using an internal service token.
|
22
|
+
"""
|
23
|
+
|
19
24
|
tokenizer_config: typing.Optional[MlModelTokenizerConfig] = None
|
20
25
|
request_config: typing.Optional[MlModelRequestConfig] = None
|
21
26
|
response_config: typing.Optional[MlModelResponseConfig] = None
|
@@ -16,6 +16,11 @@ class MlModelExecConfigRequest(pydantic_v1.BaseModel):
|
|
16
16
|
base_url: str
|
17
17
|
metadata: typing.Dict[str, typing.Any]
|
18
18
|
features: typing.List[MlModelFeature]
|
19
|
+
force_system_credentials: typing.Optional[bool] = pydantic_v1.Field(default=None)
|
20
|
+
"""
|
21
|
+
Can only be set when using an internal service token.
|
22
|
+
"""
|
23
|
+
|
19
24
|
tokenizer_config: typing.Optional[MlModelTokenizerConfigRequest] = None
|
20
25
|
request_config: typing.Optional[MlModelRequestConfigRequest] = None
|
21
26
|
response_config: typing.Optional[MlModelResponseConfigRequest] = None
|
@@ -11,7 +11,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
11
11
|
|
12
12
|
class OpenApiArrayProperty(pydantic_v1.BaseModel):
|
13
13
|
"""
|
14
|
-
An OpenAPI specification of a
|
14
|
+
An OpenAPI specification of a property with type 'array'
|
15
15
|
"""
|
16
16
|
|
17
17
|
min_items: typing.Optional[int] = None
|
@@ -11,7 +11,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
11
11
|
|
12
12
|
class OpenApiArrayPropertyRequest(pydantic_v1.BaseModel):
|
13
13
|
"""
|
14
|
-
An OpenAPI specification of a
|
14
|
+
An OpenAPI specification of a property with type 'array'
|
15
15
|
"""
|
16
16
|
|
17
17
|
min_items: typing.Optional[int] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiBooleanProperty(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'boolean'
|
13
13
|
"""
|
14
14
|
|
15
15
|
default: typing.Optional[bool] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiBooleanPropertyRequest(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'boolean'
|
13
13
|
"""
|
14
14
|
|
15
15
|
default: typing.Optional[bool] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiConstProperty(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'const'
|
13
13
|
"""
|
14
14
|
|
15
15
|
title: typing.Optional[str] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiConstPropertyRequest(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'const'
|
13
13
|
"""
|
14
14
|
|
15
15
|
title: typing.Optional[str] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiIntegerProperty(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'integer'
|
13
13
|
"""
|
14
14
|
|
15
15
|
minimum: typing.Optional[int] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiIntegerPropertyRequest(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'integer'
|
13
13
|
"""
|
14
14
|
|
15
15
|
minimum: typing.Optional[int] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiNumberProperty(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'number'
|
13
13
|
"""
|
14
14
|
|
15
15
|
minimum: typing.Optional[float] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiNumberPropertyRequest(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'number'
|
13
13
|
"""
|
14
14
|
|
15
15
|
minimum: typing.Optional[float] = None
|
@@ -11,7 +11,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
11
11
|
|
12
12
|
class OpenApiObjectProperty(pydantic_v1.BaseModel):
|
13
13
|
"""
|
14
|
-
An OpenAPI specification of a
|
14
|
+
An OpenAPI specification of a property with type 'object'
|
15
15
|
"""
|
16
16
|
|
17
17
|
properties: typing.Optional[typing.Dict[str, typing.Optional[OpenApiProperty]]] = None
|
@@ -11,7 +11,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
11
11
|
|
12
12
|
class OpenApiObjectPropertyRequest(pydantic_v1.BaseModel):
|
13
13
|
"""
|
14
|
-
An OpenAPI specification of a
|
14
|
+
An OpenAPI specification of a property with type 'object'
|
15
15
|
"""
|
16
16
|
|
17
17
|
properties: typing.Optional[typing.Dict[str, typing.Optional[OpenApiPropertyRequest]]] = None
|
@@ -11,7 +11,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
11
11
|
|
12
12
|
class OpenApiOneOfProperty(pydantic_v1.BaseModel):
|
13
13
|
"""
|
14
|
-
An OpenAPI specification of a
|
14
|
+
An OpenAPI specification of a property with type 'oneOf'
|
15
15
|
"""
|
16
16
|
|
17
17
|
one_of: typing.List[OpenApiProperty] = pydantic_v1.Field(alias="oneOf")
|
@@ -11,7 +11,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
11
11
|
|
12
12
|
class OpenApiOneOfPropertyRequest(pydantic_v1.BaseModel):
|
13
13
|
"""
|
14
|
-
An OpenAPI specification of a
|
14
|
+
An OpenAPI specification of a property with type 'oneOf'
|
15
15
|
"""
|
16
16
|
|
17
17
|
one_of: typing.List[OpenApiPropertyRequest] = pydantic_v1.Field(alias="oneOf")
|
@@ -239,6 +239,31 @@ class OpenApiProperty_Const(pydantic_v1.BaseModel):
|
|
239
239
|
json_encoders = {dt.datetime: serialize_datetime}
|
240
240
|
|
241
241
|
|
242
|
+
class OpenApiProperty_Ref(pydantic_v1.BaseModel):
|
243
|
+
title: typing.Optional[str] = None
|
244
|
+
description: typing.Optional[str] = None
|
245
|
+
ref: str
|
246
|
+
type: typing.Literal["ref"] = "ref"
|
247
|
+
|
248
|
+
def json(self, **kwargs: typing.Any) -> str:
|
249
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
250
|
+
return super().json(**kwargs_with_defaults)
|
251
|
+
|
252
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
253
|
+
kwargs_with_defaults_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
254
|
+
kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
|
255
|
+
|
256
|
+
return deep_union_pydantic_dicts(
|
257
|
+
super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
|
258
|
+
)
|
259
|
+
|
260
|
+
class Config:
|
261
|
+
frozen = True
|
262
|
+
smart_union = True
|
263
|
+
extra = pydantic_v1.Extra.allow
|
264
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
265
|
+
|
266
|
+
|
242
267
|
OpenApiProperty = typing.Union[
|
243
268
|
OpenApiProperty_Array,
|
244
269
|
OpenApiProperty_Object,
|
@@ -248,4 +273,5 @@ OpenApiProperty = typing.Union[
|
|
248
273
|
OpenApiProperty_Boolean,
|
249
274
|
OpenApiProperty_OneOf,
|
250
275
|
OpenApiProperty_Const,
|
276
|
+
OpenApiProperty_Ref,
|
251
277
|
]
|
@@ -239,6 +239,31 @@ class OpenApiPropertyRequest_Const(pydantic_v1.BaseModel):
|
|
239
239
|
json_encoders = {dt.datetime: serialize_datetime}
|
240
240
|
|
241
241
|
|
242
|
+
class OpenApiPropertyRequest_Ref(pydantic_v1.BaseModel):
|
243
|
+
title: typing.Optional[str] = None
|
244
|
+
description: typing.Optional[str] = None
|
245
|
+
ref: str
|
246
|
+
type: typing.Literal["ref"] = "ref"
|
247
|
+
|
248
|
+
def json(self, **kwargs: typing.Any) -> str:
|
249
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
250
|
+
return super().json(**kwargs_with_defaults)
|
251
|
+
|
252
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
253
|
+
kwargs_with_defaults_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
254
|
+
kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
|
255
|
+
|
256
|
+
return deep_union_pydantic_dicts(
|
257
|
+
super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
|
258
|
+
)
|
259
|
+
|
260
|
+
class Config:
|
261
|
+
frozen = True
|
262
|
+
smart_union = True
|
263
|
+
extra = pydantic_v1.Extra.allow
|
264
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
265
|
+
|
266
|
+
|
242
267
|
OpenApiPropertyRequest = typing.Union[
|
243
268
|
OpenApiPropertyRequest_Array,
|
244
269
|
OpenApiPropertyRequest_Object,
|
@@ -248,4 +273,5 @@ OpenApiPropertyRequest = typing.Union[
|
|
248
273
|
OpenApiPropertyRequest_Boolean,
|
249
274
|
OpenApiPropertyRequest_OneOf,
|
250
275
|
OpenApiPropertyRequest_Const,
|
276
|
+
OpenApiPropertyRequest_Ref,
|
251
277
|
]
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import datetime as dt
|
4
|
+
import typing
|
5
|
+
|
6
|
+
from ..core.datetime_utils import serialize_datetime
|
7
|
+
from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
8
|
+
|
9
|
+
|
10
|
+
class OpenApiRefProperty(pydantic_v1.BaseModel):
|
11
|
+
"""
|
12
|
+
An OpenAPI specification of a property that is a URI-reference to another schema
|
13
|
+
"""
|
14
|
+
|
15
|
+
title: typing.Optional[str] = None
|
16
|
+
description: typing.Optional[str] = None
|
17
|
+
ref: str
|
18
|
+
|
19
|
+
def json(self, **kwargs: typing.Any) -> str:
|
20
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
21
|
+
return super().json(**kwargs_with_defaults)
|
22
|
+
|
23
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
24
|
+
kwargs_with_defaults_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
25
|
+
kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
|
26
|
+
|
27
|
+
return deep_union_pydantic_dicts(
|
28
|
+
super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
|
29
|
+
)
|
30
|
+
|
31
|
+
class Config:
|
32
|
+
frozen = True
|
33
|
+
smart_union = True
|
34
|
+
extra = pydantic_v1.Extra.allow
|
35
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
import datetime as dt
|
4
|
+
import typing
|
5
|
+
|
6
|
+
from ..core.datetime_utils import serialize_datetime
|
7
|
+
from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
8
|
+
|
9
|
+
|
10
|
+
class OpenApiRefPropertyRequest(pydantic_v1.BaseModel):
|
11
|
+
"""
|
12
|
+
An OpenAPI specification of a property that is a URI-reference to another schema
|
13
|
+
"""
|
14
|
+
|
15
|
+
title: typing.Optional[str] = None
|
16
|
+
description: typing.Optional[str] = None
|
17
|
+
ref: str
|
18
|
+
|
19
|
+
def json(self, **kwargs: typing.Any) -> str:
|
20
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
21
|
+
return super().json(**kwargs_with_defaults)
|
22
|
+
|
23
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
24
|
+
kwargs_with_defaults_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
25
|
+
kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
|
26
|
+
|
27
|
+
return deep_union_pydantic_dicts(
|
28
|
+
super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
|
29
|
+
)
|
30
|
+
|
31
|
+
class Config:
|
32
|
+
frozen = True
|
33
|
+
smart_union = True
|
34
|
+
extra = pydantic_v1.Extra.allow
|
35
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiStringProperty(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'string'
|
13
13
|
"""
|
14
14
|
|
15
15
|
min_length: typing.Optional[int] = None
|
@@ -9,7 +9,7 @@ from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
|
|
9
9
|
|
10
10
|
class OpenApiStringPropertyRequest(pydantic_v1.BaseModel):
|
11
11
|
"""
|
12
|
-
An OpenAPI specification of a
|
12
|
+
An OpenAPI specification of a property with type 'string'
|
13
13
|
"""
|
14
14
|
|
15
15
|
min_length: typing.Optional[int] = None
|
@@ -1,8 +1,8 @@
|
|
1
|
-
vellum/__init__.py,sha256=
|
1
|
+
vellum/__init__.py,sha256=WSiaCxloCf8VJlJ03KLPJKY-YJQ4U6gfbcCWKtdlJNs,50185
|
2
2
|
vellum/client.py,sha256=FEelOptuh8ylBnqSznSXvIUj2LWGTEPDTPrK5sgQkSE,83651
|
3
3
|
vellum/core/__init__.py,sha256=UFXpYzcGxWQUucU1TkjOQ9mGWN3A5JohluOIWVYKU4I,973
|
4
4
|
vellum/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
-
vellum/core/client_wrapper.py,sha256=
|
5
|
+
vellum/core/client_wrapper.py,sha256=QxEeVkCA-x_SymC6ESe3_YtByZuiPAaCI20zpkLl7oI,1874
|
6
6
|
vellum/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
vellum/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
8
8
|
vellum/core/http_client.py,sha256=46CyqS5Y8MwWTclAXnb1z5-ODJfwfHYbyhvjhb7RY1c,18753
|
@@ -41,7 +41,7 @@ vellum/resources/documents/client.py,sha256=lrRR9wp5nnMnENycYm-FrWwKIy7tKrfpHQ5L
|
|
41
41
|
vellum/resources/folder_entities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
42
42
|
vellum/resources/folder_entities/client.py,sha256=EZ_RjrB87rPLoaqNC44Dkrhp7aWEqEqI2pm5bekMqLw,4359
|
43
43
|
vellum/resources/ml_models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
44
|
-
vellum/resources/ml_models/client.py,sha256=
|
44
|
+
vellum/resources/ml_models/client.py,sha256=HB0Zto_rnewdLsu9LHjPv5AH-mitcAVWsPCWJxB9e4o,28856
|
45
45
|
vellum/resources/sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
46
46
|
vellum/resources/sandboxes/client.py,sha256=Vn80xkXWKZ8llBQSSoSqs9NU62mP1BBpNxgRBpDdLy8,15204
|
47
47
|
vellum/resources/test_suite_runs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
@@ -54,16 +54,18 @@ vellum/resources/workflow_deployments/types/__init__.py,sha256=rmS_4dtbgLHGNQJ_p
|
|
54
54
|
vellum/resources/workflow_deployments/types/workflow_deployments_list_request_status.py,sha256=FXVkVmGM6DZ2RpTGnZXWJYiVlLQ-K5fDtX3WMaBPaWk,182
|
55
55
|
vellum/resources/workflow_sandboxes/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
56
56
|
vellum/resources/workflow_sandboxes/client.py,sha256=5eMacE24Tkqn5IONuXyzx3I7ePkyEqDA_97PJdaWz4I,7077
|
57
|
-
vellum/terraform/__init__.py,sha256=
|
57
|
+
vellum/terraform/__init__.py,sha256=CxzT0rkV9cXwAtxZ3gv46DCRt9vBl_Sx1SOj5MJtl0Y,498
|
58
58
|
vellum/terraform/_jsii/__init__.py,sha256=AV9B1-EC-DQ2MSTWojcpbHjahvoZxNaYeZ6aCi5SXEQ,473
|
59
|
-
vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz,sha256=
|
59
|
+
vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz,sha256=igWevhMxZD8GCX4KWzOG3vfQFDj5ic91sNmj2uFVwow,32056
|
60
60
|
vellum/terraform/constraints.json,sha256=Pu3woy48d9csejER37XDbOVFvXUb9m9UrX4jFRUcilQ,43
|
61
|
-
vellum/terraform/data_vellum_document_index/__init__.py,sha256=
|
62
|
-
vellum/terraform/
|
63
|
-
vellum/terraform/
|
61
|
+
vellum/terraform/data_vellum_document_index/__init__.py,sha256=azU5hORjTHHLjzxs9eIX_Rp9lQ8yjLFxKACdP7VfidU,21484
|
62
|
+
vellum/terraform/data_vellum_ml_model/__init__.py,sha256=o-QnNhRvjp0qmVnKQVqr_2libGZwkRDBSkS8m_61JdM,21228
|
63
|
+
vellum/terraform/document_index/__init__.py,sha256=Inu_vUE6BBpYMgstvjNs3MTFJxEouOHl4hFw81YqtdA,25018
|
64
|
+
vellum/terraform/ml_model/__init__.py,sha256=I8h1Ru-Rb-Hi_HusK6G7nJQZEKQGsAAHMmw4ZApcZwM,40294
|
65
|
+
vellum/terraform/provider/__init__.py,sha256=-06xKmAmknpohVzw5TD-t1bnUHta8OrQYqvMd04XM-U,12684
|
64
66
|
vellum/terraform/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
65
|
-
vellum/terraform/versions.json,sha256=
|
66
|
-
vellum/types/__init__.py,sha256=
|
67
|
+
vellum/terraform/versions.json,sha256=45c7jjRD5i4w9DJQHs5ZqLLVXRnQwP9Rirq3mWY-xEo,56
|
68
|
+
vellum/types/__init__.py,sha256=wmq6GHqA4E4NXuAfsDVu6d__t89XMWE6gknyRz2Fr4k,66945
|
67
69
|
vellum/types/add_openai_api_key_enum.py,sha256=GB7sLK_Ou7-Xn73sKJHUo6Gx3TjyhU7uJvWZAg4UeaI,92
|
68
70
|
vellum/types/api_node_result.py,sha256=H25_pCtZ9xT6GTbQG1Gae89yjK-45yKipSLNqfc2PTk,1246
|
69
71
|
vellum/types/api_node_result_data.py,sha256=1MIuC_rN_4ul7PQVWPbQySrLKzwwVb5sjXO6G6v13z4,1424
|
@@ -196,12 +198,12 @@ vellum/types/metadata_filter_rule_request.py,sha256=wmavl7ehQ-7KuLLV8oR8G_yOwYNB
|
|
196
198
|
vellum/types/metric_node_result.py,sha256=6svCJQnyc5X8W-LBWHe5tRGnH3mmpVIwJiIFYrBSu8U,1170
|
197
199
|
vellum/types/ml_model_developer.py,sha256=W7-VLqym4IJ_ZokaHjItz3RTo8SSmjJ3c1CLxMrRUnc,509
|
198
200
|
vellum/types/ml_model_developer_enum_value_label.py,sha256=cfkbgrS3oJuhhIPQmWBOqqs7U6FYt6iWN2jtCXz8zWE,1208
|
199
|
-
vellum/types/ml_model_display_config_labelled.py,sha256=
|
200
|
-
vellum/types/ml_model_display_config_request.py,sha256=
|
201
|
+
vellum/types/ml_model_display_config_labelled.py,sha256=8NYOmt0L0Lc8YBmEhdjmWHD_FZjGE8MHsPVWjoPrBNo,1449
|
202
|
+
vellum/types/ml_model_display_config_request.py,sha256=QZbFrQIg8c9ULt8uwxa9aMiBxKwSxIA7CFVFx9i61Cc,1403
|
201
203
|
vellum/types/ml_model_display_tag.py,sha256=mvxWDmFB7nxMiO9f9XEueWoXL3YmkPfqvroDVzVXNyE,229
|
202
204
|
vellum/types/ml_model_display_tag_enum_value_label.py,sha256=r8_Nxz3TOBcEhWmVVgCbrI0h2x85Q8RsGA-TLZOBBe0,1213
|
203
|
-
vellum/types/ml_model_exec_config.py,sha256=
|
204
|
-
vellum/types/ml_model_exec_config_request.py,sha256=
|
205
|
+
vellum/types/ml_model_exec_config.py,sha256=tLvKERlF034VgkUS02MKZ5DyAE6MkcLPx3jMnCWjlcg,1819
|
206
|
+
vellum/types/ml_model_exec_config_request.py,sha256=6q5cCMwoWI9_uXAtVoff0R-Nan4Mc_q7cuqm8Y5JV8M,1892
|
205
207
|
vellum/types/ml_model_family.py,sha256=96a6cigZeoGoM4VLvwvSmIKnEVBAI8RsW7xaS3EZZDI,513
|
206
208
|
vellum/types/ml_model_family_enum_value_label.py,sha256=ldXOZN0ZV277Q9qSjli3kJJ47ozzDe50d1DanB_l9v4,1196
|
207
209
|
vellum/types/ml_model_feature.py,sha256=s3DTCKk5m8MBdVV4-gHGe3Oj4B38fS6I1LLj8pps4Lo,441
|
@@ -271,24 +273,26 @@ vellum/types/open_ai_vectorizer_text_embedding_3_small.py,sha256=KQB1peq6UW_Mh_8
|
|
271
273
|
vellum/types/open_ai_vectorizer_text_embedding_3_small_request.py,sha256=vYL0Od7bEiCdoTgNatr0ilu1DHJiW_1hFVNdPWzaXHQ,1314
|
272
274
|
vellum/types/open_ai_vectorizer_text_embedding_ada_002.py,sha256=Emh6qBhrfIKthnnmiv5MrGMvEnK-S1hF7ZyxL3o5ho4,1285
|
273
275
|
vellum/types/open_ai_vectorizer_text_embedding_ada_002_request.py,sha256=X5159JwHZVtuoifSImStj-cVVpgsXeUu_NahL9SHLV8,1314
|
274
|
-
vellum/types/open_api_array_property.py,sha256=
|
275
|
-
vellum/types/open_api_array_property_request.py,sha256=
|
276
|
-
vellum/types/open_api_boolean_property.py,sha256=
|
277
|
-
vellum/types/open_api_boolean_property_request.py,sha256=
|
278
|
-
vellum/types/open_api_const_property.py,sha256=
|
279
|
-
vellum/types/open_api_const_property_request.py,sha256=
|
280
|
-
vellum/types/open_api_integer_property.py,sha256=
|
281
|
-
vellum/types/open_api_integer_property_request.py,sha256=
|
282
|
-
vellum/types/open_api_number_property.py,sha256=
|
283
|
-
vellum/types/open_api_number_property_request.py,sha256=
|
284
|
-
vellum/types/open_api_object_property.py,sha256=
|
285
|
-
vellum/types/open_api_object_property_request.py,sha256=
|
286
|
-
vellum/types/open_api_one_of_property.py,sha256=
|
287
|
-
vellum/types/open_api_one_of_property_request.py,sha256=
|
288
|
-
vellum/types/open_api_property.py,sha256=
|
289
|
-
vellum/types/open_api_property_request.py,sha256=
|
290
|
-
vellum/types/
|
291
|
-
vellum/types/
|
276
|
+
vellum/types/open_api_array_property.py,sha256=SY2l1tJ1USQxp25cxeGxUKjm1XvZFPQq5knzPVT6HK8,1849
|
277
|
+
vellum/types/open_api_array_property_request.py,sha256=GJ_JvSoSMFcosX57bnRZgxDXmlopHQGo6gxR-941OT0,1899
|
278
|
+
vellum/types/open_api_boolean_property.py,sha256=Z5eP7po3_Y_AFOhYyVF_nbionh5rU_m8QHdBUYfYoI8,1314
|
279
|
+
vellum/types/open_api_boolean_property_request.py,sha256=RdUHvHGjyVPqlorJwcckr8qrzzu0W2DyrS9DqIz_nbU,1321
|
280
|
+
vellum/types/open_api_const_property.py,sha256=SFVp5YtJjEm6W7TD8bC0k3kLtyqRV5wqeU76wHAa05s,1283
|
281
|
+
vellum/types/open_api_const_property_request.py,sha256=7saue0PIBVFCcP-AeXoynazOPaeuB9FkuQGkXTVLZQ4,1290
|
282
|
+
vellum/types/open_api_integer_property.py,sha256=efNgsXqr8BmNBONTmcmGSwWc9cmdlcebbLkx6RHaPKI,1499
|
283
|
+
vellum/types/open_api_integer_property_request.py,sha256=wVNoySSg77RtdpvEeWZE9Bj6762VCguC1nfHSXihxdA,1506
|
284
|
+
vellum/types/open_api_number_property.py,sha256=WMTQRT_M1QWA9TPiBwyA0WvPaEnPONlSD7UTEd0fsLg,1543
|
285
|
+
vellum/types/open_api_number_property_request.py,sha256=nd6JChsuY1b6YJtv9XoGUY1_FImGDxU2-HZbqjXKjSc,1550
|
286
|
+
vellum/types/open_api_object_property.py,sha256=YXciDNQpeyPg-zRVYXZI1DS6jJo4jIxogIStgMJUjfA,1948
|
287
|
+
vellum/types/open_api_object_property_request.py,sha256=KXvT4xYC7gcmj9qSPdzmtrDPt2czJkkHgsIXjFbHLHc,2005
|
288
|
+
vellum/types/open_api_one_of_property.py,sha256=jSLLY-nXRkY3AcDy5pbpnfB0IekdtFdeR9laXIsEJd4,1565
|
289
|
+
vellum/types/open_api_one_of_property_request.py,sha256=H-r2PYcgLNrXKgv5aunsd35bTmISqg3Y_lDyHZaWgBQ,1601
|
290
|
+
vellum/types/open_api_property.py,sha256=9ZGTfCautNzT1jOMe03PRxkywvZpbuq9Q3Q4poNf6PM,11500
|
291
|
+
vellum/types/open_api_property_request.py,sha256=bMRmFensolc9A8_diaHUAztMlhNEZgQ836Bp8ikBDMk,11689
|
292
|
+
vellum/types/open_api_ref_property.py,sha256=e2b3a2zPTA1MRrm6fVYSerZlwtagoECqnOqCarixsCs,1303
|
293
|
+
vellum/types/open_api_ref_property_request.py,sha256=v2nzMLxyxdnjLxEAfBaNUALnd-oCkegzNt7kJdM-R8I,1310
|
294
|
+
vellum/types/open_api_string_property.py,sha256=GGbug7AmyoUO6qcw3DrXorw1bwAT5EjI7mh59r1b07M,1480
|
295
|
+
vellum/types/open_api_string_property_request.py,sha256=fQ7jckHjjZak3pYHhNKD8ezIlXfm7IYoNrsddEr3yiE,1487
|
292
296
|
vellum/types/paginated_document_index_read_list.py,sha256=5VvTenBN6VtwoT0f0NrKSarhJT1hBl_lOBVExWMtGgQ,1354
|
293
297
|
vellum/types/paginated_ml_model_read_list.py,sha256=zgNxt2XdS8-NOqJWLuhJB0-VKU_oCxgFRxaDcQCSx9I,1330
|
294
298
|
vellum/types/paginated_slim_deployment_read_list.py,sha256=Fdc65RHA1vsIKES80K2VZryxa6V663WVequZqjwno_4,1358
|
@@ -496,7 +500,7 @@ vellum/types/workflow_result_event_output_data_search_results.py,sha256=_C4ueKK8
|
|
496
500
|
vellum/types/workflow_result_event_output_data_string.py,sha256=AAWHZT3X9HOIRA3UuIqw0VpfSGwGemsJM71WDNbWYTc,1745
|
497
501
|
vellum/types/workflow_stream_event.py,sha256=5K-Mtn9fvJDq8m5nhURDbChL01PXIiuIZDkfAC1d6fU,2610
|
498
502
|
vellum/version.py,sha256=neLt8HBHHUtDF9M5fsyUzHT-pKooEPvceaLDqqIGb0s,77
|
499
|
-
vellum_ai-0.7.
|
500
|
-
vellum_ai-0.7.
|
501
|
-
vellum_ai-0.7.
|
502
|
-
vellum_ai-0.7.
|
503
|
+
vellum_ai-0.7.10.dist-info/LICENSE,sha256=CcaljEIoOBaU-wItPH4PmM_mDCGpyuUY0Er1BGu5Ti8,1073
|
504
|
+
vellum_ai-0.7.10.dist-info/METADATA,sha256=YOJMr6C9gKrN8iGQkmbUkHVcRH1IX8W4E5nyHGeMLZc,4399
|
505
|
+
vellum_ai-0.7.10.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
506
|
+
vellum_ai-0.7.10.dist-info/RECORD,,
|
File without changes
|