(input: SetSessionThinkingRpcInput)
| 322 | } |
| 323 | |
| 324 | async setThinking(input: SetSessionThinkingRpcInput): Promise<void> { |
| 325 | const rpc = await this.getRpc(); |
| 326 | return rpc.setThinking({ |
| 327 | sessionId: input.sessionId, |
| 328 | agentId: this.interactiveAgentId, |
| 329 | effort: input.effort, |
| 330 | }); |
| 331 | } |
| 332 | |
| 333 | async setPermission(input: SetSessionPermissionRpcInput): Promise<void> { |
| 334 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected