fix chatmodel.h #includes

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel 2024-12-13 18:15:05 -05:00
parent 0e0a56038c
commit 57b34d50ca
3 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,7 @@
#ifndef CHATLLM_H
#define CHATLLM_H
#include "chatmodel.h"
#include "database.h" // IWYU pragma: keep
#include "modellist.h"
@ -30,7 +31,6 @@
using namespace Qt::Literals::StringLiterals;
class QDataStream;
struct ChatItem;
// NOTE: values serialized to disk, do not change or reuse
enum class LLModelTypeV0 { // chat versions 2-5

View File

@ -1,6 +1,7 @@
#include "server.h"
#include "chat.h"
#include "chatmodel.h"
#include "modellist.h"
#include "mysettings.h"
#include "utils.h"

View File

@ -2,7 +2,6 @@
#define SERVER_H
#include "chatllm.h"
#include "chatmodel.h"
#include "database.h"
#include <QHttpServer>