From acecf4fec9932f7df1a4a94b123c779603fa8cad Mon Sep 17 00:00:00 2001 From: Seven Date: Mon, 3 Aug 2026 10:25:23 +0800 Subject: [PATCH] docs: note OpenAI client base_url for multi-model gateways Clarify that the OpenAI client base_url pattern works with ChatDev 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 --- docs/user_guide/en/nodes/agent.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/user_guide/en/nodes/agent.md b/docs/user_guide/en/nodes/agent.md index 37485b00c0..e7b180a096 100755 --- a/docs/user_guide/en/nodes/agent.md +++ b/docs/user_guide/en/nodes/agent.md @@ -10,6 +10,8 @@ The Agent node is the most fundamental node type in the DevAll platform, used to | `name` | string | Yes | - | Model name, e.g., `gpt-4o`, `gemini-2.0-flash-001` | | `role` | text | No | - | System prompt | | `base_url` | string | No | Provider default | API endpoint URL, supports `${VAR}` placeholders | + +> **Tip:** Set `provider: openai` with `base_url: https://api.daoxe.com/v1` (or any other OpenAI-compatible multi-model gateway) to route the Agent node through a gateway. Example: [DaoXE](https://daoxe.com/?utm_source=github&utm_medium=organic&utm_campaign=chatdev&utm_content=agent). | `api_key` | string | No | - | API key, recommend using environment variable `${API_KEY}` | | `params` | dict | No | `{}` | Model call parameters (temperature, top_p, etc.) | | `tooling` | object | No | - | Tool calling configuration, see [Tooling Module](../modules/tooling/README.md) |