Merge remote-tracking branch 'upstream/feat/big-var-value-show-fe' into feat/rag-2

This commit is contained in:
QuantumGhost
2025-09-01 17:06:23 +08:00
16 changed files with 159 additions and 16 deletions

View File

@ -38,8 +38,14 @@ export type NodeTracing = {
node_type: BlockEnum
title: string
inputs: any
inputs_truncated: boolean
process_data: any
process_data_truncated: boolean
outputs?: Record<string, any>
outputs_truncated: boolean
outputs_full_content?: {
download_url: string
}
status: string
parallel_run_id?: string
error?: string
@ -381,6 +387,11 @@ export enum VarInInspectType {
system = 'sys',
}
export type FullContent = {
size_bytes: number
download_url: string
}
export type VarInInspect = {
id: string
type: VarInInspectType
@ -391,6 +402,8 @@ export type VarInInspect = {
value: any
edited: boolean
visible: boolean
is_truncated: boolean
full_content: FullContent
}
export type NodeWithVar = {