mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
Merge remote-tracking branch 'upstream/feat/big-var-value-show-fe' into feat/rag-2
This commit is contained in:
@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user