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
19 changes: 19 additions & 0 deletions packages/proxy/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,20 @@ export const AvailableEndpointTypes: { [name: string]: ModelEndpointType[] } = {
"accounts/fireworks/models/qwen1p5-72b-chat": ["fireworks"],
"Qwen/Qwen2-72B-Instruct": ["together"],
"google/gemma-2-27b-it": ["together"],
"global.anthropic.claude-opus-4-5-20251101-v1:0": ["bedrock"],
"global.anthropic.claude-sonnet-4-20250514-v1:0": ["bedrock"],
"global.openai.gpt-5.6-luna": ["bedrock"],
"global.openai.gpt-5.6-sol": ["bedrock"],
"global.openai.gpt-5.6-terra": ["bedrock"],
"global.openai.gpt-6-astra": ["bedrock"],
"us.anthropic.claude-3-5-sonnet-20240620-v1:0": ["bedrock"],
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": ["bedrock"],
"us.anthropic.claude-fable-5": ["bedrock"],
"us.anthropic.claude-fable-5-1": ["bedrock"],
"us.openai.gpt-5.6-luna": ["bedrock"],
"us.openai.gpt-5.6-sol": ["bedrock"],
"us.openai.gpt-5.6-terra": ["bedrock"],
"us.openai.gpt-6-astra": ["bedrock"],
"accounts/fireworks/models/gemma2-9b-it": ["fireworks"],
"google/gemma-2-9b-it": ["together"],
"accounts/fireworks/models/gemma-2b-it": ["fireworks"],
Expand Down Expand Up @@ -1442,6 +1456,11 @@ export const AvailableEndpointTypes: { [name: string]: ModelEndpointType[] } = {
"databricks-gpt-6-astra": ["databricks"],
"databricks-glm-5-3": ["databricks"],
"databricks-deepseek-v4-1-flash": ["databricks"],
"moonshotai.kimi-k3": ["bedrock"],
"us.moonshotai.kimi-k3": ["bedrock"],
"global.moonshotai.kimi-k3": ["bedrock"],
"gemini-3.8-live": ["google"],
"gemini-3.8-live-extended-thinking": ["google"],
Comment on lines +1459 to +1463

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 Move endpoint-routing additions to the gateway repository

These AvailableEndpointTypes entries modify provider-routing metadata in the deprecated proxy, even though the repository guidance directs all model-routing work to the parent gateway/ repository and permits only model_list.json catalog changes here. The entries are also unnecessary locally because each new model’s format already resolves to the same default endpoint type; keep the catalog additions but remove these index.ts changes and apply any required routing update in ../gateway/.

AGENTS.md reference: AGENTS.md:L10-L15

Useful? React with 👍 / 👎.

};

const modelEndpointAvailableModels = getAvailableModels();
Expand Down
Loading
Loading