mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Bugfix for save function not appending .json extension by default
Bugfix for New Story function not clearing World Info from previous story Torch will not be initialized unless you select a local model, as there's no reason to invoke it for InferKit/Colab Changed JSON file writes to use indentation for readability
This commit is contained in:
@ -10,7 +10,8 @@ def getsavepath(dir, title, types):
|
||||
path = tk.filedialog.asksaveasfile(
|
||||
initialdir=dir,
|
||||
title=title,
|
||||
filetypes = types
|
||||
filetypes = types,
|
||||
defaultextension="*.*"
|
||||
)
|
||||
root.destroy()
|
||||
if(path != "" and path != None):
|
||||
|
Reference in New Issue
Block a user