Nvidia
Access 20 Nvidia models through NotPixel. Authentication is handled automatically using the NVIDIA_API_KEY environment variable.
Learn more in the Nvidia documentation .
Setup
1. Get API Key
- Go to Nvidia Build
- Create an account or sign in
- Generate a new API key
2. Configure Environment
.env
NVIDIA_API_KEY=your-api-keyUsage
import Ads from 'notpixel';
const ads = new Ads({
publisherId: 'pub_xxx',
model: 'nvidia/black-forest-labs/flux.1-dev',
input: 'How to optimize deep learning models?',
});
const response = await ads.offer();
console.log(response.text);NotPixel uses the OpenAI-compatible endpoint of Nvidia. Some provider-specific features may not be available.
Available Models
| Model | Context |
|---|---|
nvidia/black-forest-labs/flux.1-dev | 4K |
nvidia/deepseek-ai/deepseek-v3.1 | 128K |
nvidia/google/gemma-3-27b-it | 131K |
nvidia/qwen/qwen3-next-80b-a3b-thinking | 262K |
Environment Variable
| Variable | Description |
|---|---|
NVIDIA_API_KEY | Your Nvidia API key |