Reapply "fix(tui): don't show 'Agent not found' toast for subagents (#6528)"
This reverts commit 97a0fd1d54.
pull/6569/head
parent
d59357c89b
commit
4039670a24
|
|
@ -202,7 +202,11 @@ export function Prompt(props: PromptProps) {
|
|||
|
||||
syncedSessionID = sessionID
|
||||
|
||||
if (msg.agent) local.agent.set(msg.agent)
|
||||
// Only set agent if it's a primary agent (not a subagent)
|
||||
const isPrimaryAgent = local.agent.list().some((x) => x.name === msg.agent)
|
||||
if (msg.agent && isPrimaryAgent) {
|
||||
local.agent.set(msg.agent)
|
||||
}
|
||||
if (msg.model) local.model.set(msg.model)
|
||||
if (msg.variant) local.model.variant.set(msg.variant)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue