Default to true for compat hardware.

pull/520/head
Adam Treat 1 year ago
parent 8afae10808
commit 45d7967438

@ -22,6 +22,7 @@ LLM::LLM()
: QObject{nullptr} : QObject{nullptr}
, m_chatListModel(new ChatListModel(this)) , m_chatListModel(new ChatListModel(this))
, m_threadCount(std::min(4, (int32_t) std::thread::hardware_concurrency())) , m_threadCount(std::min(4, (int32_t) std::thread::hardware_concurrency()))
, m_compatHardware(true)
{ {
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit,
this, &LLM::aboutToQuit); this, &LLM::aboutToQuit);

Loading…
Cancel
Save