(input: SessionIdRpcInput)
| 383 | } |
| 384 | |
| 385 | async getPlan(input: SessionIdRpcInput): Promise<SessionPlan> { |
| 386 | const rpc = await this.getRpc(); |
| 387 | return rpc.getPlan({ |
| 388 | sessionId: input.sessionId, |
| 389 | agentId: this.interactiveAgentId, |
| 390 | }); |
| 391 | } |
| 392 | |
| 393 | async clearPlan(input: SessionIdRpcInput): Promise<void> { |
| 394 | const rpc = await this.getRpc(); |