chat: fix #includes with include-what-you-use (#2401)

Also use qGuiApp instead of qApp.

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel
2024-06-04 14:47:11 -04:00
committed by GitHub
parent 55d709862f
commit d3d777bc51
36 changed files with 500 additions and 118 deletions

View File

@@ -2,9 +2,16 @@
#define SERVER_H
#include "chatllm.h"
#include "database.h"
#include <QHttpServerResponse>
#include <QObject>
#include <QtHttpServer/QHttpServer>
#include <QList>
#include <QString>
class Chat;
class QHttpServer;
class QHttpServerRequest;
class Server : public ChatLLM
{