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