Pages

sâmbătă, 6 iunie 2026

Tool : Full config for Continue.dev on VS Code for NVIDIA Nemotron‑3 Ultra.

Today, tested NVIDIA Nemotron‑3 Ultra with Continue.dev on VS Code, let's see the main config setting for this:
name: Local Config
version: 1.0.0
schema: v1

models:
  - name: Nemotron 3 Ultra
    provider: openai
    model: nvidia/nemotron-3-ultra
    apiBase: https://integrate.api.nvidia.com/v1
    apiKey: "YOUR_NVIDIA_API_KEY"
    maxTokens: 4096
    temperature: 0.2

completionModels:
  - name: Nemotron 3 Ultra Completion
    provider: openai
    model: nvidia/nemotron-3-ultra
    apiBase: https://integrate.api.nvidia.com/v1
    apiKey: "YOUR_NVIDIA_API_KEY"
    maxTokens: 256
    temperature: 0.1

embeddings:
  - name: Nemotron Embeddings
    provider: openai
    model: nvidia/nemotron-3-embed
    apiBase: https://integrate.api.nvidia.com/v1
    apiKey: "YOUR_NVIDIA_API_KEY"

contextProviders:
  - name: file
    provider: file
    maxFileSize: 2000000

  - name: git
    provider: git

  - name: terminal
    provider: terminal

  - name: clipboard
    provider: clipboard

actions:
  - name: Fix File
    command: fix
    description: "Fix issues in the current file using Nemotron 3 Ultra"
    model: Nemotron 3 Ultra

  - name: Refactor File
    command: refactor
    description: "Refactor the current file"
    model: Nemotron 3 Ultra

  - name: Explain Code
    command: explain
    description: "Explain the current file"
    model: Nemotron 3 Ultra

  - name: Generate Tests
    command: tests
    description: "Generate unit tests for the current file"
    model: Nemotron 3 Ultra