(input: SessionIdRpcInput)
| 563 | } |
| 564 | |
| 565 | async pauseGoal(input: SessionIdRpcInput): Promise<GoalSnapshot> { |
| 566 | const rpc = await this.getRpc(); |
| 567 | return rpc.pauseGoal({ |
| 568 | sessionId: input.sessionId, |
| 569 | agentId: this.interactiveAgentId, |
| 570 | }); |
| 571 | } |
| 572 | |
| 573 | async resumeGoal(input: SessionIdRpcInput): Promise<GoalSnapshot> { |
| 574 | const rpc = await this.getRpc(); |