mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-10-23 00:50:47 +00:00
Clean up settings properly for removed models and also when user manually deletes.
Signed-off-by: Adam Treat <treat.adam@gmail.com>
This commit is contained in:
@@ -1137,27 +1137,18 @@ QString ModelList::uniqueModelName(const ModelInfo &model) const
|
||||
return baseName;
|
||||
}
|
||||
|
||||
QString ModelList::modelDirPath(const QString &modelName, bool isOnline)
|
||||
bool ModelList::modelExists(const QString &modelFilename) const
|
||||
{
|
||||
QVector<QString> possibleFilePaths;
|
||||
if (isOnline)
|
||||
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 appPath = QCoreApplication::applicationDirPath() + modelFilename;
|
||||
QFileInfo infoAppPath(appPath);
|
||||
if (infoAppPath.exists())
|
||||
return true;
|
||||
|
||||
QString downloadPath = MySettings::globalInstance()->modelPath() + modelFilename;
|
||||
QFileInfo infoLocalPath(downloadPath);
|
||||
if (infoLocalPath.exists())
|
||||
return MySettings::globalInstance()->modelPath();
|
||||
}
|
||||
return QString();
|
||||
QString downloadPath = MySettings::globalInstance()->modelPath() + modelFilename;
|
||||
QFileInfo infoLocalPath(downloadPath);
|
||||
if (infoLocalPath.exists())
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
void ModelList::updateModelsFromDirectory()
|
||||
@@ -1569,6 +1560,14 @@ void ModelList::updateModelsFromSettings()
|
||||
if (contains(id))
|
||||
continue;
|
||||
|
||||
// If we can't find the corresponding file, then delete it from settings as this reflects a
|
||||
// stale model. The file could have been deleted manually by the user for instance.
|
||||
if (!settings.contains(g + "/filename") || !modelExists(settings.value(g + "/filename").toString())) {
|
||||
settings.remove(g);
|
||||
settings.sync();
|
||||
continue;
|
||||
}
|
||||
|
||||
addModel(id);
|
||||
|
||||
QVector<QPair<int, QVariant>> data;
|
||||
|
Reference in New Issue
Block a user