gpt4all/gpt4all-chat/server.h
Adam Treat f4fb3df437 Brave search tool calling.
Signed-off-by: Adam Treat <treat.adam@gmail.com>
2024-08-14 07:43:48 -04:00

43 lines
952 B
C++

#ifndef SERVER_H
#define SERVER_H
#include "chatllm.h"
#include "sourceexcerpt.h"
#include <QHttpServerRequest>
#include <QHttpServerResponse>
#include <QObject>
#include <QList>
#include <QString>
class Chat;
class QHttpServer;
class Server : public ChatLLM
{
Q_OBJECT
public:
Server(Chat *parent);
virtual ~Server();
public Q_SLOTS:
void start();
Q_SIGNALS:
void requestServerNewPromptResponsePair(const QString &prompt);
private Q_SLOTS:
QHttpServerResponse handleCompletionRequest(const QHttpServerRequest &request, bool isChat);
void handleSourceExcerptsChanged(const QList<SourceExcerpt> &sourceExcerpts) { m_sourceExcerpts = sourceExcerpts; }
void handleCollectionListChanged(const QList<QString> &collectionList) { m_collections = collectionList; }
private:
Chat *m_chat;
QHttpServer *m_server;
QList<SourceExcerpt> m_sourceExcerpts;
QList<QString> m_collections;
};
#endif // SERVER_H