Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/models-library/src/models_library/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ class FunctionClass(str, Enum):
# see here https://github.com/ITISFoundation/osparc-simcore/issues/7659
FunctionInputs: TypeAlias = dict[str, Any] | None

FunctionInputsList: TypeAlias = list[FunctionInputs]
FunctionInputsList: TypeAlias = Annotated[
list[FunctionInputs],
Field(max_length=50),
]

FunctionOutputs: TypeAlias = dict[str, Any] | None

Expand Down
1 change: 1 addition & 0 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7699,6 +7699,7 @@
}
]
},
"maxItems": 50,
"title": "Function Inputs List"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# dependencies = [
# "httpx",
# "matplotlib",
# "osparc>=0.8.3.post0.dev26",
# "osparc>0.8.3.post0.dev26",
# "tenacity",
# "tqdm",
# ]
Expand Down
Loading