From 8893916fef08d99c4471fce61137b254abc567f8 Mon Sep 17 00:00:00 2001 From: henk717 Date: Wed, 6 Oct 2021 00:25:05 +0200 Subject: [PATCH] Don't always submit prompt by default Feedback from users is that its better to not always submit the prompt, this is consistent with the randomly generated stories. You can always toggle it on if you need this for coherency. This change does not override existing user settings. --- aiserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiserver.py b/aiserver.py index 567be4d0..6c90cfc8 100644 --- a/aiserver.py +++ b/aiserver.py @@ -107,7 +107,7 @@ class vars: saveow = False # Whether or not overwrite confirm has been displayed genseqs = [] # Temporary storage for generated sequences recentback = False # Whether Back button was recently used without Submitting or Retrying after - useprompt = True # Whether to send the full prompt with every submit action + useprompt = False # Whether to send the full prompt with every submit action breakmodel = False # For GPU users, whether to use both system RAM and VRAM to conserve VRAM while offering speedup compared to CPU-only bmsupported = False # Whether the breakmodel option is supported (GPT-Neo/GPT-J only, currently) smandelete = False # Whether stories can be deleted from inside the browser