Skip to content

Commit

Permalink
fix chatmodel.h #includes
Browse files Browse the repository at this point in the history
Signed-off-by: Jared Van Bortel <[email protected]>
  • Loading branch information
cebtenzzre committed Dec 13, 2024
1 parent 0e0a560 commit 57b34d5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gpt4all-chat/src/chatllm.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef CHATLLM_H
#define CHATLLM_H

#include "chatmodel.h"
#include "database.h" // IWYU pragma: keep
#include "modellist.h"

Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions gpt4all-chat/src/server.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "server.h"

#include "chat.h"
#include "chatmodel.h"
#include "modellist.h"
#include "mysettings.h"
#include "utils.h"
Expand Down
1 change: 0 additions & 1 deletion gpt4all-chat/src/server.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#define SERVER_H

#include "chatllm.h"
#include "chatmodel.h"
#include "database.h"

#include <QHttpServer>
Expand Down

0 comments on commit 57b34d5

Please sign in to comment.