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

View File

@@ -1,9 +1,9 @@
--- ---
summary: 'Model providers (LLMs) supported by OpenClaw' summary: "Model providers (LLMs) supported by OpenClaw"
read_when: read_when:
- You want to choose a model provider - You want to choose a model provider
- You need a quick overview of supported LLM backends - You need a quick overview of supported LLM backends
title: 'Model Providers' title: "Model Providers"
--- ---
# Model Providers # Model Providers
@@ -29,7 +29,7 @@ See [Venice AI](/providers/venice).
```json5 ```json5
{ {
agents: { defaults: { model: { primary: 'anthropic/claude-opus-4-6' } } }, agents: { defaults: { model: { primary: "anthropic/claude-opus-4-6" } } },
} }
``` ```

View File

@@ -3,7 +3,7 @@ summary: "Use NVIDIA's OpenAI-compatible API in OpenClaw"
read_when: read_when:
- You want to use NVIDIA models in OpenClaw - You want to use NVIDIA models in OpenClaw
- You need NVIDIA_API_KEY setup - You need NVIDIA_API_KEY setup
title: 'NVIDIA' title: "NVIDIA"
--- ---
# NVIDIA # NVIDIA
@@ -22,18 +22,18 @@ If `NVIDIA_API_KEY` is already exported, you can omit `--token`.
```json5 ```json5
{ {
env: { NVIDIA_API_KEY: 'nvapi-...' }, env: { NVIDIA_API_KEY: "nvapi-..." },
models: { models: {
providers: { providers: {
nvidia: { nvidia: {
baseUrl: 'https://integrate.api.nvidia.com/v1', baseUrl: "https://integrate.api.nvidia.com/v1",
api: 'openai-completions', api: "openai-completions",
}, },
}, },
}, },
agents: { agents: {
defaults: { defaults: {
model: { primary: 'nvidia/llama-3.1-nemotron-70b-instruct' }, model: { primary: "nvidia/llama-3.1-nemotron-70b-instruct" },
}, },
}, },
} }