Skip to content

Commit

Permalink
Make length changes to CLI entities
Browse files Browse the repository at this point in the history
  • Loading branch information
aristizabal95 committed Aug 19, 2024
1 parent 78ec04f commit e9bdbf0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/medperf/entities/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Benchmark(Entity, Uploadable, MedperfSchema, ApprovableSchema, DeployableS
what models to run and how to evaluate them.
"""

description: Optional[str] = Field(None, max_length=20)
description: Optional[str] = Field(None, max_length=256)
docs_url: Optional[HttpUrl]
demo_dataset_tarball_url: str
demo_dataset_tarball_hash: Optional[str]
Expand Down
4 changes: 2 additions & 2 deletions cli/medperf/entities/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class Dataset(Entity, Uploadable, MedperfSchema, DeployableSchema):
data preparation output.
"""

description: Optional[str] = Field(None, max_length=20)
location: Optional[str] = Field(None, max_length=20)
description: Optional[str] = Field(None, max_length=256)
location: Optional[str] = Field(None, max_length=256)
input_data_hash: str
generated_uid: str
data_preparation_mlcube: Union[int, str]
Expand Down

0 comments on commit e9bdbf0

Please sign in to comment.