()
| 181 | } |
| 182 | |
| 183 | async cancel(): Promise<void> { |
| 184 | this.ensureOpen(); |
| 185 | await this.rpc.cancel({ sessionId: this.id }); |
| 186 | } |
| 187 | |
| 188 | async setModel(model: string): Promise<void> { |
| 189 | this.ensureOpen(); |
nothing calls this directly
no test coverage detected