(input: { sessionId: string; commandId: string })
| 260 | } |
| 261 | |
| 262 | async cancelShellCommand(input: { sessionId: string; commandId: string }): Promise<void> { |
| 263 | const agentId = this.interactiveAgentId; |
| 264 | const rpc = await this.getRpc(); |
| 265 | return rpc.cancelShellCommand({ |
| 266 | sessionId: input.sessionId, |
| 267 | agentId, |
| 268 | commandId: input.commandId, |
| 269 | }); |
| 270 | } |
| 271 | |
| 272 | async steer(input: SessionPromptRpcInput): Promise<void> { |
| 273 | const agentId = this.interactiveAgentId; |
nothing calls this directly
no test coverage detected