fix: pass attachments to agent prompt from RPC interface

This PR updates the call to `agent.prompt` with the `attachments` prop provided in the JSON input.
This commit is contained in:
kiliman 2025-11-25 21:56:32 -05:00
parent a484330cd1
commit 958d265112

View file

@ -609,7 +609,7 @@ async function runRpcMode(agent: Agent, _sessionManager: SessionManager): Promis
// Handle different RPC commands
if (input.type === "prompt" && input.message) {
await agent.prompt(input.message);
await agent.prompt(input.message, input.attachments);
} else if (input.type === "abort") {
agent.abort();
}