Pages

sâmbătă, 6 iunie 2026

News : Marsupilami 2: Salsa Palombia | Reveal Trailer | Trailer d'annonce

Marsupilami 2: Salsa Palombia | Reveal Trailer
Marsupilami 2: Salsa Palombia | Trailer d'annonce

News : Aniimo Global Closed Beta Trailer | A new journey starts! | Sign Up Now

News : End of Abyss | Release Date Trailer | Summer Game Fest 2026

News : Sea of Remnants | "Make it Loud" Crew PV | Summer Game Fest 2026

Tool : Everything - fast search tool.

"Everything" is a search engine that locates files and folders by filename instantly for Windows.
Unlike Windows search "Everything" initially displays every file and folder on your computer (hence the name "Everything").
You type in a search filter to limit what files and folders are displayed.

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