From 2d566710e583d0722100fb7094eb1dc5698d2ba0 Mon Sep 17 00:00:00 2001 From: ThiloteE <73715071+ThiloteE@users.noreply.github.com> Date: Wed, 3 Jan 2024 17:31:06 +0100 Subject: [PATCH] Address review --- gpt4all-backend/llmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-backend/llmodel.cpp b/gpt4all-backend/llmodel.cpp index c8079adc..2431129f 100644 --- a/gpt4all-backend/llmodel.cpp +++ b/gpt4all-backend/llmodel.cpp @@ -104,7 +104,7 @@ const std::vector &LLModel::Implementation::implementat // Add to list if model implementation try { - Dlhandle dl(std::filesystem::absolute(p).string()); + Dlhandle dl(p.string()); if (!Implementation::isImplementation(dl)) { continue; }