chore: format

This commit is contained in:
Joel
2024-12-26 18:38:59 +08:00
parent 95da3a4cf1
commit c23fe3b67f
7 changed files with 294 additions and 154 deletions

View File

@ -68,12 +68,18 @@ export type NodeTracing = {
expand?: boolean // for UI
details?: NodeTracing[][] // iteration detail
retryDetail?: NodeTracing[] // retry detail
agentLog?: AgentLogItemWithChildren[]
retry_index?: number
parallelDetail?: { // parallel detail. if is in parallel, this field will be set
isParallelStartNode?: boolean
parallelTitle?: string
branchTitle?: string
children?: NodeTracing[]
}
parallel_id?: string
parallel_start_node_id?: string
parent_parallel_id?: string
parent_parallel_start_node_id?: string
retry_index?: number
agentLog?: AgentLogItemWithChildren[] // agent log
}
export type FetchWorkflowDraftResponse = {