🐛 fix: 更新 Dify API 类型提示,增加对 Chatflow 应用类型的说明

This commit is contained in:
Soulter
2025-04-11 17:23:17 +08:00
parent 61b71143f2
commit 757d2a3947
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -928,8 +928,8 @@ CONFIG_METADATA_2 = {
"dify_api_type": {
"description": "Dify 应用类型",
"type": "string",
"hint": "Dify API 类型。根据 Dify 官网,目前支持 chat, agent, workflow 三种应用类型",
"options": ["chat", "agent", "workflow"],
"hint": "Dify API 类型。根据 Dify 官网,目前支持 chat, chatflow, agent, workflow 三种应用类型",
"options": ["chat", "chatflow", "agent", "workflow"],
},
"dify_workflow_output_key": {
"description": "Dify Workflow 输出变量名",
+1 -1
View File
@@ -102,7 +102,7 @@ class ProviderDify(Provider):
try:
match self.api_type:
case "chat" | "agent":
case "chat" | "agent" | "chatflow":
if not prompt:
prompt = "请描述这张图片。"