mirror of
https://github.com/langgenius/dify.git
synced 2026-03-11 20:01:53 +08:00
16 lines
285 B
Python
16 lines
285 B
Python
from enum import StrEnum
|
|
|
|
|
|
class HostedTrialProvider(StrEnum):
|
|
"""
|
|
Enum representing hosted model provider names for trial access.
|
|
"""
|
|
|
|
OPENAI = "openai"
|
|
DEEPSEEK = "deepseek"
|
|
ANTHROPIC = "anthropic"
|
|
GEMINI = "gemini"
|
|
XAI = "xai"
|
|
TONGYI = "tongyi"
|
|
|