dyff-schema 0.38.6__py3-none-any.whl → 0.38.7__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.
dyff/schema/_version.py CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = version = "0.38.6"
2
- __version_tuple__ = version_tuple = (0, 38, 6)
1
+ __version__ = version = "0.38.7"
2
+ __version_tuple__ = version_tuple = (0, 38, 7)
@@ -2656,6 +2656,18 @@ class ChallengeTaskContent(DyffSchemaBaseModel):
2656
2656
  )
2657
2657
 
2658
2658
 
2659
+ class ChallengeSubmissionStructure(DyffSchemaBaseModel):
2660
+ submissionKind: EntityKindLiteral = pydantic.Field(
2661
+ default=Entities.InferenceService.value,
2662
+ description="The kind of entity that you can submit to this task.",
2663
+ )
2664
+ pipelineKeyword: str = pydantic.Field(
2665
+ default="submission",
2666
+ description="The keyword parameter where the submitted entity ID"
2667
+ " should be passed to the assessment Pipeline.",
2668
+ )
2669
+
2670
+
2659
2671
  class ChallengeTaskBase(DyffSchemaBaseModel):
2660
2672
  """The part of the ChallengeTask spec that is not system-populated."""
2661
2673
 
@@ -2669,7 +2681,11 @@ class ChallengeTaskBase(DyffSchemaBaseModel):
2669
2681
  pattern=r"[a-z0-9-]*",
2670
2682
  )
2671
2683
  assessment: str = pydantic.Field(
2672
- description="ID of the Assessment that the task runs."
2684
+ description="ID of the Pipeline used to assess the submission."
2685
+ )
2686
+ submissionStructure: ChallengeSubmissionStructure = pydantic.Field(
2687
+ default_factory=ChallengeSubmissionStructure,
2688
+ description="How to run the assessment pipeline on a new submission.",
2673
2689
  )
2674
2690
  rules: ChallengeTaskRules = pydantic.Field(description="The rules for submissions.")
