2023-04-09 03:28:39 +00:00
|
|
|
#ifndef LLM_H
|
|
|
|
#define LLM_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2023-05-01 00:28:07 +00:00
|
|
|
|
|
|
|
#include "chat.h"
|
2023-04-09 03:28:39 +00:00
|
|
|
|
|
|
|
class LLM : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2023-04-18 15:42:16 +00:00
|
|
|
Q_PROPERTY(QList<QString> modelList READ modelList NOTIFY modelListChanged)
|
2023-05-01 00:28:07 +00:00
|
|
|
Q_PROPERTY(Chat *currentChat READ currentChat NOTIFY currentChatChanged)
|
2023-04-25 15:20:51 +00:00
|
|
|
|
2023-04-09 03:28:39 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
static LLM *globalInstance();
|
|
|
|
|
2023-04-18 15:42:16 +00:00
|
|
|
QList<QString> modelList() const;
|
2023-04-11 03:34:34 +00:00
|
|
|
Q_INVOKABLE bool checkForUpdates() const;
|
2023-05-01 00:28:07 +00:00
|
|
|
Chat *currentChat() const { return m_currentChat; }
|
|
|
|
|
2023-04-09 03:28:39 +00:00
|
|
|
Q_SIGNALS:
|
2023-04-18 15:42:16 +00:00
|
|
|
void modelListChanged();
|
2023-05-01 00:28:07 +00:00
|
|
|
void currentChatChanged();
|
2023-04-09 03:28:39 +00:00
|
|
|
|
|
|
|
private:
|
2023-05-01 00:28:07 +00:00
|
|
|
Chat *m_currentChat;
|
2023-04-09 03:28:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit LLM();
|
|
|
|
~LLM() {}
|
|
|
|
friend class MyLLM;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LLM_H
|