feat(ui): upgrade to NVIDIA Llama 3.3 Nemotron Super 49B

- Update default NVIDIA model to Llama 3.3 Nemotron Super 49B v1.5
- Update model display name and description
- Replace deprecated 70B model with newer 49B Super model
This commit is contained in:
Santosh Bhavani 2025-10-19 20:57:00 -07:00
parent 529debb633
commit 5be2ad78bf

View File

@ -9,10 +9,10 @@ import { OllamaIcon } from "@/components/ui/ollama-icon"
const baseModels = [
{
id: "nvidia-nemotron",
name: "NVIDIA NeMo Llama 3.1 70B Nemotron",
name: "NVIDIA Llama 3.3 Nemotron Super 49B",
icon: <Cpu className="h-4 w-4 text-green-500" />,
description: "NVIDIA hosted Nemotron optimized Llama 3.1 70B model",
model: "nvdev/nvidia/llama-3.1-nemotron-70b-instruct",
description: "NVIDIA hosted Nemotron Super 49B v1.5 model",
model: "nvidia/llama-3.3-nemotron-super-49b-v1.5",
apiKeyName: "NVIDIA_API_KEY",
baseURL: "https://integrate.api.nvidia.com/v1",
},