mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
Send info on how many are running into this error.
This commit is contained in:
parent
6d943917f1
commit
c054efa6ac
5
main.qml
5
main.qml
@ -25,9 +25,10 @@ Window {
|
||||
|
||||
// Startup code
|
||||
Component.onCompleted: {
|
||||
if (!LLM.compatHardware)
|
||||
if (!LLM.compatHardware) {
|
||||
Network.sendNonCompatHardware();
|
||||
errorCompatHardware.open();
|
||||
else
|
||||
} else
|
||||
startupDialogs();
|
||||
}
|
||||
|
||||
|
@ -358,6 +358,13 @@ void Network::sendRecalculatingContext(int conversationLength)
|
||||
sendMixpanelEvent("recalc_context", QVector<KeyValue>{kv});
|
||||
}
|
||||
|
||||
void Network::sendNonCompatHardware()
|
||||
{
|
||||
if (!m_usageStatsActive)
|
||||
return;
|
||||
sendMixpanelEvent("noncompat_hardware");
|
||||
}
|
||||
|
||||
void Network::sendMixpanelEvent(const QString &ev, const QVector<KeyValue> &values)
|
||||
{
|
||||
if (!m_usageStatsActive)
|
||||
|
Loading…
Reference in New Issue
Block a user