From 5d01b42cecac29da4a95de5fc8d81b5ead461456 Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Sun, 5 Apr 2026 14:25:50 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@dfd39a81d8478da3a58f5d385c76c29ab7afcd8d --- .openclaw-sync/source.json | 4 ++-- docs/providers/openai.md | 25 +++++++++++++------------ 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index 40ca33a9b..c4f5c2e5e 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "7ff7a27f615ad702c471e6b3a40957dc39aac854", - "syncedAt": "2026-04-05T14:11:40.508Z" + "sha": "dfd39a81d8478da3a58f5d385c76c29ab7afcd8d", + "syncedAt": "2026-04-05T14:25:49.549Z" } diff --git a/docs/providers/openai.md b/docs/providers/openai.md index 69397e157..9461c7337 100644 --- a/docs/providers/openai.md +++ b/docs/providers/openai.md @@ -14,19 +14,19 @@ OpenAI explicitly supports subscription OAuth usage in external tools/workflows ## Default interaction style -OpenClaw adds a small OpenAI-specific prompt overlay by default for both -`openai/*` and `openai-codex/*` runs. The overlay keeps the assistant warm, -collaborative, concise, and direct without replacing the base OpenClaw system -prompt. +OpenClaw can add a small OpenAI-specific prompt overlay for both `openai/*` and +`openai-codex/*` runs. When enabled, the overlay keeps the assistant warm, +collaborative, concise, direct, and a little more emotionally expressive +without replacing the base OpenClaw system prompt. Config key: -`plugins.entries.openai.config.personalityOverlay` +`plugins.entries.openai.config.personality` Allowed values: -- `"friendly"`: default; enable the OpenAI-specific overlay. -- `"off"`: disable the overlay and use the base OpenClaw prompt only. +- `"friendly"`: enable the OpenAI-specific overlay. +- `"off"`: default; disable the overlay and use the base OpenClaw prompt only. Scope: @@ -34,7 +34,8 @@ Scope: - Applies to `openai-codex/*` models. - Does not affect other providers. -This behavior is enabled by default: +This behavior is off by default. Enable it explicitly if you want the OpenAI +personality overlay: ```json5 { @@ -42,7 +43,7 @@ This behavior is enabled by default: entries: { openai: { config: { - personalityOverlay: "friendly", + personality: "friendly", }, }, }, @@ -52,7 +53,7 @@ This behavior is enabled by default: ### Disable the OpenAI prompt overlay -If you prefer the unmodified base OpenClaw prompt, turn the overlay off: +If you want the unmodified base OpenClaw prompt, keep the overlay off: ```json5 { @@ -60,7 +61,7 @@ If you prefer the unmodified base OpenClaw prompt, turn the overlay off: entries: { openai: { config: { - personalityOverlay: "off", + personality: "off", }, }, }, @@ -71,7 +72,7 @@ If you prefer the unmodified base OpenClaw prompt, turn the overlay off: You can also set it directly with the config CLI: ```bash -openclaw config set plugins.entries.openai.config.personalityOverlay off +openclaw config set plugins.entries.openai.config.personality off ``` ## Option A: OpenAI API key (OpenAI Platform)