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"