hosting_configuration.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. from typing import Optional
  2. from flask import Flask
  3. from pydantic import BaseModel
  4. from configs import dify_config
  5. from core.entities import DEFAULT_PLUGIN_ID
  6. from core.entities.provider_entities import ProviderQuotaType, QuotaUnit, RestrictModel
  7. from core.model_runtime.entities.model_entities import ModelType
  8. class HostingQuota(BaseModel):
  9. quota_type: ProviderQuotaType
  10. restrict_models: list[RestrictModel] = []
  11. class TrialHostingQuota(HostingQuota):
  12. quota_type: ProviderQuotaType = ProviderQuotaType.TRIAL
  13. quota_limit: int = 0
  14. """Quota limit for the hosting provider models. -1 means unlimited."""
  15. class PaidHostingQuota(HostingQuota):
  16. quota_type: ProviderQuotaType = ProviderQuotaType.PAID
  17. class FreeHostingQuota(HostingQuota):
  18. quota_type: ProviderQuotaType = ProviderQuotaType.FREE
  19. class HostingProvider(BaseModel):
  20. enabled: bool = False
  21. credentials: Optional[dict] = None
  22. quota_unit: Optional[QuotaUnit] = None
  23. quotas: list[HostingQuota] = []
  24. class HostedModerationConfig(BaseModel):
  25. enabled: bool = False
  26. providers: list[str] = []
  27. class HostingConfiguration:
  28. provider_map: dict[str, HostingProvider]
  29. moderation_config: Optional[HostedModerationConfig] = None
  30. def __init__(self) -> None:
  31. self.provider_map = {}
  32. self.moderation_config = None
  33. def init_app(self, app: Flask) -> None:
  34. if dify_config.EDITION != "CLOUD":
  35. return
  36. self.provider_map[f"{DEFAULT_PLUGIN_ID}/azure_openai/azure_openai"] = self.init_azure_openai()
  37. self.provider_map[f"{DEFAULT_PLUGIN_ID}/openai/openai"] = self.init_openai()
  38. self.provider_map[f"{DEFAULT_PLUGIN_ID}/anthropic/anthropic"] = self.init_anthropic()
  39. self.provider_map[f"{DEFAULT_PLUGIN_ID}/minimax/minimax"] = self.init_minimax()
  40. self.provider_map[f"{DEFAULT_PLUGIN_ID}/spark/spark"] = self.init_spark()
  41. self.provider_map[f"{DEFAULT_PLUGIN_ID}/zhipuai/zhipuai"] = self.init_zhipuai()
  42. self.moderation_config = self.init_moderation_config()
  43. @staticmethod
  44. def init_azure_openai() -> HostingProvider:
  45. quota_unit = QuotaUnit.TIMES
  46. if dify_config.HOSTED_AZURE_OPENAI_ENABLED:
  47. credentials = {
  48. "openai_api_key": dify_config.HOSTED_AZURE_OPENAI_API_KEY,
  49. "openai_api_base": dify_config.HOSTED_AZURE_OPENAI_API_BASE,
  50. "base_model_name": "gpt-35-turbo",
  51. }
  52. quotas: list[HostingQuota] = []
  53. hosted_quota_limit = dify_config.HOSTED_AZURE_OPENAI_QUOTA_LIMIT
  54. trial_quota = TrialHostingQuota(
  55. quota_limit=hosted_quota_limit,
  56. restrict_models=[
  57. RestrictModel(model="gpt-4", base_model_name="gpt-4", model_type=ModelType.LLM),
  58. RestrictModel(model="gpt-4o", base_model_name="gpt-4o", model_type=ModelType.LLM),
  59. RestrictModel(model="gpt-4o-mini", base_model_name="gpt-4o-mini", model_type=ModelType.LLM),
  60. RestrictModel(model="gpt-4-32k", base_model_name="gpt-4-32k", model_type=ModelType.LLM),
  61. RestrictModel(
  62. model="gpt-4-1106-preview", base_model_name="gpt-4-1106-preview", model_type=ModelType.LLM
  63. ),
  64. RestrictModel(
  65. model="gpt-4-vision-preview", base_model_name="gpt-4-vision-preview", model_type=ModelType.LLM
  66. ),
  67. RestrictModel(model="gpt-35-turbo", base_model_name="gpt-35-turbo", model_type=ModelType.LLM),
  68. RestrictModel(
  69. model="gpt-35-turbo-1106", base_model_name="gpt-35-turbo-1106", model_type=ModelType.LLM
  70. ),
  71. RestrictModel(
  72. model="gpt-35-turbo-instruct", base_model_name="gpt-35-turbo-instruct", model_type=ModelType.LLM
  73. ),
  74. RestrictModel(
  75. model="gpt-35-turbo-16k", base_model_name="gpt-35-turbo-16k", model_type=ModelType.LLM
  76. ),
  77. RestrictModel(
  78. model="text-davinci-003", base_model_name="text-davinci-003", model_type=ModelType.LLM
  79. ),
  80. RestrictModel(
  81. model="text-embedding-ada-002",
  82. base_model_name="text-embedding-ada-002",
  83. model_type=ModelType.TEXT_EMBEDDING,
  84. ),
  85. RestrictModel(
  86. model="text-embedding-3-small",
  87. base_model_name="text-embedding-3-small",
  88. model_type=ModelType.TEXT_EMBEDDING,
  89. ),
  90. RestrictModel(
  91. model="text-embedding-3-large",
  92. base_model_name="text-embedding-3-large",
  93. model_type=ModelType.TEXT_EMBEDDING,
  94. ),
  95. ],
  96. )
  97. quotas.append(trial_quota)
  98. return HostingProvider(enabled=True, credentials=credentials, quota_unit=quota_unit, quotas=quotas)
  99. return HostingProvider(
  100. enabled=False,
  101. quota_unit=quota_unit,
  102. )
  103. def init_openai(self) -> HostingProvider:
  104. quota_unit = QuotaUnit.CREDITS
  105. quotas: list[HostingQuota] = []
  106. if dify_config.HOSTED_OPENAI_TRIAL_ENABLED:
  107. hosted_quota_limit = dify_config.HOSTED_OPENAI_QUOTA_LIMIT
  108. trial_models = self.parse_restrict_models_from_env("HOSTED_OPENAI_TRIAL_MODELS")
  109. trial_quota = TrialHostingQuota(quota_limit=hosted_quota_limit, restrict_models=trial_models)
  110. quotas.append(trial_quota)
  111. if dify_config.HOSTED_OPENAI_PAID_ENABLED:
  112. paid_models = self.parse_restrict_models_from_env("HOSTED_OPENAI_PAID_MODELS")
  113. paid_quota = PaidHostingQuota(restrict_models=paid_models)
  114. quotas.append(paid_quota)
  115. if len(quotas) > 0:
  116. credentials = {
  117. "openai_api_key": dify_config.HOSTED_OPENAI_API_KEY,
  118. }
  119. if dify_config.HOSTED_OPENAI_API_BASE:
  120. credentials["openai_api_base"] = dify_config.HOSTED_OPENAI_API_BASE
  121. if dify_config.HOSTED_OPENAI_API_ORGANIZATION:
  122. credentials["openai_organization"] = dify_config.HOSTED_OPENAI_API_ORGANIZATION
  123. return HostingProvider(enabled=True, credentials=credentials, quota_unit=quota_unit, quotas=quotas)
  124. return HostingProvider(
  125. enabled=False,
  126. quota_unit=quota_unit,
  127. )
  128. @staticmethod
  129. def init_anthropic() -> HostingProvider:
  130. quota_unit = QuotaUnit.TOKENS
  131. quotas: list[HostingQuota] = []
  132. if dify_config.HOSTED_ANTHROPIC_TRIAL_ENABLED:
  133. hosted_quota_limit = dify_config.HOSTED_ANTHROPIC_QUOTA_LIMIT
  134. trial_quota = TrialHostingQuota(quota_limit=hosted_quota_limit)
  135. quotas.append(trial_quota)
  136. if dify_config.HOSTED_ANTHROPIC_PAID_ENABLED:
  137. paid_quota = PaidHostingQuota()
  138. quotas.append(paid_quota)
  139. if len(quotas) > 0:
  140. credentials = {
  141. "anthropic_api_key": dify_config.HOSTED_ANTHROPIC_API_KEY,
  142. }
  143. if dify_config.HOSTED_ANTHROPIC_API_BASE:
  144. credentials["anthropic_api_url"] = dify_config.HOSTED_ANTHROPIC_API_BASE
  145. return HostingProvider(enabled=True, credentials=credentials, quota_unit=quota_unit, quotas=quotas)
  146. return HostingProvider(
  147. enabled=False,
  148. quota_unit=quota_unit,
  149. )
  150. @staticmethod
  151. def init_minimax() -> HostingProvider:
  152. quota_unit = QuotaUnit.TOKENS
  153. if dify_config.HOSTED_MINIMAX_ENABLED:
  154. quotas: list[HostingQuota] = [FreeHostingQuota()]
  155. return HostingProvider(
  156. enabled=True,
  157. credentials=None, # use credentials from the provider
  158. quota_unit=quota_unit,
  159. quotas=quotas,
  160. )
  161. return HostingProvider(
  162. enabled=False,
  163. quota_unit=quota_unit,
  164. )
  165. @staticmethod
  166. def init_spark() -> HostingProvider:
  167. quota_unit = QuotaUnit.TOKENS
  168. if dify_config.HOSTED_SPARK_ENABLED:
  169. quotas: list[HostingQuota] = [FreeHostingQuota()]
  170. return HostingProvider(
  171. enabled=True,
  172. credentials=None, # use credentials from the provider
  173. quota_unit=quota_unit,
  174. quotas=quotas,
  175. )
  176. return HostingProvider(
  177. enabled=False,
  178. quota_unit=quota_unit,
  179. )
  180. @staticmethod
  181. def init_zhipuai() -> HostingProvider:
  182. quota_unit = QuotaUnit.TOKENS
  183. if dify_config.HOSTED_ZHIPUAI_ENABLED:
  184. quotas: list[HostingQuota] = [FreeHostingQuota()]
  185. return HostingProvider(
  186. enabled=True,
  187. credentials=None, # use credentials from the provider
  188. quota_unit=quota_unit,
  189. quotas=quotas,
  190. )
  191. return HostingProvider(
  192. enabled=False,
  193. quota_unit=quota_unit,
  194. )
  195. @staticmethod
  196. def init_moderation_config() -> HostedModerationConfig:
  197. if dify_config.HOSTED_MODERATION_ENABLED and dify_config.HOSTED_MODERATION_PROVIDERS:
  198. providers = dify_config.HOSTED_MODERATION_PROVIDERS.split(",")
  199. hosted_providers = []
  200. for provider in providers:
  201. if "/" not in provider:
  202. provider = f"{DEFAULT_PLUGIN_ID}/{provider}/{provider}"
  203. hosted_providers.append(provider)
  204. return HostedModerationConfig(enabled=True, providers=hosted_providers)
  205. return HostedModerationConfig(enabled=False)
  206. @staticmethod
  207. def parse_restrict_models_from_env(env_var: str) -> list[RestrictModel]:
  208. models_str = dify_config.model_dump().get(env_var)
  209. models_list = models_str.split(",") if models_str else []
  210. return [
  211. RestrictModel(model=model_name.strip(), model_type=ModelType.LLM)
  212. for model_name in models_list
  213. if model_name.strip()
  214. ]