fix const

This commit is contained in:
Yansong Zhang 2026-01-21 14:15:51 +08:00
parent 8140a950c2
commit 360a7b6c4f
1 changed files with 6 additions and 6 deletions

View File

@ -6,12 +6,12 @@ class HostedTrialProvider(StrEnum):
Enum representing hosted model provider names for trial access.
"""
OPENAI = "langgenius/openai"
ANTHROPIC = "langgenius/anthropic"
GEMINI = "langgenius/gemini"
X = "langgenius/x"
DEEPSEEK = "langgenius/deepseek"
TONGYI = "langgenius/tongyi"
ANTHROPIC = "langgenius/anthropic/anthropic"
OPENAI = "langgenius/openai/openai"
GEMINI = "langgenius/gemini/google"
X = "langgenius/x/x"
DEEPSEEK = "langgenius/deepseek/deepseek"
TONGYI = "langgenius/tongyi/tongyi"
@property
def config_key(self) -> str: