fix: linting thime

This commit is contained in:
Gabriel
2026-02-08 03:14:07 +00:00
committed by Peter Steinberger
parent 8f2884b986
commit ae8be6ac23
2 changed files with 8 additions and 8 deletions
+5 -5
View File
@@ -3,7 +3,7 @@ summary: "Use NVIDIA's OpenAI-compatible API in OpenClaw"
read_when:
- You want to use NVIDIA models in OpenClaw
- You need NVIDIA_API_KEY setup
title: 'NVIDIA'
title: "NVIDIA"
---
# NVIDIA
@@ -22,18 +22,18 @@ If `NVIDIA_API_KEY` is already exported, you can omit `--token`.
```json5
{
env: { NVIDIA_API_KEY: 'nvapi-...' },
env: { NVIDIA_API_KEY: "nvapi-..." },
models: {
providers: {
nvidia: {
baseUrl: 'https://integrate.api.nvidia.com/v1',
api: 'openai-completions',
baseUrl: "https://integrate.api.nvidia.com/v1",
api: "openai-completions",
},
},
},
agents: {
defaults: {
model: { primary: 'nvidia/llama-3.1-nemotron-70b-instruct' },
model: { primary: "nvidia/llama-3.1-nemotron-70b-instruct" },
},
},
}