From 2cee1b633813cd6c08495935c081fee6e9fd0943 Mon Sep 17 00:00:00 2001 From: Elias TOURNEUX Date: Mon, 26 Jan 2026 20:18:18 -0500 Subject: [PATCH] feat: Add OVHcloud in model-providers.md documentation --- docs/concepts/model-providers.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/concepts/model-providers.md b/docs/concepts/model-providers.md index 46dc4f749..e607e3edf 100644 --- a/docs/concepts/model-providers.md +++ b/docs/concepts/model-providers.md @@ -229,6 +229,27 @@ Synthetic provides Anthropic-compatible models behind the `synthetic` provider: } ``` +### OVHcloud AI Endpoints + +OVHcloud AI Endpoints provides OpenAI-compatible inference APIs for open-source models. All inferences run in Europe, offering GDPR compliance and data privacy. + +- Provider: `ovhcloud` +- Auth: `OVHCLOUD_API_KEY` +- Example model: `ovhcloud/gpt-oss-120b` +- CLI: `clawdbot onboard --auth-choice ovhcloud-api-key` + +Models are auto-discovered from the OVHcloud catalog. The recommended model is `gpt-oss-120b`, a 120 billion parameter model. + +```json5 +{ + agents: { + defaults: { model: { primary: "ovhcloud/gpt-oss-120b" } } + } +} +``` + +The provider is automatically configured when `OVHCLOUD_API_KEY` is set. See [/providers/ovhcloud](/providers/ovhcloud) for setup details and troubleshooting. + ### MiniMax MiniMax is configured via `models.providers` because it uses custom endpoints: