(input: SessionIdRpcInput)
| 391 | } |
| 392 | |
| 393 | async clearPlan(input: SessionIdRpcInput): Promise<void> { |
| 394 | const rpc = await this.getRpc(); |
| 395 | await rpc.clearPlan({ |
| 396 | sessionId: input.sessionId, |
| 397 | agentId: this.interactiveAgentId, |
| 398 | }); |
| 399 | } |
| 400 | |
| 401 | async compact(input: SessionIdRpcInput & CompactOptions): Promise<void> { |
| 402 | const rpc = await this.getRpc(); |