Reference
Remy Reference/models/Nemotron 3.5 Lightning
D

Nemotron 3.5 Lightning

Nemotron 3.5 Lightning, a language model from DeepInfra.
modelOverride: { model: "nemotron-3.5-lightning" }
Nvidia·served viaDeepInfra·Released August 2026
Pricing
Input
$0.080 / 1M
Output
$0.20 / 1M
Specifications
Context window
262,144 tokens
Max output
16,384 tokens
Released
August 2026
Model string
nvidia/NVIDIA-Nemotron-3.5-Lightning
Capabilities
FastReasoning
Parameters
Model options, passed in modelOverride.config.
ParameterTypeDefaultRange / options
reasoning
When enabled, the model generates a reasoning trace before providing a final answer. This improves performance on complex tasks like math, coding, and multi-step reasoning, but results in longer responses and higher token usage.
Selectfalsefalsetrue
Use this model
await mindstudio.generateText({
  message: "...",
  modelOverride: {
    model: "nemotron-3.5-lightning",
    config: {
      reasoning: "false",
    },
  },
});