2023-06-22 19:44:49 +00:00
|
|
|
#include "modellist.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2023-06-26 13:35:29 +00:00
|
|
|
InstalledModels::InstalledModels(QObject *parent)
|
|
|
|
: QSortFilterProxyModel(parent)
|
|
|
|
{
|
|
|
|
connect(this, &InstalledModels::rowsInserted, this, &InstalledModels::countChanged);
|
|
|
|
connect(this, &InstalledModels::rowsRemoved, this, &InstalledModels::countChanged);
|
|
|
|
connect(this, &InstalledModels::modelReset, this, &InstalledModels::countChanged);
|
|
|
|
connect(this, &InstalledModels::layoutChanged, this, &InstalledModels::countChanged);
|
|
|
|
}
|
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
bool InstalledModels::filterAcceptsRow(int sourceRow,
|
|
|
|
const QModelIndex &sourceParent) const
|
|
|
|
{
|
|
|
|
QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
|
|
|
|
bool isInstalled = sourceModel()->data(index, ModelList::InstalledRole).toBool();
|
|
|
|
return isInstalled;
|
|
|
|
}
|
|
|
|
|
2023-06-26 13:35:29 +00:00
|
|
|
int InstalledModels::count() const
|
|
|
|
{
|
|
|
|
return rowCount();
|
|
|
|
}
|
|
|
|
|
2023-06-26 21:50:11 +00:00
|
|
|
QString InstalledModels::firstFilename() const
|
|
|
|
{
|
|
|
|
if (rowCount() > 0) {
|
|
|
|
QModelIndex firstIndex = index(0, 0);
|
|
|
|
return sourceModel()->data(firstIndex, ModelList::FilenameRole).toString();
|
|
|
|
} else {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
DownloadableModels::DownloadableModels(QObject *parent)
|
|
|
|
: QSortFilterProxyModel(parent)
|
|
|
|
, m_expanded(false)
|
|
|
|
, m_limit(5)
|
|
|
|
{
|
|
|
|
connect(this, &DownloadableModels::rowsInserted, this, &DownloadableModels::countChanged);
|
|
|
|
connect(this, &DownloadableModels::rowsRemoved, this, &DownloadableModels::countChanged);
|
|
|
|
connect(this, &DownloadableModels::modelReset, this, &DownloadableModels::countChanged);
|
|
|
|
connect(this, &DownloadableModels::layoutChanged, this, &DownloadableModels::countChanged);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DownloadableModels::filterAcceptsRow(int sourceRow,
|
|
|
|
const QModelIndex &sourceParent) const
|
|
|
|
{
|
|
|
|
bool withinLimit = sourceRow < (m_expanded ? sourceModel()->rowCount() : m_limit);
|
|
|
|
QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
|
|
|
|
bool isDownloadable = !sourceModel()->data(index, ModelList::DescriptionRole).toString().isEmpty();
|
|
|
|
bool showInGUI = !sourceModel()->data(index, ModelList::DisableGUIRole).toBool();
|
|
|
|
return withinLimit && isDownloadable && showInGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
int DownloadableModels::count() const
|
|
|
|
{
|
|
|
|
return rowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DownloadableModels::isExpanded() const
|
|
|
|
{
|
|
|
|
return m_expanded;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadableModels::setExpanded(bool expanded)
|
|
|
|
{
|
|
|
|
if (m_expanded != expanded) {
|
|
|
|
m_expanded = expanded;
|
|
|
|
invalidateFilter();
|
|
|
|
emit expandedChanged(m_expanded);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyModelList: public ModelList { };
|
|
|
|
Q_GLOBAL_STATIC(MyModelList, modelListInstance)
|
|
|
|
ModelList *ModelList::globalInstance()
|
|
|
|
{
|
|
|
|
return modelListInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
ModelList::ModelList()
|
|
|
|
: QAbstractListModel(nullptr)
|
|
|
|
, m_installedModels(new InstalledModels(this))
|
|
|
|
, m_downloadableModels(new DownloadableModels(this))
|
|
|
|
{
|
|
|
|
m_installedModels->setSourceModel(this);
|
|
|
|
m_downloadableModels->setSourceModel(this);
|
|
|
|
m_watcher = new QFileSystemWatcher(this);
|
|
|
|
QSettings settings;
|
|
|
|
settings.sync();
|
|
|
|
m_localModelsPath = settings.value("modelPath", defaultLocalModelsPath()).toString();
|
|
|
|
const QString exePath = QCoreApplication::applicationDirPath() + QDir::separator();
|
|
|
|
m_watcher->addPath(exePath);
|
|
|
|
m_watcher->addPath(m_localModelsPath);
|
|
|
|
connect(m_watcher, &QFileSystemWatcher::directoryChanged, this, &ModelList::updateModelsFromDirectory);
|
|
|
|
updateModelsFromDirectory();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ModelList::incompleteDownloadPath(const QString &modelFile)
|
|
|
|
{
|
|
|
|
return localModelsPath() + "incomplete-" + modelFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QList<ModelInfo> ModelList::exportModelList() const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
QList<ModelInfo> infos;
|
|
|
|
for (ModelInfo *info : m_models)
|
|
|
|
if (info->installed)
|
|
|
|
infos.append(*info);
|
|
|
|
return infos;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QList<QString> ModelList::userDefaultModelList() const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
settings.sync();
|
|
|
|
|
|
|
|
const QString userDefaultModelName = settings.value("userDefaultModel").toString();
|
|
|
|
QList<QString> models;
|
|
|
|
bool foundUserDefault = false;
|
|
|
|
for (ModelInfo *info : m_models) {
|
|
|
|
if (info->installed && (info->name == userDefaultModelName || info->filename == userDefaultModelName)) {
|
|
|
|
foundUserDefault = true;
|
|
|
|
models.prepend(info->name.isEmpty() ? info->filename : info->name);
|
|
|
|
} else if (info->installed) {
|
|
|
|
models.append(info->name.isEmpty() ? info->filename : info->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString defaultFileName = "Application default";
|
|
|
|
if (foundUserDefault)
|
|
|
|
models.append(defaultFileName);
|
|
|
|
else
|
|
|
|
models.prepend(defaultFileName);
|
|
|
|
return models;
|
|
|
|
}
|
|
|
|
|
|
|
|
ModelInfo ModelList::defaultModelInfo() const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
settings.sync();
|
|
|
|
|
|
|
|
// The user default model can be set by the user in the settings dialog. The "default" user
|
|
|
|
// default model is "Application default" which signals we should use the default model that was
|
|
|
|
// specified by the models.json file.
|
2023-06-26 21:50:11 +00:00
|
|
|
const QString userDefaultModelName = settings.value("userDefaultModel").toString();
|
|
|
|
const bool hasUserDefaultName = !userDefaultModelName.isEmpty() && userDefaultModelName != "Application default";
|
|
|
|
const QString defaultModelName = settings.value("defaultModel").toString();
|
|
|
|
const bool hasDefaultName = hasUserDefaultName ? false : !defaultModelName.isEmpty();
|
|
|
|
|
2023-06-22 19:44:49 +00:00
|
|
|
ModelInfo *defaultModel = nullptr;
|
|
|
|
for (ModelInfo *info : m_models) {
|
|
|
|
if (!info->installed)
|
|
|
|
continue;
|
|
|
|
defaultModel = info;
|
2023-06-26 21:50:11 +00:00
|
|
|
|
|
|
|
// If we don't have either setting, then just use the first model that is installed
|
|
|
|
if (!hasUserDefaultName && !hasDefaultName)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// If we don't have a user specified default, but *do* have a default setting and match, then use it
|
|
|
|
if (!hasUserDefaultName && hasDefaultName && (defaultModel->name == defaultModelName || defaultModel->filename == defaultModelName))
|
|
|
|
break;
|
|
|
|
|
|
|
|
// If we have a user specified default and match, then use it
|
|
|
|
if (hasUserDefaultName && (defaultModel->name == userDefaultModelName || defaultModel->filename == userDefaultModelName))
|
|
|
|
break;
|
2023-06-22 19:44:49 +00:00
|
|
|
}
|
|
|
|
if (defaultModel)
|
|
|
|
return *defaultModel;
|
|
|
|
return ModelInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ModelList::contains(const QString &filename) const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
return m_modelMap.contains(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ModelList::lessThan(const ModelInfo* a, const ModelInfo* b)
|
|
|
|
{
|
|
|
|
// Rule 1: Non-empty 'order' before empty
|
|
|
|
if (a->order.isEmpty() != b->order.isEmpty()) {
|
|
|
|
return !a->order.isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rule 2: Both 'order' are non-empty, sort alphanumerically
|
|
|
|
if (!a->order.isEmpty() && !b->order.isEmpty()) {
|
|
|
|
return a->order < b->order;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rule 3: Both 'order' are empty, sort by filename
|
|
|
|
return a->filename < b->filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModelList::addModel(const QString &filename)
|
|
|
|
{
|
2023-06-26 00:22:38 +00:00
|
|
|
const bool hasModel = contains(filename);
|
|
|
|
Q_ASSERT(!hasModel);
|
|
|
|
if (hasModel) {
|
2023-06-22 19:44:49 +00:00
|
|
|
qWarning() << "ERROR: model list already contains" << filename;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
beginInsertRows(QModelIndex(), m_models.size(), m_models.size());
|
2023-06-26 00:22:38 +00:00
|
|
|
int modelSizeAfter = 0;
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
ModelInfo *info = new ModelInfo;
|
|
|
|
info->filename = filename;
|
|
|
|
m_models.append(info);
|
|
|
|
m_modelMap.insert(filename, info);
|
|
|
|
std::stable_sort(m_models.begin(), m_models.end(), ModelList::lessThan);
|
|
|
|
modelSizeAfter = m_models.size();
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
endInsertRows();
|
2023-06-26 00:22:38 +00:00
|
|
|
emit dataChanged(index(0, 0), index(modelSizeAfter - 1, 0));
|
2023-06-22 19:44:49 +00:00
|
|
|
emit userDefaultModelListChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ModelList::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent)
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
return m_models.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ModelList::dataInternal(const ModelInfo *info, int role) const
|
|
|
|
{
|
|
|
|
switch (role) {
|
|
|
|
case NameRole:
|
|
|
|
return info->name;
|
|
|
|
case FilenameRole:
|
|
|
|
return info->filename;
|
|
|
|
case DirpathRole:
|
|
|
|
return info->dirpath;
|
|
|
|
case FilesizeRole:
|
|
|
|
return info->filesize;
|
|
|
|
case Md5sumRole:
|
|
|
|
return info->md5sum;
|
|
|
|
case CalcHashRole:
|
|
|
|
return info->calcHash;
|
|
|
|
case InstalledRole:
|
|
|
|
return info->installed;
|
|
|
|
case DefaultRole:
|
|
|
|
return info->isDefault;
|
|
|
|
case ChatGPTRole:
|
|
|
|
return info->isChatGPT;
|
|
|
|
case DisableGUIRole:
|
|
|
|
return info->disableGUI;
|
|
|
|
case DescriptionRole:
|
|
|
|
return info->description;
|
|
|
|
case RequiresVersionRole:
|
|
|
|
return info->requiresVersion;
|
|
|
|
case DeprecatedVersionRole:
|
|
|
|
return info->deprecatedVersion;
|
|
|
|
case UrlRole:
|
|
|
|
return info->url;
|
|
|
|
case BytesReceivedRole:
|
|
|
|
return info->bytesReceived;
|
|
|
|
case BytesTotalRole:
|
|
|
|
return info->bytesTotal;
|
|
|
|
case TimestampRole:
|
|
|
|
return info->timestamp;
|
|
|
|
case SpeedRole:
|
|
|
|
return info->speed;
|
|
|
|
case DownloadingRole:
|
|
|
|
return info->isDownloading;
|
|
|
|
case IncompleteRole:
|
|
|
|
return info->isIncomplete;
|
|
|
|
case DownloadErrorRole:
|
|
|
|
return info->downloadError;
|
|
|
|
case OrderRole:
|
|
|
|
return info->order;
|
|
|
|
case RamrequiredRole:
|
|
|
|
return info->ramrequired;
|
|
|
|
case ParametersRole:
|
|
|
|
return info->parameters;
|
|
|
|
case QuantRole:
|
|
|
|
return info->quant;
|
|
|
|
case TypeRole:
|
|
|
|
return info->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ModelList::data(const QString &filename, int role) const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
ModelInfo *info = m_modelMap.value(filename);
|
|
|
|
return dataInternal(info, role);
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ModelList::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
if (!index.isValid() || index.row() < 0 || index.row() >= m_models.size())
|
|
|
|
return QVariant();
|
|
|
|
const ModelInfo *info = m_models.at(index.row());
|
|
|
|
return dataInternal(info, role);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModelList::updateData(const QString &filename, int role, const QVariant &value)
|
|
|
|
{
|
2023-06-26 00:22:38 +00:00
|
|
|
int modelSize;
|
|
|
|
bool updateInstalled;
|
|
|
|
bool updateIncomplete;
|
|
|
|
int index;
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
if (!m_modelMap.contains(filename)) {
|
|
|
|
qWarning() << "ERROR: cannot update as model map does not contain" << filename;
|
|
|
|
return;
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-06-26 00:22:38 +00:00
|
|
|
ModelInfo *info = m_modelMap.value(filename);
|
|
|
|
index = m_models.indexOf(info);
|
|
|
|
if (index == -1) {
|
|
|
|
qWarning() << "ERROR: cannot update as model list does not contain" << filename;
|
|
|
|
return;
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-06-26 00:22:38 +00:00
|
|
|
switch (role) {
|
|
|
|
case NameRole:
|
|
|
|
info->name = value.toString(); break;
|
|
|
|
case FilenameRole:
|
|
|
|
info->filename = value.toString(); break;
|
|
|
|
case DirpathRole:
|
|
|
|
info->dirpath = value.toString(); break;
|
|
|
|
case FilesizeRole:
|
|
|
|
info->filesize = value.toString(); break;
|
|
|
|
case Md5sumRole:
|
|
|
|
info->md5sum = value.toByteArray(); break;
|
|
|
|
case CalcHashRole:
|
|
|
|
info->calcHash = value.toBool(); break;
|
|
|
|
case InstalledRole:
|
|
|
|
info->installed = value.toBool(); break;
|
|
|
|
case DefaultRole:
|
|
|
|
info->isDefault = value.toBool(); break;
|
|
|
|
case ChatGPTRole:
|
|
|
|
info->isChatGPT = value.toBool(); break;
|
|
|
|
case DisableGUIRole:
|
|
|
|
info->disableGUI = value.toBool(); break;
|
|
|
|
case DescriptionRole:
|
|
|
|
info->description = value.toString(); break;
|
|
|
|
case RequiresVersionRole:
|
|
|
|
info->requiresVersion = value.toString(); break;
|
|
|
|
case DeprecatedVersionRole:
|
|
|
|
info->deprecatedVersion = value.toString(); break;
|
|
|
|
case UrlRole:
|
|
|
|
info->url = value.toString(); break;
|
|
|
|
case BytesReceivedRole:
|
|
|
|
info->bytesReceived = value.toLongLong(); break;
|
|
|
|
case BytesTotalRole:
|
|
|
|
info->bytesTotal = value.toLongLong(); break;
|
|
|
|
case TimestampRole:
|
|
|
|
info->timestamp = value.toLongLong(); break;
|
|
|
|
case SpeedRole:
|
|
|
|
info->speed = value.toString(); break;
|
|
|
|
case DownloadingRole:
|
|
|
|
info->isDownloading = value.toBool(); break;
|
|
|
|
case IncompleteRole:
|
|
|
|
info->isIncomplete = value.toBool(); break;
|
|
|
|
case DownloadErrorRole:
|
|
|
|
info->downloadError = value.toString(); break;
|
|
|
|
case OrderRole:
|
|
|
|
info->order = value.toString(); break;
|
|
|
|
case RamrequiredRole:
|
|
|
|
info->ramrequired = value.toInt(); break;
|
|
|
|
case ParametersRole:
|
|
|
|
info->parameters = value.toString(); break;
|
|
|
|
case QuantRole:
|
|
|
|
info->quant = value.toString(); break;
|
|
|
|
case TypeRole:
|
|
|
|
info->type = value.toString(); break;
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-06-26 00:22:38 +00:00
|
|
|
// Extra guarantee that these always remains in sync with filesystem
|
|
|
|
QFileInfo fileInfo(info->dirpath + info->filename);
|
|
|
|
if (info->installed != fileInfo.exists()) {
|
|
|
|
info->installed = fileInfo.exists();
|
|
|
|
updateInstalled = true;
|
|
|
|
}
|
|
|
|
QFileInfo incompleteInfo(incompleteDownloadPath(info->filename));
|
|
|
|
if (info->isIncomplete != incompleteInfo.exists()) {
|
|
|
|
info->isIncomplete = incompleteInfo.exists();
|
|
|
|
updateIncomplete = true;
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-06-26 00:22:38 +00:00
|
|
|
std::stable_sort(m_models.begin(), m_models.end(), ModelList::lessThan);
|
|
|
|
modelSize = m_models.size();
|
|
|
|
}
|
|
|
|
emit dataChanged(createIndex(0, 0), createIndex(modelSize - 1, 0));
|
2023-06-22 19:44:49 +00:00
|
|
|
emit userDefaultModelListChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
ModelInfo ModelList::modelInfo(const QString &filename) const
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&m_mutex);
|
|
|
|
if (!m_modelMap.contains(filename))
|
|
|
|
return ModelInfo();
|
|
|
|
return *m_modelMap.value(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ModelList::defaultLocalModelsPath() const
|
|
|
|
{
|
|
|
|
QString localPath = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation)
|
|
|
|
+ "/";
|
|
|
|
QString testWritePath = localPath + QString("test_write.txt");
|
|
|
|
QString canonicalLocalPath = QFileInfo(localPath).canonicalFilePath() + "/";
|
|
|
|
QDir localDir(localPath);
|
|
|
|
if (!localDir.exists()) {
|
|
|
|
if (!localDir.mkpath(localPath)) {
|
|
|
|
qWarning() << "ERROR: Local download directory can't be created:" << canonicalLocalPath;
|
|
|
|
return canonicalLocalPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (QFileInfo::exists(testWritePath))
|
|
|
|
return canonicalLocalPath;
|
|
|
|
|
|
|
|
QFile testWriteFile(testWritePath);
|
|
|
|
if (testWriteFile.open(QIODeviceBase::ReadWrite)) {
|
|
|
|
testWriteFile.close();
|
|
|
|
return canonicalLocalPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
qWarning() << "ERROR: Local download path appears not writeable:" << canonicalLocalPath;
|
|
|
|
return canonicalLocalPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ModelList::localModelsPath() const
|
|
|
|
{
|
|
|
|
return m_localModelsPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModelList::setLocalModelsPath(const QString &modelPath)
|
|
|
|
{
|
|
|
|
QString filePath = (modelPath.startsWith("file://") ?
|
|
|
|
QUrl(modelPath).toLocalFile() : modelPath);
|
|
|
|
QString canonical = QFileInfo(filePath).canonicalFilePath() + "/";
|
|
|
|
if (m_localModelsPath != canonical) {
|
|
|
|
m_localModelsPath = canonical;
|
|
|
|
emit localModelsPathChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ModelList::modelDirPath(const QString &modelName, bool isChatGPT)
|
|
|
|
{
|
|
|
|
QVector<QString> possibleFilePaths;
|
|
|
|
if (isChatGPT)
|
|
|
|
possibleFilePaths << "/" + modelName + ".txt";
|
|
|
|
else {
|
|
|
|
possibleFilePaths << "/ggml-" + modelName + ".bin";
|
|
|
|
possibleFilePaths << "/" + modelName + ".bin";
|
|
|
|
}
|
|
|
|
for (const QString &modelFilename : possibleFilePaths) {
|
|
|
|
QString appPath = QCoreApplication::applicationDirPath() + modelFilename;
|
|
|
|
QFileInfo infoAppPath(appPath);
|
|
|
|
if (infoAppPath.exists())
|
|
|
|
return QCoreApplication::applicationDirPath();
|
|
|
|
|
|
|
|
QString downloadPath = localModelsPath() + modelFilename;
|
|
|
|
QFileInfo infoLocalPath(downloadPath);
|
|
|
|
if (infoLocalPath.exists())
|
|
|
|
return localModelsPath();
|
|
|
|
}
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModelList::updateModelsFromDirectory()
|
|
|
|
{
|
|
|
|
const QString exePath = QCoreApplication::applicationDirPath() + QDir::separator();
|
|
|
|
const QString localPath = localModelsPath();
|
|
|
|
|
2023-06-26 14:11:33 +00:00
|
|
|
auto processDirectory = [&](const QString& path) {
|
|
|
|
QDirIterator it(path, QDirIterator::Subdirectories);
|
|
|
|
while (it.hasNext()) {
|
|
|
|
it.next();
|
|
|
|
|
|
|
|
if (!it.fileInfo().isDir()) {
|
|
|
|
QString filename = it.fileName();
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-06-26 14:11:33 +00:00
|
|
|
// All files that end with .bin and have 'ggml' somewhere in the name
|
|
|
|
if ((filename.endsWith(".bin") && filename.contains("ggml") && !filename.startsWith("incomplete"))
|
|
|
|
|| (filename.endsWith(".txt") && filename.startsWith("chatgpt-"))) {
|
|
|
|
|
|
|
|
QString filePath = it.filePath();
|
|
|
|
QFileInfo info(filePath);
|
|
|
|
|
|
|
|
if (!info.exists())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!contains(filename))
|
|
|
|
addModel(filename);
|
|
|
|
|
|
|
|
updateData(filename, ChatGPTRole, filename.startsWith("chatgpt-"));
|
|
|
|
updateData(filename, DirpathRole, path);
|
|
|
|
updateData(filename, FilesizeRole, toFileSize(info.size()));
|
|
|
|
}
|
2023-06-22 19:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-26 14:11:33 +00:00
|
|
|
};
|
2023-06-22 19:44:49 +00:00
|
|
|
|
2023-06-26 14:11:33 +00:00
|
|
|
processDirectory(exePath);
|
|
|
|
if (localPath != exePath)
|
|
|
|
processDirectory(localPath);
|
2023-06-22 19:44:49 +00:00
|
|
|
}
|