diff --git a/apps/application/flow/step_node/start_node/impl/base_start_node.py b/apps/application/flow/step_node/start_node/impl/base_start_node.py index 6388e4df..4f95656d 100644 --- a/apps/application/flow/step_node/start_node/impl/base_start_node.py +++ b/apps/application/flow/step_node/start_node/impl/base_start_node.py @@ -77,5 +77,6 @@ class BaseStartStepNode(IStarNode): 'status': self.status, 'err_message': self.err_message, 'image_list': self.context.get('image'), + 'document_list': self.context.get('document'), 'global_fields': global_fields } diff --git a/ui/src/components/ai-chat/component/question-content/index.vue b/ui/src/components/ai-chat/component/question-content/index.vue index 031d2470..6c0bd391 100644 --- a/ui/src/components/ai-chat/component/question-content/index.vue +++ b/ui/src/components/ai-chat/component/question-content/index.vue @@ -81,12 +81,12 @@ const image_list = computed(() => { }) onMounted(() => { - console.log(props.chatRecord.execution_details) - if (props.chatRecord.execution_details?.length > 0) { - props.chatRecord.execution_details[0].image_list?.forEach((image: any) => { - console.log('image', image.name, image.url) - }) - } + // console.log(props.chatRecord.execution_details) + // if (props.chatRecord.execution_details?.length > 0) { + // props.chatRecord.execution_details[0].image_list?.forEach((image: any) => { + // console.log('image', image.name, image.url) + // }) + // } })