dyff-schema 0.25.0__py3-none-any.whl → 0.26.0__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.
Potentially problematic release.
This version of dyff-schema might be problematic. Click here for more details.
- dyff/schema/v0/r1/base.py +20 -0
- dyff/schema/v0/r1/commands.py +105 -9
- dyff/schema/v0/r1/platform.py +43 -26
- {dyff_schema-0.25.0.dist-info → dyff_schema-0.26.0.dist-info}/METADATA +1 -1
- {dyff_schema-0.25.0.dist-info → dyff_schema-0.26.0.dist-info}/RECORD +9 -9
- {dyff_schema-0.25.0.dist-info → dyff_schema-0.26.0.dist-info}/WHEEL +1 -1
- {dyff_schema-0.25.0.dist-info → dyff_schema-0.26.0.dist-info}/LICENSE +0 -0
- {dyff_schema-0.25.0.dist-info → dyff_schema-0.26.0.dist-info}/NOTICE +0 -0
- {dyff_schema-0.25.0.dist-info → dyff_schema-0.26.0.dist-info}/top_level.txt +0 -0
dyff/schema/v0/r1/base.py
CHANGED
|
@@ -561,6 +561,25 @@ def list_(
|
|
|
561
561
|
return pydantic.conlist(item_type, min_items=list_size, max_items=list_size)
|
|
562
562
|
|
|
563
563
|
|
|
564
|
+
class Null:
|
|
565
|
+
"""Use this type in a Union to make Pydantic generate a JSON Schema that accepts
|
|
566
|
+
'null' for the field value."""
|
|
567
|
+
|
|
568
|
+
@classmethod
|
|
569
|
+
def __get_validators__(cls): # -> Generator[Callable, None, None]:
|
|
570
|
+
yield cls.validate
|
|
571
|
+
|
|
572
|
+
@classmethod
|
|
573
|
+
def validate(cls, value: Any, field: pydantic.fields.ModelField) -> None:
|
|
574
|
+
if value is not None:
|
|
575
|
+
raise ValueError()
|
|
576
|
+
return None
|
|
577
|
+
|
|
578
|
+
@classmethod
|
|
579
|
+
def __modify_schema__(cls, field_schema: dict[str, Any]) -> None:
|
|
580
|
+
field_schema["type"] = "null"
|
|
581
|
+
|
|
582
|
+
|
|
564
583
|
# mypy gets confused because 'dict' is the name of a method in DyffBaseModel
|
|
565
584
|
_ModelAsDict = dict[str, Any]
|
|
566
585
|
|
|
@@ -649,6 +668,7 @@ __all__ = [
|
|
|
649
668
|
"Int16",
|
|
650
669
|
"Int32",
|
|
651
670
|
"Int64",
|
|
671
|
+
"Null",
|
|
652
672
|
"UInt8",
|
|
653
673
|
"UInt16",
|
|
654
674
|
"UInt32",
|
dyff/schema/v0/r1/commands.py
CHANGED
|
@@ -7,18 +7,23 @@ These are used internally by the platform and users typically won't encounter th
|
|
|
7
7
|
|
|
8
8
|
from __future__ import annotations
|
|
9
9
|
|
|
10
|
-
from typing import Any, Literal, Union
|
|
10
|
+
from typing import Any, Literal, Optional, Union
|
|
11
11
|
|
|
12
12
|
import pydantic
|
|
13
13
|
|
|
14
|
-
from .base import DyffSchemaBaseModel
|
|
14
|
+
from .base import DyffSchemaBaseModel, Null
|
|
15
15
|
from .platform import (
|
|
16
|
-
Documented,
|
|
17
16
|
DyffEntityType,
|
|
18
17
|
EntityKindLiteral,
|
|
18
|
+
FamilyMember,
|
|
19
19
|
FamilyMembers,
|
|
20
|
-
|
|
20
|
+
LabelKeyType,
|
|
21
|
+
LabelValueType,
|
|
22
|
+
SchemaVersion,
|
|
21
23
|
Status,
|
|
24
|
+
TagNameType,
|
|
25
|
+
summary_maxlen,
|
|
26
|
+
title_maxlen,
|
|
22
27
|
)
|
|
23
28
|
|
|
24
29
|
# ----------------------------------------------------------------------------
|
|
@@ -46,14 +51,13 @@ class FamilyIdentifier(EntityIdentifier):
|
|
|
46
51
|
kind: Literal["Family"] = "Family"
|
|
47
52
|
|
|
48
53
|
|
|
49
|
-
class Command(
|
|
54
|
+
class Command(SchemaVersion):
|
|
50
55
|
"""Base class for Command messages.
|
|
51
56
|
|
|
52
57
|
Commands define the API of the "command model" in our CQRS architecture.
|
|
53
58
|
"""
|
|
54
59
|
|
|
55
60
|
command: Literal[
|
|
56
|
-
"AppendRevisionToHistory",
|
|
57
61
|
"CreateEntity",
|
|
58
62
|
"EditEntityDocumentation",
|
|
59
63
|
"EditEntityLabels",
|
|
@@ -90,9 +94,50 @@ class CreateEntity(Command):
|
|
|
90
94
|
# ----------------------------------------------------------------------------
|
|
91
95
|
|
|
92
96
|
|
|
93
|
-
class
|
|
97
|
+
class EditEntityDocumentationPatch(DyffSchemaBaseModel):
|
|
98
|
+
"""Same properties as DocumentationBase, but generates a JSON Schema that allows
|
|
99
|
+
fields to be set to JSON 'null'.
|
|
100
|
+
|
|
101
|
+
This is needed to get JSON Merge Patch semantics, where explicit 'null' means
|
|
102
|
+
"delete that field".
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
title: Optional[Union[pydantic.constr(max_length=title_maxlen()), Null]] = ( # type: ignore
|
|
106
|
+
pydantic.Field(
|
|
107
|
+
default=None,
|
|
108
|
+
description='A short plain string suitable as a title or "headline".',
|
|
109
|
+
)
|
|
110
|
+
)
|
|
111
|
+
|
|
112
|
+
summary: Optional[Union[pydantic.constr(max_length=summary_maxlen()), Null]] = ( # type: ignore
|
|
113
|
+
pydantic.Field(
|
|
114
|
+
default=None,
|
|
115
|
+
description="A brief summary, suitable for display in"
|
|
116
|
+
" small UI elements. Interpreted as Markdown. Excessively long"
|
|
117
|
+
" summaries may be truncated in the UI, especially on small displays.",
|
|
118
|
+
)
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
fullPage: Optional[Union[str, Null]] = pydantic.Field(
|
|
122
|
+
default=None,
|
|
123
|
+
description="Long-form documentation. Interpreted as"
|
|
124
|
+
" Markdown. There are no length constraints, but be reasonable.",
|
|
125
|
+
)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
class EditEntityDocumentationAttributes(DyffSchemaBaseModel):
|
|
129
|
+
documentation: EditEntityDocumentationPatch = pydantic.Field(
|
|
130
|
+
description="Edits to make to the documentation."
|
|
131
|
+
)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
class EditEntityDocumentationData(EntityIdentifier):
|
|
94
135
|
"""Payload data for the EditEntityDocumentation command."""
|
|
95
136
|
|
|
137
|
+
attributes: EditEntityDocumentationAttributes = pydantic.Field(
|
|
138
|
+
description="The command attributes"
|
|
139
|
+
)
|
|
140
|
+
|
|
96
141
|
|
|
97
142
|
class EditEntityDocumentation(Command):
|
|
98
143
|
"""Edit the documentation associated with an entity.
|
|
@@ -109,9 +154,29 @@ class EditEntityDocumentation(Command):
|
|
|
109
154
|
# ----------------------------------------------------------------------------
|
|
110
155
|
|
|
111
156
|
|
|
112
|
-
class
|
|
157
|
+
class EditEntityLabelsAttributes(DyffSchemaBaseModel):
|
|
158
|
+
labels: dict[LabelKeyType, Optional[Union[LabelValueType, Null]]] = pydantic.Field(
|
|
159
|
+
default_factory=dict,
|
|
160
|
+
description="A set of key-value labels for the resource. Used to"
|
|
161
|
+
" specify identifying attributes of resources that are meaningful to"
|
|
162
|
+
" users but do not imply semantics in the dyff system.\n\n"
|
|
163
|
+
"The keys are DNS labels with an optional DNS domain prefix."
|
|
164
|
+
" For example: 'my-key', 'your.com/key_0'. Keys prefixed with"
|
|
165
|
+
" 'dyff.io/', 'subdomain.dyff.io/', etc. are reserved.\n\n"
|
|
166
|
+
"The label values are alphanumeric characters separated by"
|
|
167
|
+
" '.', '-', or '_'.\n\n"
|
|
168
|
+
"We follow the kubernetes label conventions closely."
|
|
169
|
+
" See: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
|
|
170
|
+
)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
class EditEntityLabelsData(EntityIdentifier):
|
|
113
174
|
"""Payload data for the EditEntityLabels command."""
|
|
114
175
|
|
|
176
|
+
attributes: EditEntityLabelsAttributes = pydantic.Field(
|
|
177
|
+
description="The command attributes"
|
|
178
|
+
)
|
|
179
|
+
|
|
115
180
|
|
|
116
181
|
class EditEntityLabels(Command):
|
|
117
182
|
"""Edit the labels associated with an entity.
|
|
@@ -128,9 +193,21 @@ class EditEntityLabels(Command):
|
|
|
128
193
|
# ----------------------------------------------------------------------------
|
|
129
194
|
|
|
130
195
|
|
|
196
|
+
class EditFamilyMembersAttributes(DyffSchemaBaseModel):
|
|
197
|
+
"""Payload data for the EditFamilyMembers command."""
|
|
198
|
+
|
|
199
|
+
members: dict[TagNameType, Optional[Union[FamilyMember, Null]]] = pydantic.Field(
|
|
200
|
+
description="Mapping of names to IDs of member resources.",
|
|
201
|
+
)
|
|
202
|
+
|
|
203
|
+
|
|
131
204
|
class EditFamilyMembersData(FamilyMembers, FamilyIdentifier):
|
|
132
205
|
"""Payload data for the EditFamilyMembers command."""
|
|
133
206
|
|
|
207
|
+
attributes: EditFamilyMembersAttributes = pydantic.Field(
|
|
208
|
+
description="The command attributes"
|
|
209
|
+
)
|
|
210
|
+
|
|
134
211
|
|
|
135
212
|
class EditFamilyMembers(Command):
|
|
136
213
|
"""Edit the labels associated with an entity.
|
|
@@ -158,9 +235,23 @@ class ForgetEntity(Command):
|
|
|
158
235
|
# ----------------------------------------------------------------------------
|
|
159
236
|
|
|
160
237
|
|
|
161
|
-
class
|
|
238
|
+
class UpdateEntityStatusAttributes(DyffSchemaBaseModel):
|
|
239
|
+
status: str = pydantic.Field(
|
|
240
|
+
description=Status.__fields__["status"].field_info.description
|
|
241
|
+
)
|
|
242
|
+
|
|
243
|
+
reason: Union[str, Null] = pydantic.Field(
|
|
244
|
+
description=Status.__fields__["reason"].field_info.description
|
|
245
|
+
)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
class UpdateEntityStatusData(EntityIdentifier):
|
|
162
249
|
"""Payload data for the UpdateEntityStatus command."""
|
|
163
250
|
|
|
251
|
+
attributes: UpdateEntityStatusAttributes = pydantic.Field(
|
|
252
|
+
description="The command attributes"
|
|
253
|
+
)
|
|
254
|
+
|
|
164
255
|
|
|
165
256
|
class UpdateEntityStatus(Command):
|
|
166
257
|
"""Update the status fields of an entity."""
|
|
@@ -188,14 +279,19 @@ __all__ = [
|
|
|
188
279
|
"CreateEntity",
|
|
189
280
|
"DyffCommandType",
|
|
190
281
|
"EditEntityDocumentation",
|
|
282
|
+
"EditEntityDocumentationAttributes",
|
|
191
283
|
"EditEntityDocumentationData",
|
|
284
|
+
"EditEntityDocumentationPatch",
|
|
192
285
|
"EditEntityLabels",
|
|
286
|
+
"EditEntityLabelsAttributes",
|
|
193
287
|
"EditEntityLabelsData",
|
|
194
288
|
"EditFamilyMembers",
|
|
289
|
+
"EditFamilyMembersAttributes",
|
|
195
290
|
"EditFamilyMembersData",
|
|
196
291
|
"EntityIdentifier",
|
|
197
292
|
"FamilyIdentifier",
|
|
198
293
|
"ForgetEntity",
|
|
199
294
|
"UpdateEntityStatus",
|
|
295
|
+
"UpdateEntityStatusAttributes",
|
|
200
296
|
"UpdateEntityStatusData",
|
|
201
297
|
]
|
dyff/schema/v0/r1/platform.py
CHANGED
|
@@ -291,21 +291,29 @@ class DyffModelWithID(DyffSchemaBaseModel):
|
|
|
291
291
|
account: str = pydantic.Field(description="Account that owns the entity")
|
|
292
292
|
|
|
293
293
|
|
|
294
|
-
LabelKey
|
|
295
|
-
|
|
296
|
-
)
|
|
294
|
+
def LabelKey() -> type[str]:
|
|
295
|
+
return pydantic.constr(
|
|
296
|
+
regex=_k8s_label_key_regex(), max_length=_k8s_label_key_maxlen()
|
|
297
|
+
)
|
|
297
298
|
|
|
298
299
|
|
|
299
|
-
LabelValue
|
|
300
|
-
pydantic.constr( # type: ignore
|
|
300
|
+
def LabelValue() -> type[str]:
|
|
301
|
+
return pydantic.constr( # type: ignore
|
|
301
302
|
regex=_k8s_label_value_regex(), max_length=_k8s_label_value_maxlen()
|
|
302
303
|
)
|
|
303
|
-
]
|
|
304
304
|
|
|
305
305
|
|
|
306
|
-
TagName
|
|
307
|
-
|
|
308
|
-
)
|
|
306
|
+
def TagName() -> type[str]:
|
|
307
|
+
return pydantic.constr( # type: ignore
|
|
308
|
+
regex=_oci_image_tag_regex(), max_length=_k8s_label_key_maxlen()
|
|
309
|
+
)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
LabelKeyType: TypeAlias = LabelKey() # type: ignore
|
|
313
|
+
|
|
314
|
+
LabelValueType: TypeAlias = LabelValue() # type: ignore
|
|
315
|
+
|
|
316
|
+
TagNameType: TypeAlias = TagName() # type: ignore
|
|
309
317
|
|
|
310
318
|
|
|
311
319
|
class Label(DyffSchemaBaseModel):
|
|
@@ -317,20 +325,20 @@ class Label(DyffSchemaBaseModel):
|
|
|
317
325
|
https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
|
|
318
326
|
"""
|
|
319
327
|
|
|
320
|
-
key:
|
|
328
|
+
key: LabelKeyType = pydantic.Field( # type: ignore
|
|
321
329
|
description="The label key is a DNS label with an optional DNS domain"
|
|
322
330
|
" prefix. For example: 'my-key', 'your.com/key_0'. Keys prefixed with"
|
|
323
331
|
" 'dyff.io/', 'subdomain.dyff.io/', etc. are reserved.",
|
|
324
332
|
)
|
|
325
333
|
|
|
326
|
-
value:
|
|
334
|
+
value: LabelValueType = pydantic.Field( # type: ignore
|
|
327
335
|
description="The label value consists of alphanumeric characters"
|
|
328
336
|
" separated by '.', '-', or '_'.",
|
|
329
337
|
)
|
|
330
338
|
|
|
331
339
|
|
|
332
340
|
class Labeled(DyffSchemaBaseModel):
|
|
333
|
-
labels: dict[
|
|
341
|
+
labels: dict[LabelKeyType, LabelValueType] = pydantic.Field( # type: ignore
|
|
334
342
|
default_factory=dict,
|
|
335
343
|
description="A set of key-value labels for the resource. Used to"
|
|
336
344
|
" specify identifying attributes of resources that are meaningful to"
|
|
@@ -372,7 +380,7 @@ class ServiceClass(str, enum.Enum):
|
|
|
372
380
|
|
|
373
381
|
|
|
374
382
|
class ResourceAllocation(DyffSchemaBaseModel):
|
|
375
|
-
quantities: dict[
|
|
383
|
+
quantities: dict[LabelKeyType, Quantity] = pydantic.Field( # type: ignore
|
|
376
384
|
default_factory=dict,
|
|
377
385
|
description="Mapping of resource keys to quantities to be allocated.",
|
|
378
386
|
)
|
|
@@ -382,7 +390,7 @@ class ResourceAllocation(DyffSchemaBaseModel):
|
|
|
382
390
|
|
|
383
391
|
class Status(DyffSchemaBaseModel):
|
|
384
392
|
status: str = pydantic.Field(
|
|
385
|
-
|
|
393
|
+
description="Top-level resource status (assigned by system)"
|
|
386
394
|
)
|
|
387
395
|
|
|
388
396
|
reason: Optional[str] = pydantic.Field(
|
|
@@ -441,6 +449,12 @@ class DyffEntityMetadata(DyffSchemaBaseModel):
|
|
|
441
449
|
description="Unique identifier of the current revision of the entity.",
|
|
442
450
|
)
|
|
443
451
|
|
|
452
|
+
documentation: Optional[DocumentationBase] = pydantic.Field(
|
|
453
|
+
default_factory=DocumentationBase,
|
|
454
|
+
description="Documentation of the resource. The content is used to"
|
|
455
|
+
" populate various views in the web UI.",
|
|
456
|
+
)
|
|
457
|
+
|
|
444
458
|
|
|
445
459
|
class DyffEntity(Status, Labeled, SchemaVersion, DyffModelWithID):
|
|
446
460
|
kind: Literal[
|
|
@@ -668,7 +682,7 @@ class FamilyMemberKind(str, enum.Enum):
|
|
|
668
682
|
|
|
669
683
|
|
|
670
684
|
class FamilyMemberBase(DyffSchemaBaseModel):
|
|
671
|
-
name:
|
|
685
|
+
name: TagNameType = pydantic.Field(
|
|
672
686
|
description="An interpretable identifier for the member that is unique"
|
|
673
687
|
" in the context of the corresponding Family.",
|
|
674
688
|
)
|
|
@@ -696,7 +710,7 @@ class FamilyMember(FamilyMemberBase):
|
|
|
696
710
|
|
|
697
711
|
|
|
698
712
|
class FamilyMembers(DyffSchemaBaseModel):
|
|
699
|
-
members: dict[
|
|
713
|
+
members: dict[TagNameType, FamilyMember] = pydantic.Field(
|
|
700
714
|
default_factory=dict,
|
|
701
715
|
description="Mapping of names to IDs of member resources.",
|
|
702
716
|
)
|
|
@@ -711,12 +725,6 @@ class FamilyBase(DyffSchemaBaseModel):
|
|
|
711
725
|
class Family(DyffEntity, FamilyBase, FamilyMembers):
|
|
712
726
|
kind: Literal["Family"] = "Family"
|
|
713
727
|
|
|
714
|
-
documentation: DocumentationBase = pydantic.Field(
|
|
715
|
-
default_factory=DocumentationBase,
|
|
716
|
-
description="Documentation of the resource family. The content is used"
|
|
717
|
-
" to populate various views in the web UI.",
|
|
718
|
-
)
|
|
719
|
-
|
|
720
728
|
|
|
721
729
|
class RevisionMetadata(DyffSchemaBaseModel):
|
|
722
730
|
previousRevision: Optional[str] = pydantic.Field(
|
|
@@ -1207,7 +1215,7 @@ class ContainerImageSource(DyffSchemaBaseModel):
|
|
|
1207
1215
|
" digest, even if 'tag' is specified.",
|
|
1208
1216
|
regex=r"^sha256:[0-9a-f]{64}$",
|
|
1209
1217
|
)
|
|
1210
|
-
tag: Optional[
|
|
1218
|
+
tag: Optional[TagNameType] = pydantic.Field(
|
|
1211
1219
|
default=None,
|
|
1212
1220
|
description="The tag of the image. Although the image is always pulled"
|
|
1213
1221
|
" by digest, including the tag is strongly recommended as it is often"
|
|
@@ -2351,7 +2359,7 @@ _DyffEntityTypeRevisable = Union[
|
|
|
2351
2359
|
]
|
|
2352
2360
|
|
|
2353
2361
|
|
|
2354
|
-
class
|
|
2362
|
+
class RevisionData(DyffSchemaBaseModel):
|
|
2355
2363
|
format: Literal["Snapshot", "JsonMergePatch"]
|
|
2356
2364
|
snapshot: Optional[_DyffEntityTypeRevisable] = pydantic.Field(
|
|
2357
2365
|
default=None, description="A full snapshot of the entity."
|
|
@@ -2388,10 +2396,16 @@ class Revision(DyffEntity, RevisionMetadata):
|
|
|
2388
2396
|
description="The ID of the entity that this is a revision of"
|
|
2389
2397
|
)
|
|
2390
2398
|
|
|
2391
|
-
|
|
2399
|
+
data: RevisionData = pydantic.Field(
|
|
2392
2400
|
description="The associated entity revision data",
|
|
2393
2401
|
)
|
|
2394
2402
|
|
|
2403
|
+
def dependencies(self) -> list[str]:
|
|
2404
|
+
return []
|
|
2405
|
+
|
|
2406
|
+
def resource_allocation(self) -> Optional[ResourceAllocation]:
|
|
2407
|
+
return None
|
|
2408
|
+
|
|
2395
2409
|
|
|
2396
2410
|
DyffEntityType = Union[_DyffEntityTypeRevisable, History, Revision]
|
|
2397
2411
|
|
|
@@ -2473,7 +2487,9 @@ __all__ = [
|
|
|
2473
2487
|
"InferenceSessionSpec",
|
|
2474
2488
|
"Label",
|
|
2475
2489
|
"LabelKey",
|
|
2490
|
+
"LabelKeyType",
|
|
2476
2491
|
"LabelValue",
|
|
2492
|
+
"LabelValueType",
|
|
2477
2493
|
"Labeled",
|
|
2478
2494
|
"Measurement",
|
|
2479
2495
|
"MeasurementLevel",
|
|
@@ -2512,7 +2528,7 @@ __all__ = [
|
|
|
2512
2528
|
"ReportBase",
|
|
2513
2529
|
"Resources",
|
|
2514
2530
|
"Revision",
|
|
2515
|
-
"
|
|
2531
|
+
"RevisionData",
|
|
2516
2532
|
"RevisionMetadata",
|
|
2517
2533
|
"Role",
|
|
2518
2534
|
"SafetyCase",
|
|
@@ -2526,6 +2542,7 @@ __all__ = [
|
|
|
2526
2542
|
"Status",
|
|
2527
2543
|
"StorageSignedURL",
|
|
2528
2544
|
"TagName",
|
|
2545
|
+
"TagNameType",
|
|
2529
2546
|
"TaskSchema",
|
|
2530
2547
|
"UseCase",
|
|
2531
2548
|
"entity_class",
|
|
@@ -24,9 +24,9 @@ dyff/schema/io/vllm.py,sha256=2q05M_-lTzq9oywKXHPPpCFCSDVCSsRQqtmERzWTtio,123
|
|
|
24
24
|
dyff/schema/v0/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
|
|
25
25
|
dyff/schema/v0/r1/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
|
|
26
26
|
dyff/schema/v0/r1/adapters.py,sha256=dmQS2ecgDX4ZvTMOW-6NzV_Oq_UpaiyFd7QnSNoOnK8,33057
|
|
27
|
-
dyff/schema/v0/r1/base.py,sha256=
|
|
28
|
-
dyff/schema/v0/r1/commands.py,sha256=
|
|
29
|
-
dyff/schema/v0/r1/platform.py,sha256=
|
|
27
|
+
dyff/schema/v0/r1/base.py,sha256=OW05Wn2ZHBpeutj2sx93jcD1cz4kLzRvRZ_y2dS53lo,20206
|
|
28
|
+
dyff/schema/v0/r1/commands.py,sha256=GUeD5wx-ZkfqLpQa6iI4joq_AVTxR1gFvmluA9AZ1G4,9136
|
|
29
|
+
dyff/schema/v0/r1/platform.py,sha256=ndOu5kOfkQOjfFQ0bX8sp0IvMO1xcVMmpWU0LMQeS88,80754
|
|
30
30
|
dyff/schema/v0/r1/requests.py,sha256=4TM1IKG9IP4MyprIy9E9XA_JqvkuwKAuY1ao1BbVLI0,15676
|
|
31
31
|
dyff/schema/v0/r1/test.py,sha256=X6dUyVd5svcPCI-PBMOAqEfK9jv3bRDvkQTJzwS96c0,10720
|
|
32
32
|
dyff/schema/v0/r1/version.py,sha256=isKAGuGxsdru8vDaYmI4YiZdJOu_wNxXK7u6QzD6FE4,392
|
|
@@ -39,9 +39,9 @@ dyff/schema/v0/r1/dataset/text.py,sha256=nLIn91Zlt0tNdXUklSgjJ-kEDxoPX32ISLkiv2D
|
|
|
39
39
|
dyff/schema/v0/r1/dataset/vision.py,sha256=aIe0fbfM_g3DsrDTdg2K803YKLjZBpurM_VJcJFuZLc,369
|
|
40
40
|
dyff/schema/v0/r1/io/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
|
|
41
41
|
dyff/schema/v0/r1/io/vllm.py,sha256=CUE9y8KthtUI7sD49S875rDmPvKotSXVIRaBS79aBZs,5320
|
|
42
|
-
dyff_schema-0.
|
|
43
|
-
dyff_schema-0.
|
|
44
|
-
dyff_schema-0.
|
|
45
|
-
dyff_schema-0.
|
|
46
|
-
dyff_schema-0.
|
|
47
|
-
dyff_schema-0.
|
|
42
|
+
dyff_schema-0.26.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
43
|
+
dyff_schema-0.26.0.dist-info/METADATA,sha256=FNMFyld3y1bRhDrQF8H9WILabZKxeo5zkazsLkCrnkU,3482
|
|
44
|
+
dyff_schema-0.26.0.dist-info/NOTICE,sha256=YONACu0s_Ui6jNi-wtEsVQbTU1JIkh8wvLH6d1-Ni_w,43
|
|
45
|
+
dyff_schema-0.26.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
46
|
+
dyff_schema-0.26.0.dist-info/top_level.txt,sha256=9e3VVdeX73t_sUJOPQPCcGtYO1JhoErhHIi3WoWGcFI,5
|
|
47
|
+
dyff_schema-0.26.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|