()
| 340 | } |
| 341 | |
| 342 | override getModel(): { id: string; info: ModelInfo } { |
| 343 | const modelId = this.options.ollamaModelId || "" |
| 344 | return { |
| 345 | id: modelId, |
| 346 | info: this.models[modelId] || openAiModelInfoSaneDefaults, |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | async completePrompt(prompt: string): Promise<string> { |
| 351 | try { |
no outgoing calls
no test coverage detected