(input: SetSessionModelRpcInput)
| 313 | } |
| 314 | |
| 315 | async setModel(input: SetSessionModelRpcInput): Promise<SetSessionModelRpcResult> { |
| 316 | const rpc = await this.getRpc(); |
| 317 | return rpc.setModel({ |
| 318 | sessionId: input.sessionId, |
| 319 | agentId: this.interactiveAgentId, |
| 320 | model: input.model, |
| 321 | }); |
| 322 | } |
| 323 | |
| 324 | async setThinking(input: SetSessionThinkingRpcInput): Promise<void> { |
| 325 | const rpc = await this.getRpc(); |