NotArandomGUY
NotArandomGUY
I also encountered the same issue, after some debugging and looking at the Microsoft docs for LoadLibraryExA (https://learn.microsoft.com/en-us/windows/win32/api/libloaderapi/nf-libloaderapi-loadlibraryexa). When using `LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR`, the `lpFileName` parameter must specify a fully qualified path,...
Oh right, I forgot I also added ```c++ #include ``` to https://github.com/nomic-ai/gpt4all/blob/c72c73a94fcf653ecf0c8969a88068dd0e0d416f/gpt4all-backend/dlhandle.h#L56 that button you pressed probably did something similar
Need to replace forward slashes to backward slashes too
This is my patch, I tested it on my machine, so this should work ```patch diff --git a/gpt4all-backend/dlhandle.h b/gpt4all-backend/dlhandle.h index c841b03..e76162d 100644 --- a/gpt4all-backend/dlhandle.h +++ b/gpt4all-backend/dlhandle.h @@ -53,6 +53,8 @@...