refactor(agent): require complete send options

This commit is contained in:
_Kerman
2026-07-24 16:23:20 +08:00
parent 45fc7fda3d
commit e23960b8ad
15 changed files with 116 additions and 62 deletions

View File

@@ -2507,7 +2507,7 @@ export function createTuiChat(
} else if (agent.status === 'running') {
agent.steer(content, { source: { kind: 'user' } })
} else {
agent.send(content, { source: { kind: 'user' } })
agent.followup(content, { source: { kind: 'user' } })
}
}