| 91 | } |
| 92 | |
| 93 | QStringList SmartUTManager::modelList() const |
| 94 | { |
| 95 | const auto &models = d->aiSrv->getAllModel(); |
| 96 | QStringList names; |
| 97 | std::transform(models.cbegin(), models.cend(), std::back_inserter(names), |
| 98 | [](const LLMInfo &info) { |
| 99 | return info.modelName; |
| 100 | }); |
| 101 | return names; |
| 102 | } |
| 103 | |
| 104 | QList<ProjectInfo> SmartUTManager::projectList() const |
| 105 | { |
no test coverage detected