Browse Source

chore(provider_manager): Update hosted model's name (#14324)

Signed-off-by: -LAN- <laipz8200@outlook.com>
tags/1.0.0
-LAN- 8 months ago
parent
commit
4a6cbda1b4
No account linked to committer's email address
1 changed files with 13 additions and 6 deletions
  1. 13
    6
      api/core/hosting_configuration.py

+ 13
- 6
api/core/hosting_configuration.py View File

@@ -52,12 +52,19 @@ class HostingConfiguration:
if dify_config.EDITION != "CLOUD":
return

self.provider_map[f"{DEFAULT_PLUGIN_ID}/azure_openai/azure_openai"] = self.init_azure_openai()
self.provider_map[f"{DEFAULT_PLUGIN_ID}/openai/openai"] = self.init_openai()
self.provider_map[f"{DEFAULT_PLUGIN_ID}/anthropic/anthropic"] = self.init_anthropic()
self.provider_map[f"{DEFAULT_PLUGIN_ID}/minimax/minimax"] = self.init_minimax()
self.provider_map[f"{DEFAULT_PLUGIN_ID}/spark/spark"] = self.init_spark()
self.provider_map[f"{DEFAULT_PLUGIN_ID}/zhipuai/zhipuai"] = self.init_zhipuai()
self.provider_map["azure_openai"] = self.init_azure_openai()
self.provider_map["openai"] = self.init_openai()
self.provider_map["anthropic"] = self.init_anthropic()
self.provider_map["minimax"] = self.init_minimax()
self.provider_map["spark"] = self.init_spark()
self.provider_map["zhipuai"] = self.init_zhipuai()
# NOTE: We need to use the new name format after the data migration.
# self.provider_map[f"{DEFAULT_PLUGIN_ID}/azure_openai/azure_openai"] = self.init_azure_openai()
# self.provider_map[f"{DEFAULT_PLUGIN_ID}/openai/openai"] = self.init_openai()
# self.provider_map[f"{DEFAULT_PLUGIN_ID}/anthropic/anthropic"] = self.init_anthropic()
# self.provider_map[f"{DEFAULT_PLUGIN_ID}/minimax/minimax"] = self.init_minimax()
# self.provider_map[f"{DEFAULT_PLUGIN_ID}/spark/spark"] = self.init_spark()
# self.provider_map[f"{DEFAULT_PLUGIN_ID}/zhipuai/zhipuai"] = self.init_zhipuai()

self.moderation_config = self.init_moderation_config()


Loading…
Cancel
Save