From b803d51586895dd046d2284de271e2074c921df5 Mon Sep 17 00:00:00 2001 From: Jared Van Bortel Date: Fri, 12 Jan 2024 09:26:53 -0500 Subject: [PATCH] restore network.h #include The online installers need this. --- gpt4all-chat/llm.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gpt4all-chat/llm.cpp b/gpt4all-chat/llm.cpp index 75803c22..e5797c1b 100644 --- a/gpt4all-chat/llm.cpp +++ b/gpt4all-chat/llm.cpp @@ -11,6 +11,10 @@ #include #include +#ifndef GPT4ALL_OFFLINE_INSTALLER +#include "network.h" +#endif + class MyLLM: public LLM { }; Q_GLOBAL_STATIC(MyLLM, llmInstance) LLM *LLM::globalInstance()