2675
2691
  content: ChallengeTaskContent = pydantic.Field(
@@ -2729,7 +2745,14 @@ class Challenge(DyffEntity):
2729
2745
  return None
2730
2746
 
2731
2747
 
2732
- class ChallengeSubmission(DyffEntity):
2748
+ class ChallengeSubmissionBase(DyffSchemaBaseModel):
2749
+ team: str = pydantic.Field(description="The ID of the team making the submission.")
2750
+ submission: EntityIdentifier = pydantic.Field(
2751
+ description="The resource being submitted for assessment."
2752
+ )
2753
+
2754
+
2755
+ class ChallengeSubmission(DyffEntity, ChallengeSubmissionBase):
2733
2756
  """A submission of an inference system to a challenge by a team.
2734
2757
 
2735
2758
  All of the constituent resources must already exist. Creating a Submission simply
@@ -2746,9 +2769,8 @@ class ChallengeSubmission(DyffEntity):
2746
2769
  task: str = pydantic.Field(
2747
2770
  description="The key of the task within the challenge being submitted to."
2748
2771
  )
2749
- team: str = pydantic.Field(description="The ID of the team making the submission.")
2750
- inferenceService: str = pydantic.Field(
2751
- description="The ID of the inference service being submitted."
2772
+ pipelineRun: str = pydantic.Field(
2773
+ description="The ID of the PipelineRun for this submission."
2752
2774
  )
2753
2775
 
2754
2776
  def dependencies(self) -> list[str]:
@@ -3304,6 +3326,7 @@ __all__ = [
3304
3326
  "ChallengeContent",
3305
3327
  "ChallengeContentPage",
3306
3328
  "ChallengeSubmission",
3329
+ "ChallengeSubmissionBase",
3307
3330
  "ChallengeTask",
3308
3331
  "ChallengeTaskBase",
3309
3332
  "ChallengeTaskContent",
@@ -27,6 +27,7 @@ from .platform import (
27
27
  AnalysisRequestBase,
28
28
  AnalysisScope,
29
29
  ChallengeContent,
30
+ ChallengeSubmissionBase,
30
31
  ChallengeTaskBase,
31
32
  ConcernBase,
32
33
  DatasetBase,
@@ -148,6 +149,12 @@ class ChallengeCreateRequest(DyffEntityCreateRequest):
148
149
  )
149
150
 
150
151
 
152
+ class ChallengeSubmissionCreateRequest(
153
+ DyffEntityCreateRequest, ChallengeSubmissionBase
154
+ ):
155
+ pass
156
+
157
+
151
158
  class ChallengeTaskCreateRequest(DyffEntityCreateRequest, ChallengeTaskBase):
152
159
  pass
153
160
 
@@ -497,6 +504,7 @@ __all__ = [
497
504
  "ChallengeContentEditRequest",
498
505
  "ChallengeCreateRequest",
499
506
  "ChallengeQueryRequest",
507
+ "ChallengeSubmissionCreateRequest",
500
508
  "ChallengeTaskCreateRequest",
501
509
  "ChallengeTaskRulesEditRequest",
502
510
  "ChallengeTeamCreateRequest",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dyff-schema
3
- Version: 0.38.6
3
+ Version: 0.38.7
4
4
  Summary: Data models for the Dyff AI auditing platform.
5
5
  Author-email: Digital Safety Research Institute <contact@dsri.org>
6
6
  License: Apache-2.0
@@ -1,5 +1,5 @@
1
1
  dyff/schema/__init__.py,sha256=w7OWDFuyGKd6xt_yllNtKzHahPgywrfU4Ue02psYaMA,2244
2
- dyff/schema/_version.py,sha256=Kj9GP_7NUacasKg6ybcdwasvyMnqhCYPGnOrKFolAWQ,80
2
+ dyff/schema/_version.py,sha256=Lvo9jhPTm1HAF61xPJreSv-zBjPuoiu7427jQ9wl-7I,80
3
3
  dyff/schema/adapters.py,sha256=YMTHv_2VlLGFp-Kqwa6H51hjffHmk8gXjZilHysIF5Q,123
4
4
  dyff/schema/annotations.py,sha256=nE6Jk1PLqlShj8uqjE_EzZC9zYnTDW5AVtQcjysiK8M,10018
5
5
  dyff/schema/base.py,sha256=jvaNtsSZyFfsdUZTcY_U-yfLY5_GyrMxSXhON2R9XR0,119
@@ -29,8 +29,8 @@ dyff/schema/v0/r1/adapters.py,sha256=hpwCSW8lkMkUKCLe0zaMUDu-VS_caSxJvPsECEi_XRA
29
29
  dyff/schema/v0/r1/base.py,sha256=1VJXVLKldOq3aH2HdVgxXXk4DJTZEIiaTa4GzMKzziU,20228
30
30
  dyff/schema/v0/r1/commands.py,sha256=jqbEvDRLpcVGWXqlbniuSKg3UIjlrpKt6_0hiwUpPfQ,20153
31
31
  dyff/schema/v0/r1/oci.py,sha256=YjHDVBJ2IIxqijll70OK6pM-qT6pq8tvU7D3YB9vGM0,6700
32
- dyff/schema/v0/r1/platform.py,sha256=U5t-Giixi52_aWpDzZVrXfLSAmar1i2BoFA0mSstWtg,111220
33
- dyff/schema/v0/r1/requests.py,sha256=9fFUTv4Zgt5Dq2ueQRGjaBU-RxacNMrDZW40RMEwsIg,18414
32
+ dyff/schema/v0/r1/platform.py,sha256=oN2KgTYRvaAgUUiYi9JoY4n2OdrCq53Yx1SFTxLesvk,112123
33
+ dyff/schema/v0/r1/requests.py,sha256=k9T-xI2DDCjvCCmEg_kZ0M6yl_ZG6uh8rocWCLZLKFA,18590
34
34
  dyff/schema/v0/r1/responses.py,sha256=nxy7FPtfw2B_bljz5UGGuSE79HTkDQxKH56AJVmd4Qo,1287
35
35
  dyff/schema/v0/r1/test.py,sha256=X6dUyVd5svcPCI-PBMOAqEfK9jv3bRDvkQTJzwS96c0,10720
36
36
  dyff/schema/v0/r1/version.py,sha256=NONebgcv5Thsw_ymud6PacZdGjV6ndBrmLnap-obcpo,428
@@ -43,9 +43,9 @@ dyff/schema/v0/r1/dataset/text.py,sha256=MYG5seGODDryRSCy-g0Unh5dD0HCytmZ3FeElC-
43
43
  dyff/schema/v0/r1/dataset/vision.py,sha256=tJFF4dkhHX0UXTj1sPW-G22xTSI40gbYO465FuvmvAU,443
44
44
  dyff/schema/v0/r1/io/__init__.py,sha256=L5y8UhRnojerPYHumsxQJRcHCNz8Hj9NM8b47mewMNs,92
45
45
  dyff/schema/v0/r1/io/vllm.py,sha256=vWyLg-susbg0JDfv6VExBpgFdU2GHP2a14ChOdbckvs,5321
46
- dyff_schema-0.38.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
47
- dyff_schema-0.38.6.dist-info/licenses/NOTICE,sha256=YONACu0s_Ui6jNi-wtEsVQbTU1JIkh8wvLH6d1-Ni_w,43
48
- dyff_schema-0.38.6.dist-info/METADATA,sha256=f8TUmKB1WVBTwptV_BrVgMVovyNT8WTYX_Fyci1urEQ,3734
49
- dyff_schema-0.38.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
50
- dyff_schema-0.38.6.dist-info/top_level.txt,sha256=9e3VVdeX73t_sUJOPQPCcGtYO1JhoErhHIi3WoWGcFI,5
51
- dyff_schema-0.38.6.dist-info/RECORD,,
46
+ dyff_schema-0.38.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
47
+ dyff_schema-0.38.7.dist-info/licenses/NOTICE,sha256=YONACu0s_Ui6jNi-wtEsVQbTU1JIkh8wvLH6d1-Ni_w,43
48
+ dyff_schema-0.38.7.dist-info/METADATA,sha256=H9nvnBlCZ6iJC6lm_jsLV5Zs9B8s5Qbq7R1JOhcd9Js,3734
49
+ dyff_schema-0.38.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
50
+ dyff_schema-0.38.7.dist-info/top_level.txt,sha256=9e3VVdeX73t_sUJOPQPCcGtYO1JhoErhHIi3WoWGcFI,5
51
+ dyff_schema-0.38.7.dist-info/RECORD,,