mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
#ifndef NETWORK_H
|
|
#define NETWORK_H
|
|
|
|
#include <QObject>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
|
|
class Network : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool isActive READ isActive WRITE setActive NOTIFY activeChanged)
|
|
public:
|
|
static Network *globalInstance();
|
|
|
|
bool isActive() const { return m_isActive; }
|
|
void setActive(bool b);
|
|
|
|
Q_INVOKABLE QString generateUniqueId() const;
|
|
Q_INVOKABLE bool sendConversation(const QString &ingestId, const QString &conversation);
|
|
|
|
Q_SIGNALS:
|
|
void activeChanged();
|
|
void healthCheckFailed(int code);
|
|
|
|
public Q_SLOTS:
|
|
void sendModelLoaded();
|
|
void sendResetContext();
|
|
void sendStartup();
|
|
void sendShutdown();
|
|
void sendCheckForUpdates();
|
|
|
|
private Q_SLOTS:
|
|
void handleIpifyFinished();
|
|
void handleHealthFinished();
|
|
void handleJsonUploadFinished();
|
|
void handleSslErrors(QNetworkReply *reply, const QList<QSslError> &errors);
|
|
void handleMixpanelFinished();
|
|
|
|
private:
|
|
void sendHealth();
|
|
void sendIpify();
|
|
void sendMixpanelEvent(const QString &event);
|
|
void sendMixpanel(const QByteArray &json);
|
|
bool packageAndSendJson(const QString &ingestId, const QString &json);
|
|
|
|
private:
|
|
bool m_isOptIn;
|
|
bool m_shouldSendStartup;
|
|
bool m_isActive;
|
|
QString m_ipify;
|
|
QString m_uniqueId;
|
|
QNetworkAccessManager m_networkManager;
|
|
QVector<QNetworkReply*> m_activeUploads;
|
|
|
|
private:
|
|
explicit Network();
|
|
~Network() {}
|
|
friend class MyNetwork;
|
|
};
|
|
|
|
#endif // LLM_H
|