From 29940c299bde034abc9cbb2c1cc155e889373ba0 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Fri, 15 May 2026 21:36:24 -0400 Subject: [PATCH] docs: fix Chat and Tools section accuracy in HELP.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Copy button appears on all messages (user + assistant), not just assistant - Delete requires a confirm step — clarified in description - Model tag position is below-left for assistant messages, not bottom-right - Tool calls render as expandable per-call cards, not a single ⚡ N summary note - help.html: default-open sections updated to Getting Started / Chat / Sessions / Model Registry Co-Authored-By: Claude Sonnet 4.6 --- cortex/static/HELP.md | 8 ++++---- cortex/static/help.html | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cortex/static/HELP.md b/cortex/static/HELP.md index 4e8bc21..efbdb30 100644 --- a/cortex/static/HELP.md +++ b/cortex/static/HELP.md @@ -55,11 +55,11 @@ All settings persist in `localStorage` across page refreshes. - **Send:** `Ctrl+Enter` by default. Click `⌃↵` in the input controls to toggle to plain `Enter` mode. - **Stop:** Click **Stop** to cancel an in-progress response at any time. - **Edit a message:** Hover over any message → click **edit**. `Ctrl+Enter` saves, `Esc` cancels. -- **Delete a message:** Hover over any message → click **del**. Removes from session history. -- **Copy a response:** Hover over any assistant message → click **copy**. +- **Delete a message:** Hover over any message → click **del**, then **confirm delete**. +- **Copy:** Hover over any message → click **copy**. - **New line while typing:** `Shift+Enter` (in `Ctrl+Enter` mode) or `Shift+Enter` / Enter (in Enter mode). -Each assistant response shows a small **model tag** in the bottom-right corner identifying which model and host responded. +Each assistant response shows a small **model tag** below the message identifying which model and host responded. --- @@ -72,7 +72,7 @@ The orchestrator runs a multi-step tool loop: 1. The **orchestrator model** reasons about the request and calls tools as needed 2. It produces an enriched summary of what it found 3. The **responder model** (set by the active Role) receives that context and writes the final user-facing reply -4. A `⚡ N tool calls: …` note appears below the response listing what was used +4. Expandable tool-call cards appear above the response — click any card to see the arguments sent and the result returned The ⚡ toggle is **independent of the Role selector** — you can use any role (chat, coder, research, etc.) with or without tools. The orchestrator model is configured in **Account → Model Registry → Role Assignments → Orchestrator**. diff --git a/cortex/static/help.html b/cortex/static/help.html index b8261a6..2fd8dd9 100644 --- a/cortex/static/help.html +++ b/cortex/static/help.html @@ -198,7 +198,7 @@ } // ── Load all three tabs in parallel ───────────────────────────── - const UI_OPEN = new Set(['Header Controls', 'Chat', 'Sessions', 'Notes']); + const UI_OPEN = new Set(['Getting Started', 'Chat', 'Sessions', 'Model Registry']); async function loadAll() { // UI Guide