diff --git a/Uninstall.bat b/Uninstall.bat index ed143996..ae7a4201 100644 --- a/Uninstall.bat +++ b/Uninstall.bat @@ -11,11 +11,15 @@ IF EXIST "Uninstall\unins000.exe" ( start Uninstall\unins000.exe exit ) ELSE ( - echo This will remove all KoboldAI folders that do not contain user data - pause - GOTO UNINSTALL + echo This will remove all KoboldAI folders that do not contain user data. + echo DO NOT CONTINUE IF KOBOLDAI IS NOT IN ITS OWN FOLDER! OTHERWISE YOUR OTHER DATA IN THIS FOLDER WILL BE DELETED AS WELL! + pause + set /P D=Type DELETE if you wish to continue the uninstallation: ) +IF %D%==DELETE GOTO UNINSTALL +exit + :UNINSTALL echo Uninstallation in progress, please wait... set DM=Y diff --git a/aiserver.py b/aiserver.py index 8a91b4f6..5bbabe15 100644 --- a/aiserver.py +++ b/aiserver.py @@ -1039,6 +1039,8 @@ def savesettings(): if(vars.seed_specified): js["seed"] = vars.seed + else: + js["seed"] = None js["newlinemode"] = vars.newlinemode @@ -1154,7 +1156,10 @@ def processsettings(js): if("seed" in js): vars.seed = js["seed"] - vars.seed_specified = True + if(vars.seed is not None): + vars.seed_specified = True + else: + vars.seed_specified = False else: vars.seed_specified = False diff --git a/utils.py b/utils.py index f7ea95b8..9a35c623 100644 --- a/utils.py +++ b/utils.py @@ -175,7 +175,6 @@ def num_layers(config): from flask_socketio import emit class Send_to_socketio(object): def write(self, bar): - print("should be emitting: ", bar, end="") time.sleep(0.01) try: emit('from_server', {'cmd': 'model_load_status', 'data': bar.replace(" ", " ")}, broadcast=True)