From ae8be6ac230fe5dccc5df9c3c930d491444a41f9 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Sun, 8 Feb 2026 03:14:07 +0000 Subject: [PATCH] fix: linting thime --- docs/providers/index.md | 6 +++--- docs/providers/nvidia.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/providers/index.md b/docs/providers/index.md index dbaeaeadf2..7bf51ff21d 100644 --- a/docs/providers/index.md +++ b/docs/providers/index.md @@ -1,9 +1,9 @@ --- -summary: 'Model providers (LLMs) supported by OpenClaw' +summary: "Model providers (LLMs) supported by OpenClaw" read_when: - You want to choose a model provider - You need a quick overview of supported LLM backends -title: 'Model Providers' +title: "Model Providers" --- # Model Providers @@ -29,7 +29,7 @@ See [Venice AI](/providers/venice). ```json5 { - agents: { defaults: { model: { primary: 'anthropic/claude-opus-4-6' } } }, + agents: { defaults: { model: { primary: "anthropic/claude-opus-4-6" } } }, } ``` diff --git a/docs/providers/nvidia.md b/docs/providers/nvidia.md index 1faea0d8cd..ad67420ea2 100644 --- a/docs/providers/nvidia.md +++ b/docs/providers/nvidia.md @@ -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" }, }, }, }