mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
- Updated capabilities for NVIDIA models to enforce OpenAI-compatible reasoning formats. - Added new models: MiniMax M3, GLM 5.2, DeepSeek V4 Pro, DeepSeek V4 Flash, Kimi K2.6, and Nemotron 3 Ultra to the NVIDIA registry. This enhances the provider's functionality and aligns with OpenAI standards.
44 lines
1.6 KiB
JavaScript
44 lines
1.6 KiB
JavaScript
export default {
|
|
id: "nvidia",
|
|
priority: 20,
|
|
hasFree: true,
|
|
alias: "nvidia",
|
|
display: {
|
|
name: "NVIDIA NIM",
|
|
icon: "developer_board",
|
|
color: "#76B900",
|
|
textIcon: "NV",
|
|
website: "https://developer.nvidia.com/nim",
|
|
notice: {
|
|
text: "Free access for NVIDIA Developer Program members (prototyping & testing).",
|
|
apiKeyUrl: "https://build.nvidia.com/settings/api-keys",
|
|
},
|
|
},
|
|
category: "freeTier",
|
|
transport: {
|
|
baseUrl: "https://integrate.api.nvidia.com/v1/chat/completions",
|
|
validateUrl: "https://integrate.api.nvidia.com/v1/models",
|
|
},
|
|
models: [
|
|
{ id: "minimaxai/minimax-m2.7", name: "MiniMax M2.7" },
|
|
{ id: "minimaxai/minimax-m3", name: "MiniMax M3" },
|
|
{ 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: "nvidia/nemotron-3-ultra-550b-a55b", name: "Nemotron 3 Ultra" },
|
|
{ id: "nvidia/nv-embedqa-e5-v5", name: "NV EmbedQA E5 v5", kind: "embedding" },
|
|
{ id: "nvidia/parakeet-ctc-1.1b-asr", name: "Parakeet CTC 1.1B", params: ["language"], kind: "stt" },
|
|
{ id: "fastpitch", name: "FastPitch", kind: "tts" },
|
|
{ id: "tacotron2", name: "Tacotron2", kind: "tts" },
|
|
],
|
|
serviceKinds: ["llm","tts","embedding"],
|
|
ttsConfig: {
|
|
baseUrl: "https://integrate.api.nvidia.com/v1/audio/speech",
|
|
authType: "apikey",
|
|
authHeader: "bearer",
|
|
format: "nvidia-tts",
|
|
},
|
|
embeddingConfig: { baseUrl: "https://integrate.api.nvidia.com/v1/embeddings", authType: "apikey", authHeader: "bearer" },
|
|
};
|