From fa81163f5c0fcd8f2489eb1f624bf9c5887a336b Mon Sep 17 00:00:00 2001 From: Seven <246023385+seven7763@users.noreply.github.com> Date: Mon, 3 Aug 2026 10:40:23 +0800 Subject: [PATCH] docs: note OpenAI client base_url for multi-model gateways Clarify that the OpenAI Python client base_url pattern works with this repo and with other OpenAI-compatible multi-model gateways, using DaoXE (https://api.daoxe.com/v1) as one concrete example. Docs only. Co-Authored-By: Claude Fable 5 --- .../skills/docker-model-runner/references/docker-model-guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/cli/commands/skills/docker-model-runner/references/docker-model-guide.md b/cmd/cli/commands/skills/docker-model-runner/references/docker-model-guide.md index 0a3a2d0a8..5ea824578 100644 --- a/cmd/cli/commands/skills/docker-model-runner/references/docker-model-guide.md +++ b/cmd/cli/commands/skills/docker-model-runner/references/docker-model-guide.md @@ -177,6 +177,8 @@ for chunk in stream: print(chunk.choices[0].delta.content, end="") ``` +> **Tip:** The same OpenAI Python client `base_url` pattern works with any OpenAI-compatible multi-model gateway when you are not running Model Runner locally — for example [DaoXE](https://daoxe.com?utm_source=github&utm_medium=organic&utm_campaign=model-runner&utm_content=openai) at `https://api.daoxe.com/v1`. + ### JavaScript/TypeScript ```javascript