From 4461af35c78e7defd77df1e094d057bc1978b7b0 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Mon, 5 Feb 2024 16:46:16 -0500 Subject: [PATCH] Fix includes. Signed-off-by: Adam Treat --- gpt4all-chat/chat.h | 1 + gpt4all-chat/chatllm.cpp | 1 + gpt4all-chat/chatllm.h | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gpt4all-chat/chat.h b/gpt4all-chat/chat.h index 5d72222d..ae6910bf 100644 --- a/gpt4all-chat/chat.h +++ b/gpt4all-chat/chat.h @@ -8,6 +8,7 @@ #include "chatllm.h" #include "chatmodel.h" #include "database.h" +#include "localdocsmodel.h" class Chat : public QObject { diff --git a/gpt4all-chat/chatllm.cpp b/gpt4all-chat/chatllm.cpp index bb399cbb..844942e4 100644 --- a/gpt4all-chat/chatllm.cpp +++ b/gpt4all-chat/chatllm.cpp @@ -1,6 +1,7 @@ #include "chatllm.h" #include "chat.h" #include "chatgpt.h" +#include "localdocs.h" #include "modellist.h" #include "network.h" #include "mysettings.h" diff --git a/gpt4all-chat/chatllm.h b/gpt4all-chat/chatllm.h index 367915f6..d6af4cb0 100644 --- a/gpt4all-chat/chatllm.h +++ b/gpt4all-chat/chatllm.h @@ -5,7 +5,7 @@ #include #include -#include "localdocs.h" +#include "database.h" #include "modellist.h" #include "../gpt4all-backend/llmodel.h"