(input: SessionIdRpcInput)
| 304 | } |
| 305 | |
| 306 | async cancel(input: SessionIdRpcInput): Promise<void> { |
| 307 | const agentId = this.interactiveAgentId; |
| 308 | const rpc = await this.getRpc(); |
| 309 | return rpc.cancel({ |
| 310 | sessionId: input.sessionId, |
| 311 | agentId, |
| 312 | }); |
| 313 | } |
| 314 | |
| 315 | async setModel(input: SetSessionModelRpcInput): Promise<SetSessionModelRpcResult> { |
| 316 | const rpc = await this.getRpc(); |