#ifndef CHATGPT_H #define CHATGPT_H #include #include #include #include #include "../gpt4all-backend/llmodel.h" class ChatGPTPrivate; class ChatGPT : public QObject, public LLModel { Q_OBJECT public: ChatGPT(); virtual ~ChatGPT(); bool loadModel(const std::string &modelPath) override; bool isModelLoaded() const override; size_t stateSize() const override; size_t saveState(uint8_t *dest) const override; size_t restoreState(const uint8_t *src) override; void prompt(const std::string &prompt, std::function promptCallback, std::function responseCallback, std::function recalculateCallback, PromptContext &ctx) override; bool evalTokens(PromptContext &ctx, const std::vector &tokens) override { return true; } void setThreadCount(int32_t n_threads) override; int32_t threadCount() const override; void setModelName(const QString &modelName) { m_modelName = modelName; } void setAPIKey(const QString &apiKey) { m_apiKey = apiKey; } QList context() const { return m_context; } void setContext(const QList &context) { m_context = context; } private Q_SLOTS: void handleFinished(); void handleReadyRead(); void handleErrorOccurred(QNetworkReply::NetworkError code); private: PromptContext *m_ctx; std::function m_responseCallback; QString m_modelName; QString m_apiKey; QList m_context; QString m_currentResponse; QNetworkAccessManager m_networkManager; }; #endif // CHATGPT_H