Chore: thanks to bump-pydantic (#25437)
This commit is contained in:
parent
240b65b980
commit
2ac7a9c8fc
13 changed files with 28 additions and 28 deletions
|
|
@ -95,7 +95,7 @@ class AppGenerateEntity(BaseModel):
|
|||
task_id: str
|
||||
|
||||
# app config
|
||||
app_config: Any
|
||||
app_config: Any = None
|
||||
file_upload_config: Optional[FileUploadConfig] = None
|
||||
|
||||
inputs: Mapping[str, Any]
|
||||
|
|
|
|||
|
|
@ -432,8 +432,8 @@ class QueueAgentLogEvent(AppQueueEvent):
|
|||
id: str
|
||||
label: str
|
||||
node_execution_id: str
|
||||
parent_id: str | None
|
||||
error: str | None
|
||||
parent_id: str | None = None
|
||||
error: str | None = None
|
||||
status: str
|
||||
data: Mapping[str, Any]
|
||||
metadata: Optional[Mapping[str, Any]] = None
|
||||
|
|
|
|||
|
|
@ -828,8 +828,8 @@ class AgentLogStreamResponse(StreamResponse):
|
|||
node_execution_id: str
|
||||
id: str
|
||||
label: str
|
||||
parent_id: str | None
|
||||
error: str | None
|
||||
parent_id: str | None = None
|
||||
error: str | None = None
|
||||
status: str
|
||||
data: Mapping[str, Any]
|
||||
metadata: Optional[Mapping[str, Any]] = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue