| 44 | } |
| 45 | |
| 46 | QFuture<QList<QString>> LMStudioProvider::getInstalledModels(const QString &url) |
| 47 | { |
| 48 | m_client->setUrl(ensureOpenAIV1Base(url)); |
| 49 | m_client->setApiKey(apiKey()); |
| 50 | return m_client->listModels(); |
| 51 | } |
| 52 | |
| 53 | PluginLLMCore::ProviderID LMStudioProvider::providerID() const |
| 54 | { |
nothing calls this directly
no test coverage detected