Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/renderer/features/agents/main/active-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6197,6 +6197,12 @@ export function ChatView({
setFilteredSubChatId(activeSubChatId)
}

// Switch the sub-chat to the configured Review-mode model + thinking
// before sending, mirroring the /review slash-command path.
if (activeSubChatId) {
applyModeDefaultModel(activeSubChatId, "review")
}

// Generate review message and set it for ChatViewInner to send
const message = generateReviewMessage(context)
if (activeSubChatId) {
Expand Down