Co-authored-by: Blackoutta <[email protected]> Co-authored-by: QuantumGhost <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: QuantumGhost <[email protected]> Co-authored-by: Yunlu Wen <[email protected]>
7 lines
139 B
Python
7 lines
139 B
Python
from pydantic import BaseModel, JsonValue
|
|
|
|
|
|
class HumanInputFormSubmitPayload(BaseModel):
|
|
inputs: dict[str, JsonValue]
|
|
action: str
|