2023-04-08 23:28:39 -04:00
|
|
|
#include "llm.h"
|
2024-06-04 14:47:11 -04:00
|
|
|
|
2024-03-19 10:56:14 -04:00
|
|
|
#include "../gpt4all-backend/llmodel.h"
|
2023-06-26 16:34:35 -04:00
|
|
|
#include "../gpt4all-backend/sysinfo.h"
|
2023-04-08 23:28:39 -04:00
|
|
|
|
|
|
|
#include <QCoreApplication>
|
2024-06-04 14:47:11 -04:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QGlobalStatic>
|
|
|
|
#include <QNetworkInformation>
|
2023-04-10 23:34:34 -04:00
|
|
|
#include <QProcess>
|
2023-07-12 08:50:21 -04:00
|
|
|
#include <QSettings>
|
2024-01-11 12:02:39 -05:00
|
|
|
#include <QUrl>
|
2024-06-04 14:47:11 -04:00
|
|
|
#include <QtLogging>
|
|
|
|
|
2024-06-24 18:49:23 -04:00
|
|
|
#ifdef GPT4ALL_OFFLINE_INSTALLER
|
|
|
|
# include <QDesktopServices>
|
|
|
|
#else
|
2024-06-04 14:47:11 -04:00
|
|
|
# include "network.h"
|
2024-01-12 09:26:53 -05:00
|
|
|
#endif
|
|
|
|
|
2024-06-24 18:49:23 -04:00
|
|
|
using namespace Qt::Literals::StringLiterals;
|
|
|
|
|
2023-04-08 23:28:39 -04:00
|
|
|
class MyLLM: public LLM { };
|
|
|
|
Q_GLOBAL_STATIC(MyLLM, llmInstance)
|
|
|
|
LLM *LLM::globalInstance()
|
|
|
|
{
|
|
|
|
return llmInstance();
|
|
|
|
}
|
|
|
|
|
2023-05-01 09:10:05 -04:00
|
|
|
LLM::LLM()
|
2023-04-08 23:28:39 -04:00
|
|
|
: QObject{nullptr}
|
2024-03-19 10:56:14 -04:00
|
|
|
, m_compatHardware(LLModel::Implementation::hasSupportedCPU())
|
2023-04-18 11:42:16 -04:00
|
|
|
{
|
2024-02-07 09:53:14 -05:00
|
|
|
QNetworkInformation::loadDefaultBackend();
|
2024-02-27 13:14:24 -05:00
|
|
|
auto * netinfo = QNetworkInformation::instance();
|
|
|
|
if (netinfo) {
|
|
|
|
connect(netinfo, &QNetworkInformation::reachabilityChanged,
|
|
|
|
this, &LLM::isNetworkOnlineChanged);
|
|
|
|
}
|
2023-07-12 08:50:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LLM::hasSettingsAccess() const
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.sync();
|
|
|
|
return settings.status() == QSettings::NoError;
|
2023-04-18 11:42:16 -04:00
|
|
|
}
|
|
|
|
|
2023-04-10 23:34:34 -04:00
|
|
|
bool LLM::checkForUpdates() const
|
|
|
|
{
|
2024-06-25 17:22:51 -04:00
|
|
|
#ifdef GPT4ALL_OFFLINE_INSTALLER
|
|
|
|
# pragma message(__FILE__ ": WARNING: offline installer build will not check for updates!")
|
2023-09-21 18:44:28 -04:00
|
|
|
return QDesktopServices::openUrl(QUrl("https://gpt4all.io/"));
|
2024-06-25 17:22:51 -04:00
|
|
|
#else
|
2024-04-25 13:16:52 -04:00
|
|
|
Network::globalInstance()->trackEvent("check_for_updates");
|
2023-04-27 07:41:23 -04:00
|
|
|
|
2023-04-10 23:34:34 -04:00
|
|
|
#if defined(Q_OS_LINUX)
|
2024-06-24 18:49:23 -04:00
|
|
|
QString tool = u"maintenancetool"_s;
|
2023-04-10 23:34:34 -04:00
|
|
|
#elif defined(Q_OS_WINDOWS)
|
2024-06-24 18:49:23 -04:00
|
|
|
QString tool = u"maintenancetool.exe"_s;
|
2023-04-10 23:34:34 -04:00
|
|
|
#elif defined(Q_OS_DARWIN)
|
2024-06-24 18:49:23 -04:00
|
|
|
QString tool = u"../../../maintenancetool.app/Contents/MacOS/maintenancetool"_s;
|
2023-04-10 23:34:34 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
QString fileName = QCoreApplication::applicationDirPath()
|
2023-04-29 21:02:54 -04:00
|
|
|
+ "/../" + tool;
|
2023-04-10 23:34:34 -04:00
|
|
|
if (!QFileInfo::exists(fileName)) {
|
|
|
|
qDebug() << "Couldn't find tool at" << fileName << "so cannot check for updates!";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QProcess::startDetached(fileName);
|
2024-06-25 17:22:51 -04:00
|
|
|
#endif
|
2023-04-10 23:34:34 -04:00
|
|
|
}
|
2023-05-01 12:41:03 -04:00
|
|
|
|
2024-01-11 12:02:39 -05:00
|
|
|
bool LLM::directoryExists(const QString &path)
|
2023-06-02 22:52:55 -04:00
|
|
|
{
|
|
|
|
const QUrl url(path);
|
|
|
|
const QString localFilePath = url.isLocalFile() ? url.toLocalFile() : path;
|
|
|
|
const QFileInfo info(localFilePath);
|
|
|
|
return info.exists() && info.isDir();
|
|
|
|
}
|
|
|
|
|
2024-01-11 12:02:39 -05:00
|
|
|
bool LLM::fileExists(const QString &path)
|
2023-06-02 22:52:55 -04:00
|
|
|
{
|
|
|
|
const QUrl url(path);
|
|
|
|
const QString localFilePath = url.isLocalFile() ? url.toLocalFile() : path;
|
|
|
|
const QFileInfo info(localFilePath);
|
|
|
|
return info.exists() && info.isFile();
|
|
|
|
}
|
|
|
|
|
2023-06-22 15:44:49 -04:00
|
|
|
qint64 LLM::systemTotalRAMInGB() const
|
|
|
|
{
|
|
|
|
return getSystemTotalRAMInGB();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString LLM::systemTotalRAMInGBString() const
|
|
|
|
{
|
|
|
|
return QString::fromStdString(getSystemTotalRAMInGBString());
|
|
|
|
}
|
2024-02-07 09:53:14 -05:00
|
|
|
|
|
|
|
bool LLM::isNetworkOnline() const
|
|
|
|
{
|
2024-02-27 13:14:24 -05:00
|
|
|
auto * netinfo = QNetworkInformation::instance();
|
|
|
|
return !netinfo || netinfo->reachability() == QNetworkInformation::Reachability::Online;
|
2024-02-07 09:53:14 -05:00
|
|
|
}
|