mirror of
https://github.com/langgenius/dify.git
synced 2026-05-01 10:00:11 -04:00
Co-authored-by: Blackoutta <hyytez@gmail.com> Co-authored-by: QuantumGhost <QuantumGhost@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai>
7 lines
139 B
Python
7 lines
139 B
Python
from pydantic import BaseModel, JsonValue
|
|
|
|
|
|
class HumanInputFormSubmitPayload(BaseModel):
|
|
inputs: dict[str, JsonValue]
|
|
action: str
|