()
| 230 | }); |
| 231 | |
| 232 | const getLlm = async () => { |
| 233 | const { config } = await this.configHandler.loadConfig(); |
| 234 | if (!config) { |
| 235 | return undefined; |
| 236 | } |
| 237 | return config.selectedModelByRole.autocomplete ?? undefined; |
| 238 | }; |
| 239 | this.completionProvider = new CompletionProvider( |
| 240 | this.configHandler, |
| 241 | ide, |
nothing calls this directly
no test coverage detected