fix: remote image not display in answer node (#6867)

This commit is contained in:
非法操作
2024-08-01 13:21:49 +08:00
committed by GitHub
parent 14367ddc09
commit 29e3c3061c
2 changed files with 4 additions and 1 deletions

View File

@@ -174,13 +174,14 @@ class ToolNode(BaseNode):
ext = path.splitext(url)[1]
mimetype = response.meta.get('mime_type', 'image/jpeg')
filename = response.save_as or url.split('/')[-1]
transfer_method = response.meta.get('transfer_method', FileTransferMethod.TOOL_FILE)
# get tool file id
tool_file_id = url.split('/')[-1].split('.')[0]
result.append(FileVar(
tenant_id=self.tenant_id,
type=FileType.IMAGE,
transfer_method=FileTransferMethod.TOOL_FILE,
transfer_method=transfer_method,
url=url,
related_id=tool_file_id,
filename=filename,