Skip to content
Open
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
2 changes: 1 addition & 1 deletion open-sse/executors/agentrouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export async function validateAgentRouterConnection(apiKey, fetchFn = fetch) {
method: "POST",
headers,
body: JSON.stringify({
model: "claude-opus-4-7",
model: "claude-opus-4-8",
max_tokens: 1,
messages: [{ role: "user", content: "ping" }],
stream: false
Expand Down
3 changes: 2 additions & 1 deletion open-sse/providers/registry/agentrouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ export default {
},
models: [
{ id: "claude-opus-4-6", name: "Claude 4.6 Opus" },
{ id: "claude-opus-4-7", name: "Claude 4.7 Opus" },
{ id: "claude-opus-4-8", name: "Claude 4.8 Opus" },
{ id: "glm-5.2", name: "GLM 5.2" },
{ id: "gpt-5.5", name: "GPT 5.5" },
{ id: "gpt-5.6-sol", name: "GPT 5.6 Sol" },
{ id: "kimi-k3", name: "Kimi K3" },
],
passthroughModels: true,
};
11 changes: 5 additions & 6 deletions open-sse/providers/registry/nvidia.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ export default {
models: [
{ id: "minimaxai/minimax-m2.7", name: "MiniMax M2.7" },
{ id: "minimaxai/minimax-m3", name: "MiniMax M3" },
{ id: "z-ai/glm-5.1", name: "GLM 5.1" },
{ id: "z-ai/glm-5.2", name: "GLM 5.2" },
{ id: "deepseek-ai/deepseek-v4-pro", name: "DeepSeek V4 Pro" },
{ id: "deepseek-ai/deepseek-v4-flash", name: "DeepSeek V4 Flash" },
{ id: "moonshotai/kimi-k2.6", name: "Kimi K2.6" },
{ id: "moonshotai/kimi-k2.6(none)", name: "Kimi K2.6 (No/Minimal Thinking)", upstreamModelId: "moonshotai/kimi-k2.6" },
{ id: "moonshotai/kimi-k2.6(low)", name: "Kimi K2.6 (Low Thinking)", upstreamModelId: "moonshotai/kimi-k2.6" },
{ id: "moonshotai/kimi-k2.6(medium)", name: "Kimi K2.6 (Medium Thinking)", upstreamModelId: "moonshotai/kimi-k2.6" },
{ id: "moonshotai/kimi-k2.6(high)", name: "Kimi K2.6 (High Thinking)", upstreamModelId: "moonshotai/kimi-k2.6" },
{ id: "openai/gpt-oss-120b", name: "GPT-OSS 120B" },
{ id: "openai/gpt-oss-20b", name: "GPT-OSS 20B" },
{ id: "meta/llama-4-maverick-17b-128e-instruct", name: "Llama 4 Maverick 17B" },
{ id: "stepfun-ai/step-3.7-flash", name: "Step 3.7 Flash" },
{ id: "nvidia/nemotron-3-ultra-550b-a55b", name: "Nemotron 3 Ultra" },
{ id: "nvidia/nemotron-3-super-120b-a12b", name: "Nemotron 3 Super 120B" },
{ id: "nvidia/nv-embedqa-e5-v5", name: "NV EmbedQA E5 v5", kind: "embedding" },
],
serviceKinds: ["llm","embedding"],
Expand Down
3 changes: 1 addition & 2 deletions src/app/api/providers/validate/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,7 @@ export async function POST(request) {
case "minimax-cn":
case "alicode-intl":
case "alims-intl":
case "alicode":
case "agentrouter": {
case "alicode": {
// Use baseUrl from PROVIDERS (DRY); separate openai-format vs claude-format flow
const cfg = PROVIDERS[provider];
const isOpenAiFormat = provider === "glm-cn" || provider === "alicode" || provider === "alicode-intl" || provider === "alims-intl";
Expand Down
17 changes: 9 additions & 8 deletions src/shared/constants/suggestedModels.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@
//
// Keyed by providerId. Each entry: { id, name }.
// NVIDIA NIM: all listed models are free for NVIDIA Developer Program members
// (prototyping/testing). The list below was verified reachable against
// integrate.api.nvidia.com — fast, good-quality general/coding models.
// (prototyping/testing). Verified callable against integrate.api.nvidia.com
// (in the /v1/models catalog AND returning 200 on a real completion) — models
// that are catalog-listed but 404 "not found for account" (e.g. kimi-k2.6,
// qwen3.5-397b) or EOL/410 (e.g. glm-5.1) are intentionally excluded.
export const SUGGESTED_MODELS = {
nvidia: [
{ id: "z-ai/glm-5.1", name: "GLM 5.1" },
{ id: "moonshotai/kimi-k2.6", name: "Kimi K2.6" },
{ id: "qwen/qwen3.5-397b-a17b", name: "Qwen3.5 397B A17B" },
{ id: "qwen/qwen3.5-122b-a10b", name: "Qwen3.5 122B A10B" },
{ id: "z-ai/glm-5.2", name: "GLM 5.2" },
{ id: "deepseek-ai/deepseek-v4-pro", name: "DeepSeek V4 Pro" },
{ id: "deepseek-ai/deepseek-v4-flash", name: "DeepSeek V4 Flash" },
{ id: "minimaxai/minimax-m3", name: "MiniMax M3" },
{ id: "qwen/qwen3-next-80b-a3b-instruct", name: "Qwen3 Next 80B A3B" },
{ id: "openai/gpt-oss-120b", name: "GPT-OSS 120B" },
{ id: "openai/gpt-oss-20b", name: "GPT-OSS 20B" },
{ id: "meta/llama-4-maverick-17b-128e-instruct", name: "Llama 4 Maverick 17B" },
{ id: "meta/llama-3.3-70b-instruct", name: "Llama 3.3 70B" },
{ id: "mistralai/mistral-large-3-675b-instruct-2512", name: "Mistral Large 3 675B" },
{ id: "nvidia/nemotron-3-super-120b-a12b", name: "Nemotron 3 Super 120B" },
{ id: "nvidia/llama-3.3-nemotron-super-49b-v1.5", name: "Nemotron Super 49B v1.5" },
{ id: "stepfun-ai/step-3.7-flash", name: "Step 3.7 Flash" },
],
Expand Down
Loading