(input: SessionIdRpcInput)
| 425 | } |
| 426 | |
| 427 | async getContext(input: SessionIdRpcInput): Promise<AgentContextData> { |
| 428 | const rpc = await this.getRpc(); |
| 429 | return rpc.getContext({ |
| 430 | sessionId: input.sessionId, |
| 431 | agentId: this.interactiveAgentId, |
| 432 | }); |
| 433 | } |
| 434 | |
| 435 | async getUsage(input: SessionIdRpcInput): Promise<SessionUsage> { |
| 436 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected