gsxdsm
daf3f15fd1
FN-7909: add room-level thinking effort override for Chat Rooms
Adds a per-room thinking-effort (reasoning level) override for Chat Rooms so all room responders can share a consistent override instead of relying only on per-agent/global defaults.
- Persist `chat_rooms.thinkingLevel` with a new core DB migration and store read/write support
- Extend chat-store and chat-types with thinkingLevel plumbing for room create/update
- Wire the dashboard chat room API/routes and legacy handlers to accept and return thinkingLevel
- Add a ChatView room settings control (with CSS) and useChatRooms hook support for setting/clearing the override
- Resolve room responder defaultThinkingLevel from the room override when present
- Update docs (dashboard-guide, settings-reference) and add a minor changeset for the feature
Files changed:
.changeset/fn-7909-room-thinking-level.md | 7 +++
docs/dashboard-guide.md | 1 +
docs/settings-reference.md | 2 +-
packages/core/src/__tests__/chat-store.test.ts | 21 ++++++++
packages/core/src/__tests__/db-migrate.test.ts | 57 ++++++++++++++++++++++
packages/core/src/chat-store.ts | 12 ++++-
packages/core/src/chat-types.ts | 10 ++++
packages/core/src/db.ts | 28 ++++++++++-
packages/dashboard/app/api/__tests__/chat-rooms-api.test.ts | 8 +--
packages/dashboard/app/api/legacy.ts | 4 +-
packages/dashboard/app/components/ChatView.css | 16 ++++++
packages/dashboard/app/components/ChatView.tsx | 29 ++++++++++-
packages/dashboard/app/components/__tests__/ChatView.rooms.test.tsx | 24 +++++++++
packages/dashboard/app/hooks/__tests__/useChatRooms.test.ts | 22 +++++++++
packages/dashboard/app/hooks/useChatRooms.ts | 16 ++++++
packages/dashboard/src/__tests__/chat-room-routes.test.ts | 26 ++++++++++
packages/dashboard/src/__tests__/chat.rooms.test.ts | 42 ++++++++++++++++
packages/dashboard/src/chat.ts | 8 +++
packages/dashboard/src/routes/register-chat-room-routes.ts | 21 ++++++--
19 files changed, 338 insertions(+), 16 deletions(-)
Fusion-Task-Id: FN-7909
Fusion-Task-Lineage: 2741eca9-5305-4f6c-81bf-ae644a9fe307
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
2026-07-12 22:12:18 -07:00
..
2026-07-12 22:12:18 -07:00
2026-06-27 15:56:42 -07:00
2026-06-22 15:23:43 -07:00
2026-07-01 07:50:52 -07:00
2026-07-08 00:14:52 -07:00
2026-04-12 17:55:07 -07:00
2026-06-08 13:32:58 -07:00
2026-05-26 21:57:31 -07:00
2026-05-20 03:19:44 -07:00
2026-04-08 16:48:35 -07:00
2026-06-27 09:28:29 -07:00
2026-07-11 18:07:00 -07:00
2026-07-10 23:42:10 -07:00
2026-07-02 20:16:43 -07:00
2026-06-23 20:03:44 -07:00
2026-07-12 12:49:37 -07:00
2026-05-15 22:24:12 -07:00
2026-07-11 19:15:20 -07:00
2026-05-13 15:05:05 -07:00
2026-04-23 23:02:36 -07:00
2026-06-17 04:51:31 -07:00
2026-06-29 21:02:34 -07:00
2026-07-05 16:10:36 -07:00
2026-06-23 19:52:52 -07:00
2026-06-23 20:14:14 -07:00
2026-07-12 21:33:50 -07:00
2026-07-12 22:12:18 -07:00
2026-05-15 15:19:56 -07:00
2026-07-01 15:39:34 -07:00
2026-06-13 19:40:15 -07:00
2026-05-23 20:44:01 -07:00
2026-07-02 11:38:31 -07:00
2026-07-02 23:42:14 -07:00
2026-07-04 21:28:19 -07:00
2026-07-03 00:12:10 -07:00
2026-06-23 11:26:51 -07:00
2026-04-20 12:59:58 -07:00
2026-05-21 18:15:26 -07:00
2026-05-20 03:19:44 -07:00
2026-05-03 14:10:11 -07:00
2026-05-03 07:47:45 -07:00
2026-05-17 11:33:56 -07:00
2026-06-22 04:18:35 -07:00
2026-06-25 08:35:44 -07:00
2026-05-17 11:33:56 -07:00
2026-07-03 07:47:03 -07:00
2026-05-20 03:19:44 -07:00
2026-04-23 23:02:36 -07:00
2026-06-03 19:06:53 -07:00
2026-05-20 04:12:40 -07:00
2026-03-26 00:10:53 -04:00
2026-07-03 21:45:21 -07:00
2026-06-03 22:35:28 -07:00
2026-06-26 13:57:00 -07:00
2026-07-12 19:39:42 -07:00
2026-05-16 09:21:06 -07:00
2026-06-03 13:02:23 -07:00
2026-04-24 23:16:29 -07:00
2026-06-27 09:28:29 -07:00
2026-06-27 12:15:42 -07:00
2026-06-10 09:21:48 -07:00
2026-04-25 18:22:37 -07:00
2026-07-11 17:16:49 -07:00
2026-05-23 15:57:48 -07:00
2026-06-10 09:21:48 -07:00
2026-07-02 18:28:06 -07:00
2026-06-21 13:25:40 -07:00
2026-07-01 07:33:56 -07:00
2026-06-13 11:46:53 -07:00
2026-07-09 19:58:03 -07:00
2026-05-02 08:05:33 -07:00
2026-06-30 08:20:07 -07:00
2026-04-09 13:01:19 -07:00
2026-06-10 09:21:48 -07:00
2026-06-19 23:47:20 +00:00
2026-06-30 01:50:52 -07:00
2026-05-05 12:14:20 -07:00
2026-05-06 02:14:05 -07:00
2026-04-16 10:04:44 -07:00
2026-06-23 21:09:36 -07:00
2026-05-21 18:15:26 -07:00
2026-04-23 23:02:35 -07:00
2026-07-03 03:15:17 -04:00
2026-06-07 02:26:00 +07:00
2026-04-23 23:02:36 -07:00
2026-06-03 19:06:53 -07:00
2026-06-10 09:21:48 -07:00
2026-04-24 08:55:02 -07:00
2026-06-10 09:21:48 -07:00
2026-04-10 02:59:38 -07:00
2026-05-19 08:13:07 -07:00
2026-05-21 18:15:26 -07:00
2026-07-08 15:24:01 -07:00
2026-06-23 20:03:44 -07:00
2026-06-17 03:29:39 -07:00
2026-05-01 13:08:07 -07:00
2026-04-13 18:21:31 -07:00
2026-04-22 01:31:40 -07:00
2026-04-20 10:16:13 -07:00
2026-05-08 08:37:26 -07:00
2026-05-07 23:21:05 -07:00
2026-06-23 19:28:22 -07:00
2026-05-29 21:32:09 -07:00
2026-07-05 13:15:56 -07:00
2026-07-12 11:23:23 -07:00
2026-07-11 18:52:28 -07:00
2026-07-11 00:01:10 -07:00
2026-07-03 07:47:03 -07:00
2026-05-23 00:03:22 -07:00
2026-06-03 20:52:44 -07:00
2026-04-27 01:40:07 -07:00
2026-06-10 09:21:48 -07:00
2026-07-01 15:39:33 -07:00
2026-07-07 22:06:23 -07:00
2026-06-29 23:17:49 -07:00
2026-07-12 12:49:37 -07:00
2026-04-23 23:02:36 -07:00
2026-07-03 23:16:58 -07:00
2026-06-10 09:21:48 -07:00