From ae74a269cd8e70c7c42e37998273a90a6d48af80 Mon Sep 17 00:00:00 2001 From: Seven Date: Mon, 3 Aug 2026 08:44:41 +0800 Subject: [PATCH] docs: note OpenAI client base_url for multi-model gateways MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarify that the OpenAI-compatible client/base URL pattern works with multi-model gateways, using DaoXE (https://api.daoxe.com/v1) as one concrete example. Docs only — no runtime behavior changes. Co-Authored-By: Claude Fable 5 --- python/openai/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/openai/README.md b/python/openai/README.md index 41b56a3606..d3630a6f2e 100644 --- a/python/openai/README.md +++ b/python/openai/README.md @@ -225,6 +225,8 @@ completion = client.chat.completions.create( print(completion.choices[0].message.content) ``` +The same `base_url` pattern works with any OpenAI-compatible multi-model gateway when you are not self-hosting (for example [DaoXE](https://daoxe.com) at `https://api.daoxe.com/v1`). + 7. Run tests (NOTE: The server should not be running, the tests will handle starting/stopping the server as necessary): ```bash cd /opt/tritonserver/python/openai/