From 5be2ad78bf419f52c1d44d7aea298532b27fd2e2 Mon Sep 17 00:00:00 2001 From: Santosh Bhavani Date: Sun, 19 Oct 2025 20:57:00 -0700 Subject: [PATCH] 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 --- nvidia/txt2kg/assets/frontend/components/model-selector.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nvidia/txt2kg/assets/frontend/components/model-selector.tsx b/nvidia/txt2kg/assets/frontend/components/model-selector.tsx index 51499ed..d3648d2 100644 --- a/nvidia/txt2kg/assets/frontend/components/model-selector.tsx +++ b/nvidia/txt2kg/assets/frontend/components/model-selector.tsx @@ -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: , - 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", },