(modelId: string)
| 217 | } |
| 218 | |
| 219 | setModel(modelId: string): void { |
| 220 | this.options.modelId = modelId |
| 221 | this.client = createLLMClient({ |
| 222 | token: this.options.token, |
| 223 | modelId, |
| 224 | taskId: this.taskId, |
| 225 | organizationId: this.options.organizationId, |
| 226 | repo: detectRepo(this.options.cwd), |
| 227 | baseUrl: this.options.baseUrl, |
| 228 | }) |
| 229 | } |
| 230 | |
| 231 | get modelId(): string { |
| 232 | return this.options.modelId |
no test coverage detected