From e8c7baaf69e929cbbf9d3ddf2288e018327cc5ec Mon Sep 17 00:00:00 2001 From: saloui Date: Mon, 26 Jun 2023 16:54:10 +0200 Subject: [PATCH] updated --- app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app.py b/app.py index 7830532b..b4650964 100644 --- a/app.py +++ b/app.py @@ -1084,7 +1084,6 @@ class LoLLMsWebUI(LoLLMsAPPI): def upload_model(self): file = request.files['file'] - Path("uploads").mkdir(exist_ok=True, parents=True) file.save(self.lollms_paths.personal_models_path/self.config.binding_name/file.filename) return jsonify({"status": True})