Don't crash right out of the installer ;)

This commit is contained in:
Adam Treat 2023-04-24 21:07:16 -04:00
parent 4cf7e122a9
commit a02b0c14ca

View File

@ -101,7 +101,7 @@ bool LLMObject::loadModelPrivate(const QString &modelName)
}
void LLMObject::setThreadCount(int32_t n_threads) {
if (m_llmodel->threadCount() != n_threads) {
if (m_llmodel && m_llmodel->threadCount() != n_threads) {
m_llmodel->setThreadCount(n_threads);
emit threadCountChanged();
}