mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
46 lines
1.0 KiB
C++
46 lines
1.0 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);
|
|
|
|
private Q_SLOTS:
|
|
void handleHealthFinished();
|
|
void handleJsonUploadFinished();
|
|
|
|
private:
|
|
void sendHealth();
|
|
bool packageAndSendJson(const QString &ingestId, const QString &json);
|
|
|
|
private:
|
|
bool m_isActive;
|
|
QString m_uniqueId;
|
|
QNetworkAccessManager m_networkManager;
|
|
QVector<QNetworkReply*> m_activeUploads;
|
|
|
|
private:
|
|
explicit Network();
|
|
~Network() {}
|
|
friend class MyNetwork;
|
|
};
|
|
|
|
#endif // LLM_H
|