Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/proxy/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ export const AvailableEndpointTypes: { [name: string]: ModelEndpointType[] } = {
"gpt-4o-transcribe": ["openai", "azure"],
"gpt-4o-transcribe-diarize": ["openai", "azure"],
sonar: ["perplexity", "openrouter"],
"deepseek-ai/DeepSeek-V4.1-Flash": ["baseten"],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Remove routing change from the deprecated proxy

This AvailableEndpointTypes entry is consumed by getDirectModelEndpointTypes, so it adds Baseten provider-routing behavior inside the deprecated proxy. Repository guidance requires model routing changes to live in the parent repository's gateway/ directory; remove this mapping here and implement any required routing there instead.

AGENTS.md reference: AGENTS.md:L6-L8

Useful? React with 👍 / 👎.

"deepseek-ai/DeepSeek-V4-Flash-0731": ["baseten", "together"],
"sonar-pro": ["perplexity", "openrouter"],
"sonar-reasoning-pro": ["perplexity", "openrouter"],
Expand Down
11 changes: 11 additions & 0 deletions packages/proxy/schema/model_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -11237,6 +11237,17 @@
"openrouter"
]
},
"deepseek-ai/DeepSeek-V4.1-Flash": {
"format": "openai",
"flavor": "chat",
"multimodal": true,
"displayName": "DeepSeek V4.1 Flash",
"reasoning": true,
"max_input_tokens": 1048576,
"available_providers": [
"baseten"
]
},
"deepseek-ai/DeepSeek-V4-Flash-0731": {
"format": "openai",
"flavor": "chat",
Expand Down
Loading