Compare commits

...

2 Commits

Author SHA1 Message Date
crazywoola
da9ff7b1c3 update version 2024-07-25 17:48:46 +08:00
crazywoola
213488359d fix: files url is not working 2024-07-25 17:42:13 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ body:
- type: input
attributes:
label: Dify version
placeholder: 0.6.11
placeholder: 0.6.15
description: See about section in Dify console
validations:
required: true

View File

@@ -113,7 +113,7 @@ class WordExtractor(BaseExtractor):
db.session.add(upload_file)
db.session.commit()
image_map[rel.target_part] = f"![image]({dify_config.CONSOLE_API_URL}/files/{upload_file.id}/image-preview)"
image_map[rel.target_part] = f"![image]({dify_config.FILES_URL}/files/{upload_file.id}/image-preview)"
return image_map