(input: SessionIdRpcInput)
| 571 | } |
| 572 | |
| 573 | async resumeGoal(input: SessionIdRpcInput): Promise<GoalSnapshot> { |
| 574 | const rpc = await this.getRpc(); |
| 575 | return rpc.resumeGoal({ |
| 576 | sessionId: input.sessionId, |
| 577 | agentId: this.interactiveAgentId, |
| 578 | }); |
| 579 | } |
| 580 | |
| 581 | async cancelGoal(input: SessionIdRpcInput): Promise<GoalSnapshot> { |
| 582 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected