diff --git a/dsh/app.py b/dsh/app.py index 1866ba3..4cb3f61 100644 --- a/dsh/app.py +++ b/dsh/app.py @@ -575,6 +575,8 @@ async def generate_image(prompt: Annotated[str, Form()]) -> dict: MODEL_CHOICES = ["auto/best-chat", + "deepseek/deepseek-v4-flash", + "deepseek/deepseek-v4-pro", "auto/best-fast", "auto/cheap", "auto/best-reasoning", @@ -584,6 +586,8 @@ MODEL_CHOICES = ["auto/best-chat", "openrouter/deepseek/deepseek-v4-pro"] MODEL_LABELS = { "auto/best-chat": "Chat · OmniRoute best", + "deepseek/deepseek-v4-flash": "DeepSeek v4 flash (direct provider)", + "deepseek/deepseek-v4-pro": "DeepSeek v4 pro (direct provider)", "auto/best-fast": "Fast · OmniRoute best-fast", "auto/cheap": "Budget · OmniRoute cheap", "auto/best-reasoning": "Reasoning · OmniRoute best",