()
| 322 | } |
| 323 | |
| 324 | override getModel(): { id: string; info: ModelInfo } { |
| 325 | const id = this.options.apiModelId ?? qwenCodeDefaultModelId |
| 326 | const info = qwenCodeModels[id as keyof typeof qwenCodeModels] || qwenCodeModels[qwenCodeDefaultModelId] |
| 327 | return { id, info } |
| 328 | } |
| 329 | |
| 330 | async completePrompt(prompt: string): Promise<string> { |
| 331 | await this.ensureAuthenticated() |
no outgoing calls
no test coverage detected