From ea1d6e3e3dbfb4e52f4d8769aa5411d160b12a35 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 08:06:32 -0400 Subject: [PATCH 01/20] Update to horde code for latest version --- koboldai_settings.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/koboldai_settings.py b/koboldai_settings.py index 50ec7f34..3a4da6e3 100644 --- a/koboldai_settings.py +++ b/koboldai_settings.py @@ -805,12 +805,10 @@ class system_settings(settings): random.seed() if os.path.exists('./KoboldAI-Horde/venv/scripts/python.exe'): self._horde_pid = subprocess.Popen(['./KoboldAI-Horde/venv/scripts/python.exe', './KoboldAI-Horde/bridge.py', - '--username', '{}'.format(random.randint(-1000000000000, 1000000000000)), '--password', '{}'.format(random.randint(-1000000000000, 1000000000000)), - '--kai_name', '{}'.format(random.randint(-1000000000000, 1000000000000)), '--kai_url', 'http://127.0.0.1:{}'.format(self.port), '--cluster_url', "http://koboldai.net"]) + '--kai_url', 'http://127.0.0.1:{}'.format(self.port), '--cluster_url', "http://koboldai.net"]) else: self._horde_pid = subprocess.Popen(['./KoboldAI-Horde/venv/bin/python', './KoboldAI-Horde/bridge.py', - '--username', '{}'.format(random.randint(-1000000000000, 1000000000000)), '--password', '{}'.format(random.randint(-1000000000000, 1000000000000)), - '--kai_name', '{}'.format(random.randint(-1000000000000, 1000000000000)), '--kai_url', 'http://127.0.0.1:{}'.format(self.port), '--cluster_url', "http://koboldai.net"]) + '--kai_url', 'http://127.0.0.1:{}'.format(self.port), '--cluster_url', "http://koboldai.net"]) else: if self._horde_pid is not None: print("kill bridge") From dcdc00ada43c6b436fdee71e52c0b4f055ca31b8 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 08:55:30 -0400 Subject: [PATCH 02/20] Vars updates --- static/koboldai.css | 6 ++++-- templates/popups.html | 2 +- templates/story flyout.html | 2 +- themes/Darkness.css | 1 + themes/Gruvbox Dark.css | 1 + themes/Material You.css | 1 + themes/Monochrome.css | 1 + themes/Unicorn.css | 1 + 8 files changed, 11 insertions(+), 4 deletions(-) diff --git a/static/koboldai.css b/static/koboldai.css index 650490f3..25a54405 100644 --- a/static/koboldai.css +++ b/static/koboldai.css @@ -98,8 +98,8 @@ input[type="range"]::-ms-fill-upper { display: inline-block; position: relative; z-index: 0; - border-top-left-radius: 6px; - border-top-right-radius: 6px; + border-top-left-radius: var(--tabs_rounding); +border-top-right-radius: var(--tabs_rounding); box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #AAA; text-shadow: 0 1px #AAA; margin: 0 -5px; @@ -1491,6 +1491,8 @@ body { flex-grow: 1; flex-shrink: 1; flex-basis: auto; + color: var(--popup_item_color_text); + } .popup .model_item { diff --git a/templates/popups.html b/templates/popups.html index 594da66f..b3d4e86d 100644 --- a/templates/popups.html +++ b/templates/popups.html @@ -107,7 +107,7 @@
diff --git a/templates/story flyout.html b/templates/story flyout.html index 78ba829c..51cde121 100644 --- a/templates/story flyout.html +++ b/templates/story flyout.html @@ -71,7 +71,7 @@ -
+
@@ -95,7 +95,7 @@ From 183e5d9deafc59b6bde45795730f7eb6a9668bc0 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 09:09:40 -0400 Subject: [PATCH 04/20] Saving tweaks on colab --- aiserver.py | 18 +++++++++++++++++- static/koboldai.js | 8 ++++++++ templates/index_new.html | 1 + templates/popups.html | 10 +++++----- 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/aiserver.py b/aiserver.py index 74bb498c..dbecd5e3 100644 --- a/aiserver.py +++ b/aiserver.py @@ -6771,7 +6771,7 @@ def new_ui_index(): def ui2_connect(): #Send all variables to client koboldai_vars.send_to_ui() - + UI_2_load_tweaks() pass #==================================================================# @@ -7684,6 +7684,22 @@ def UI_2_sp_list_refresh(data): def UI_2_theme_list_refresh(data): koboldai_vars.theme_list = [".".join(f.split(".")[:-1]) for f in os.listdir("./themes") if os.path.isfile(os.path.join("./themes", f))] +#==================================================================# +# Save Tweaks +#==================================================================# +@socketio.on('save_tweaks') +def UI_2_save_tweaks(data): + with open("./settings/tweaks.settings", "w") as f: + f.write(data) + +#==================================================================# +# Load Tweaks +#==================================================================# +def UI_2_load_tweaks(): + if os.path.exists("./settings/tweaks.settings"): + with open("./settings/tweaks.settings", "r") as f: + socketio.emit('load_tweaks', f.read(), room="UI2") + #==================================================================# # Test #==================================================================# diff --git a/static/koboldai.js b/static/koboldai.js index 7541d118..f9955f2b 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -25,6 +25,7 @@ socket.on("world_info_folder", function(data){world_info_folder(data);}); socket.on("delete_new_world_info_entry", function(data){document.getElementById("world_info_-1").remove();}); socket.on("delete_world_info_entry", function(data){document.getElementById("world_info_"+data).remove();}); socket.on("error", function(data){show_error_message(data);}); +socket.on('load_tweaks', function(data){load_tweaks(data);}); //socket.onAny(function(event_name, data) {console.log({"event": event_name, "class": data.classname, "data": data});}); var presets = {}; @@ -2007,6 +2008,10 @@ function send_world_info(uid) { socket.emit("edit_world_info", world_info_data[uid]); } +function load_tweaks(data) { + +} + //--------------------------------------------General UI Functions------------------------------------ function autoResize(element) { element.style.height = 'auto'; @@ -3356,6 +3361,9 @@ $(document).ready(function(){ } setCookie("enabledTweaks", JSON.stringify(out)); + if (document.getElementById("on_colab").textContent == "true") { + socket.emit("save_tweaks", JSON.stringify(out)); + } } diff --git a/templates/index_new.html b/templates/index_new.html index 1af01ab6..f8be2eec 100644 --- a/templates/index_new.html +++ b/templates/index_new.html @@ -19,6 +19,7 @@ +
diff --git a/templates/popups.html b/templates/popups.html index b3d4e86d..7b98378a 100644 --- a/templates/popups.html +++ b/templates/popups.html @@ -65,8 +65,8 @@ The story name you have entered already exists. Would you like to overwrite?
@@ -81,8 +81,8 @@ @@ -95,7 +95,7 @@ From f65be7b1f3b22bf067a9a668f795b36b8e03eebb Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 09:13:02 -0400 Subject: [PATCH 05/20] Update to colab tweaks --- aiserver.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/aiserver.py b/aiserver.py index dbecd5e3..bf24a6c1 100644 --- a/aiserver.py +++ b/aiserver.py @@ -7696,9 +7696,10 @@ def UI_2_save_tweaks(data): # Load Tweaks #==================================================================# def UI_2_load_tweaks(): - if os.path.exists("./settings/tweaks.settings"): - with open("./settings/tweaks.settings", "r") as f: - socketio.emit('load_tweaks', f.read(), room="UI2") + if koboldai_vars.on_colab: + if os.path.exists("./settings/tweaks.settings"): + with open("./settings/tweaks.settings", "r") as f: + socketio.emit('load_tweaks', f.read(), room="UI2") #==================================================================# # Test From 2c619895bb7c855e7d981ac764901f68b441add3 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 09:31:18 -0400 Subject: [PATCH 06/20] Added background Colors --- templates/settings flyout.html | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/templates/settings flyout.html b/templates/settings flyout.html index 6180f575..56238808 100644 --- a/templates/settings flyout.html +++ b/templates/settings flyout.html @@ -312,15 +312,26 @@ + + - - - - - + + + + + + + + + + + + + + +
ErrorBackgrounds
BaseLayer 1Layer 2Layer 3Layer 4
-
From b700d5e86e8d21a23ceea8d7c3020d6e75e84df2 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 10:27:05 -0400 Subject: [PATCH 07/20] Chat and Adventure mode Fix --- gensettings.py | 4 ++-- koboldai_settings.py | 13 +++++++------ static/koboldai.css | 25 +++++++++++++++++++++++++ static/koboldai.js | 27 +++++++++++++++++++++++++++ templates/index_new.html | 3 ++- templates/settings flyout.html | 22 +++++++++++++++++----- 6 files changed, 80 insertions(+), 14 deletions(-) diff --git a/gensettings.py b/gensettings.py index c071264a..04ee9e77 100644 --- a/gensettings.py +++ b/gensettings.py @@ -345,13 +345,13 @@ gensettingstf = [ "uitype": "dropdown", "unit": "text", "label": "Story Mode", - "id": "actionmode", + "id": "storymode", "default": 0, "tooltip": "Choose the mode of KoboldAI.", "menu_path": "Home", "sub_path": "", "classname": "story", - "name": "actionmode", + "name": "storymode", 'children': [{'text': 'Story', 'value': 0}, {'text':'Adventure','value':1}, {'text':'Chat', 'value':2}] }, { diff --git a/koboldai_settings.py b/koboldai_settings.py index 3a4da6e3..a6c7fd52 100644 --- a/koboldai_settings.py +++ b/koboldai_settings.py @@ -431,7 +431,7 @@ class model_settings(settings): self.badwordsids = [] self.fp32_model = False # Whether or not the most recently loaded HF model was in fp32 format self.modeldim = -1 # Embedding dimension of your model (e.g. it's 4096 for GPT-J-6B and 2560 for GPT-Neo-2.7B) - self.sampler_order = [0, 1, 2, 3, 4, 5] + self.sampler_order = [6, 0, 1, 2, 3, 4, 5] self.newlinemode = "n" self.lazy_load = True # Whether or not to use torch_lazy_loader.py for transformers models in order to reduce CPU memory usage self.revision = None @@ -552,6 +552,7 @@ class story_settings(settings): self.chatname = "You" self.adventure = False self.actionmode = 0 + self.storymode = 0 self.dynamicscan = False self.recentedit = False self.notes = "" #Notes for the story. Does nothing but save @@ -638,7 +639,7 @@ class story_settings(settings): ignore = self.koboldai_vars.calc_ai_text() #Because we have seperate variables for action types, this syncs them - elif name == 'actionmode': + elif name == 'storymode': if value == 0: self.adventure = False self.chatmode = False @@ -650,14 +651,14 @@ class story_settings(settings): self.chatmode = True elif name == 'adventure' and value == True: self.chatmode = False - self.actionmode = 1 + self.storymode = 1 elif name == 'adventure' and value == False and self.chatmode == False: - self.actionmode = 0 + self.storymode = 0 elif name == 'chatmode' and value == True: self.adventure = False - self.actionmode = 2 + self.storymode = 2 elif name == 'chatmode' and value == False and self.adventure == False: - self.actionmode = 0 + self.storymode = 0 class user_settings(settings): local_only_variables = ['socketio', 'importjs'] diff --git a/static/koboldai.css b/static/koboldai.css index 25a54405..bc74c324 100644 --- a/static/koboldai.css +++ b/static/koboldai.css @@ -199,6 +199,10 @@ border-top-right-radius: var(--tabs_rounding); margin: 2px; } +.chat_mode[story_chatmode="false"] { + display: none; +} + #story_menu_author .setting_container { display: grid; grid-template-areas: "label value" @@ -1305,6 +1309,17 @@ body { gap: 1px; } + +.inputrow[story_storymode="1"] { + grid-template-areas: "adventure_mode textarea statusbar statusbar statusbar" + "adventure_mode textarea submit submit submit" + "adventure_mode textarea back redo retry"; + grid-template-columns: 80px auto 30px 30px 30px; + grid-template-rows: 0px 60px 40px; + gap: 1px; + +} + #random_game_prompt{ display: flex; flex-direction: column; @@ -1319,6 +1334,16 @@ body { border-radius: var(--radius_inputbox); } +#adventure_mode { + grid-area: adventure_mode +} + +#adventure_mode[story_storymode]:not([story_storymode="1"]) { + display: none; +} + + + #input_text { grid-area: textarea; background-color: var(--input_background); diff --git a/static/koboldai.js b/static/koboldai.js index f9955f2b..29284221 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -511,6 +511,14 @@ function var_changed(data) { //Special case for context viewer } else if (data.classname == "story" && data.name == "context") { update_context(data.value); + //special case for story_actionmode + } else if (data.classname == "story" && data.name == "actionmode") { + const button = document.getElementById('adventure_mode'); + if (data.value == 1) { + button.childNodes[1].textContent = "Adventure"; + } else { + button.childNodes[1].textContent = "Story"; + } //Basic Data Syncing } else { var elements_to_change = document.getElementsByClassName("var_sync_"+data.classname.replace(" ", "_")+"_"+data.name.replace(" ", "_")); @@ -2012,6 +2020,25 @@ function load_tweaks(data) { } +function toggle_adventure_mode(button) { + if (button.textContent == "Mode: Story") { + button.childNodes[1].textContent = "Adventure"; + var actionmode = 1 + } else { + button.childNodes[1].textContent = "Story"; + var actionmode = 0 + } + button.classList.add("pulse"); + socket.emit("var_change", {"ID": "story_actionmode", "value": actionmode}, (response) => { + if ('status' in response) { + if (response['status'] == 'Saved') { + document.getElementById("adventure_mode").classList.remove("pulse"); + } + } + }); + +} + //--------------------------------------------General UI Functions------------------------------------ function autoResize(element) { element.style.height = 'auto'; diff --git a/templates/index_new.html b/templates/index_new.html index f8be2eec..177c6bad 100644 --- a/templates/index_new.html +++ b/templates/index_new.html @@ -69,12 +69,13 @@
-
+
+ From 1995db3ab1ba82d41026bee57e8669d5a913cbc4 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 13:00:02 -0400 Subject: [PATCH 11/20] Fix for option text not being recreated on each stream. Works better for mobile --- official.presets | 3979 ++++++++++++++++++++++++++++++++++++++++++-- static/koboldai.js | 52 +- 2 files changed, 3875 insertions(+), 156 deletions(-) diff --git a/official.presets b/official.presets index 102dfabe..f1e23822 100644 --- a/official.presets +++ b/official.presets @@ -1,143 +1,3836 @@ -[{"preset":"Best Guess","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"A subtle change with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":512,"rep_pen_slope":"3.4","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.8","tfs":1,"top_a":0,"top_k":"100","top_p":"0.9","typical":1,"Model Category":"6B","Author":null,"uid":0},{"preset":"Best Guess","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"A subtle change with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":512,"rep_pen_slope":"3.4","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.8","tfs":1,"top_a":0,"top_k":"100","top_p":"0.9","typical":1,"Model Category":"6B","Author":null,"uid":0},{"preset":"Best Guess","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"A subtle change with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":512,"rep_pen_slope":"3.4","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.8","tfs":1,"top_a":0,"top_k":"100","top_p":"0.9","typical":1,"Model Category":"6B","Author":null,"uid":0},{"preset":"Best Guess","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"A subtle change with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":512,"rep_pen_slope":"3.4","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.8","tfs":1,"top_a":0,"top_k":"100","top_p":"0.9","typical":1,"Model Category":"6B","Author":null,"uid":0},{"preset":"Coherent Creativity","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"A good balance between coherence, creativity, and quality of prose.","genamt":50,"rep_pen":"1.2","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.51","tfs":"0.99","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":1},{"preset":"Coherent Creativity","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"A good balance between coherence, creativity, and quality of prose.","genamt":50,"rep_pen":"1.2","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.51","tfs":"0.99","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":1},{"preset":"Coherent Creativity","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"A good balance between coherence, creativity, and quality of prose.","genamt":50,"rep_pen":"1.2","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.51","tfs":"0.99","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":1},{"preset":"Coherent Creativity","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"A good balance between coherence, creativity, and quality of prose.","genamt":50,"rep_pen":"1.2","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.51","tfs":"0.99","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":1},{"preset":"Emperor Moth","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"Medium randomness with a decent bit of creative writing.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.25","tfs":1,"top_a":0,"top_k":0,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":2},{"preset":"Emperor Moth","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"Medium randomness with a decent bit of creative writing.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.25","tfs":1,"top_a":0,"top_k":0,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":2},{"preset":"Emperor Moth","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"Medium randomness with a decent bit of creative writing.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.25","tfs":1,"top_a":0,"top_k":0,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":2},{"preset":"Emperor Moth","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"Medium randomness with a decent bit of creative writing.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.25","tfs":1,"top_a":0,"top_k":0,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":2},{"preset":"Luna Moth","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"A great degree of creativity without losing coherency.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":2,"tfs":1,"top_a":0,"top_k":85,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":3},{"preset":"Luna Moth","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"A great degree of creativity without losing coherency.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":2,"tfs":1,"top_a":0,"top_k":85,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":3},{"preset":"Luna Moth","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"A great degree of creativity without losing coherency.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":2,"tfs":1,"top_a":0,"top_k":85,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":3},{"preset":"Luna Moth","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"A great degree of creativity without losing coherency.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":2,"tfs":1,"top_a":0,"top_k":85,"top_p":"0.24","typical":1,"Model Category":"6B","Author":null,"uid":3},{"preset":"Pleasing Results","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"Expectable output with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":1024,"rep_pen_slope":"6.8","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.44","tfs":"0.9","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":4},{"preset":"Pleasing Results","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"Expectable output with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":1024,"rep_pen_slope":"6.8","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.44","tfs":"0.9","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":4},{"preset":"Pleasing Results","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"Expectable output with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":1024,"rep_pen_slope":"6.8","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.44","tfs":"0.9","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":4},{"preset":"Pleasing Results","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"Expectable output with alternative context settings.","genamt":50,"rep_pen":"1.15","rep_pen_range":1024,"rep_pen_slope":"6.8","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.44","tfs":"0.9","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"6B","Author":null,"uid":4},{"preset":"Sphinx Moth","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"2","tfs":1,"top_a":0,"top_k":30,"top_p":"0.18","typical":1,"Model Category":"6B","Author":null,"uid":5},{"preset":"Sphinx Moth","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"2","tfs":1,"top_a":0,"top_k":30,"top_p":"0.18","typical":1,"Model Category":"6B","Author":null,"uid":5},{"preset":"Sphinx Moth","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"2","tfs":1,"top_a":0,"top_k":30,"top_p":"0.18","typical":1,"Model Category":"6B","Author":null,"uid":5},{"preset":"Sphinx Moth","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"2","tfs":1,"top_a":0,"top_k":30,"top_p":"0.18","typical":1,"Model Category":"6B","Author":null,"uid":5},{"preset":"Storywriter","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"Optimized settings for relevant output.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.72","tfs":1,"top_a":0,"top_k":0,"top_p":"0.73","typical":1,"Model Category":"6B","Author":null,"uid":6},{"preset":"Storywriter","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"Optimized settings for relevant output.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.72","tfs":1,"top_a":0,"top_k":0,"top_p":"0.73","typical":1,"Model Category":"6B","Author":null,"uid":6},{"preset":"Storywriter","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":"Optimized settings for relevant output.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.72","tfs":1,"top_a":0,"top_k":0,"top_p":"0.73","typical":1,"Model Category":"6B","Author":null,"uid":6},{"preset":"Storywriter","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":"Optimized settings for relevant output.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.72","tfs":1,"top_a":0,"top_k":0,"top_p":"0.73","typical":1,"Model Category":"6B","Author":null,"uid":6},{"preset":"Ace of Spades","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Expressive, while still staying focused.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":7,"sampler_order": -[3, 2, 0, 5, 1, 4],"temp":"1.15","tfs":"0.8","top_a":0,"top_k":0,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":7},{"preset":"Ace of Spades","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Expressive, while still staying focused.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":7,"sampler_order": -[3, 2, 0, 5, 1, 4],"temp":"1.15","tfs":"0.8","top_a":0,"top_k":0,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":7},{"preset":"Ace of Spades","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Expressive, while still staying focused.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":7,"sampler_order": -[3, 2, 0, 5, 1, 4],"temp":"1.15","tfs":"0.8","top_a":0,"top_k":0,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":7},{"preset":"Ace of Spades","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Expressive, while still staying focused.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":7,"sampler_order": -[3, 2, 0, 5, 1, 4],"temp":"1.15","tfs":"0.8","top_a":0,"top_k":0,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":7},{"preset":"All-Nighter","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Creative diction with room for embellishments.","genamt":50,"rep_pen":"1.05","rep_pen_range":400,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 5, 3, 1, 4],"temp":"1.33","tfs":"0.84","top_a":0,"top_k":13,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":8},{"preset":"All-Nighter","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Creative diction with room for embellishments.","genamt":50,"rep_pen":"1.05","rep_pen_range":400,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 5, 3, 1, 4],"temp":"1.33","tfs":"0.84","top_a":0,"top_k":13,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":8},{"preset":"All-Nighter","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Creative diction with room for embellishments.","genamt":50,"rep_pen":"1.05","rep_pen_range":400,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 5, 3, 1, 4],"temp":"1.33","tfs":"0.84","top_a":0,"top_k":13,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":8},{"preset":"All-Nighter","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Creative diction with room for embellishments.","genamt":50,"rep_pen":"1.05","rep_pen_range":400,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 5, 3, 1, 4],"temp":"1.33","tfs":"0.84","top_a":0,"top_k":13,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":8},{"preset":"Basic Coherence","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Keep things on track.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.59","tfs":"0.87","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":9},{"preset":"Basic Coherence","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Keep things on track.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.59","tfs":"0.87","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":9},{"preset":"Basic Coherence","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Keep things on track.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.59","tfs":"0.87","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":9},{"preset":"Basic Coherence","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Keep things on track.","genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.59","tfs":"0.87","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":9},{"preset":"Fandango","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"A rhytmic dance of prose, whoever takes the lead.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.86","tfs":1,"top_a":0,"top_k":20,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":10},{"preset":"Fandango","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"A rhytmic dance of prose, whoever takes the lead.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.86","tfs":1,"top_a":0,"top_k":20,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":10},{"preset":"Fandango","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"A rhytmic dance of prose, whoever takes the lead.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.86","tfs":1,"top_a":0,"top_k":20,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":10},{"preset":"Fandango","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"A rhytmic dance of prose, whoever takes the lead.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.86","tfs":1,"top_a":0,"top_k":20,"top_p":"0.95","typical":1,"Model Category":"13B","Author":null,"uid":10},{"preset":"Genesis","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Stable and logical, but with scattered creativity.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.63","tfs":"0.98","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"13B","Author":null,"uid":11},{"preset":"Genesis","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Stable and logical, but with scattered creativity.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.63","tfs":"0.98","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"13B","Author":null,"uid":11},{"preset":"Genesis","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Stable and logical, but with scattered creativity.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.63","tfs":"0.98","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"13B","Author":null,"uid":11},{"preset":"Genesis","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Stable and logical, but with scattered creativity.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.63","tfs":"0.98","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"13B","Author":null,"uid":11},{"preset":"Low Rider","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Reliable, aimed at story development.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.94","tfs":"0.94","top_a":0,"top_k":12,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":12},{"preset":"Low Rider","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Reliable, aimed at story development.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.94","tfs":"0.94","top_a":0,"top_k":12,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":12},{"preset":"Low Rider","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Reliable, aimed at story development.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.94","tfs":"0.94","top_a":0,"top_k":12,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":12},{"preset":"Low Rider","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Reliable, aimed at story development.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.94","tfs":"0.94","top_a":0,"top_k":12,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":12},{"preset":"Moonlit Chronicler","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Tells a tale with confidence, but variety where it matters.","genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[0, 4, 1, 3, 5, 2],"temp":"1.25","tfs":"0.8","top_a":"0.78","top_k":"100","top_p":1,"typical":"0.95","Model Category":"13B","Author":null,"uid":13},{"preset":"Moonlit Chronicler","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Tells a tale with confidence, but variety where it matters.","genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[0, 4, 1, 3, 5, 2],"temp":"1.25","tfs":"0.8","top_a":"0.78","top_k":"100","top_p":1,"typical":"0.95","Model Category":"13B","Author":null,"uid":13},{"preset":"Moonlit Chronicler","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Tells a tale with confidence, but variety where it matters.","genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[0, 4, 1, 3, 5, 2],"temp":"1.25","tfs":"0.8","top_a":"0.78","top_k":"100","top_p":1,"typical":"0.95","Model Category":"13B","Author":null,"uid":13},{"preset":"Moonlit Chronicler","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Tells a tale with confidence, but variety where it matters.","genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[0, 4, 1, 3, 5, 2],"temp":"1.25","tfs":"0.8","top_a":"0.78","top_k":"100","top_p":1,"typical":"0.95","Model Category":"13B","Author":null,"uid":13},{"preset":"Morpho","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Let the AI generate without constraints.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.69","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":14},{"preset":"Morpho","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Let the AI generate without constraints.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.69","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":14},{"preset":"Morpho","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Let the AI generate without constraints.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.69","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":14},{"preset":"Morpho","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Let the AI generate without constraints.","genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.69","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":14},{"preset":"Ouroboros","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Versatile, conforms well to poems, lists, chat, etc.","genamt":50,"rep_pen":"1.05","rep_pen_range":404,"rep_pen_slope":"0.8","sampler_order": -[0, 5, 3, 2, 1, 4],"temp":"1.07","tfs":"0.93","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":15},{"preset":"Ouroboros","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Versatile, conforms well to poems, lists, chat, etc.","genamt":50,"rep_pen":"1.05","rep_pen_range":404,"rep_pen_slope":"0.8","sampler_order": -[0, 5, 3, 2, 1, 4],"temp":"1.07","tfs":"0.93","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":15},{"preset":"Ouroboros","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Versatile, conforms well to poems, lists, chat, etc.","genamt":50,"rep_pen":"1.05","rep_pen_range":404,"rep_pen_slope":"0.8","sampler_order": -[0, 5, 3, 2, 1, 4],"temp":"1.07","tfs":"0.93","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":15},{"preset":"Ouroboros","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Versatile, conforms well to poems, lists, chat, etc.","genamt":50,"rep_pen":"1.05","rep_pen_range":404,"rep_pen_slope":"0.8","sampler_order": -[0, 5, 3, 2, 1, 4],"temp":"1.07","tfs":"0.93","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":15},{"preset":"Pro Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[3, 2, 5, 0, 1, 4],"temp":"1.35","tfs":"0.69","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":16},{"preset":"Pro Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[3, 2, 5, 0, 1, 4],"temp":"1.35","tfs":"0.69","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":16},{"preset":"Pro Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[3, 2, 5, 0, 1, 4],"temp":"1.35","tfs":"0.69","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":16},{"preset":"Pro Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.","genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[3, 2, 5, 0, 1, 4],"temp":"1.35","tfs":"0.69","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"13B","Author":null,"uid":16},{"preset":"Aces High","Model Size":"20B","Model Type":"Neo(X) (Neo-X 20B)","description":null,"genamt":50,"rep_pen":"1.03","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[2, 4, 5, 3, 1, 0],"temp":"0.7","tfs":"0.98","top_a":"0.05","top_k":10,"top_p":"0.98","typical":"0.99","Model Category":"Custom","Author":null,"uid":17},{"preset":"Co-Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.55","tfs":"0.7","top_a":0,"top_k":14,"top_p":"0.9","typical":1,"Model Category":"Custom","Author":null,"uid":18},{"preset":"Co-Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.55","tfs":"0.7","top_a":0,"top_k":14,"top_p":"0.9","typical":1,"Model Category":"Custom","Author":null,"uid":18},{"preset":"Co-Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.55","tfs":"0.7","top_a":0,"top_k":14,"top_p":"0.9","typical":1,"Model Category":"Custom","Author":null,"uid":18},{"preset":"Co-Writer","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":50,"rep_pen":"1.15","rep_pen_range":2048,"rep_pen_slope":"0.3","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":"0.55","tfs":"0.7","top_a":0,"top_k":14,"top_p":"0.9","typical":1,"Model Category":"Custom","Author":null,"uid":18},{"preset":"Damn Decent","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":60,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[1, 0, 2, 4, 3, 5],"temp":"1.1","tfs":"0.9","top_a":"0.35","top_k":0,"top_p":1,"typical":"0.9","Model Category":"Custom","Author":null,"uid":19},{"preset":"Damn Decent","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":60,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[1, 0, 2, 4, 3, 5],"temp":"1.1","tfs":"0.9","top_a":"0.35","top_k":0,"top_p":1,"typical":"0.9","Model Category":"Custom","Author":null,"uid":19},{"preset":"Damn Decent","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":60,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[1, 0, 2, 4, 3, 5],"temp":"1.1","tfs":"0.9","top_a":"0.35","top_k":0,"top_p":1,"typical":"0.9","Model Category":"Custom","Author":null,"uid":19},{"preset":"Damn Decent","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":60,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.1","sampler_order": -[1, 0, 2, 4, 3, 5],"temp":"1.1","tfs":"0.9","top_a":"0.35","top_k":0,"top_p":1,"typical":"0.9","Model Category":"Custom","Author":null,"uid":19},{"preset":"Decadence","Model Size":"20B","Model Type":"Neo(X) (Neo-X 20B)","description":null,"genamt":40,"rep_pen":"1","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[3, 0, 5, 4, 2, 1],"temp":2,"tfs":"0.99","top_a":0,"top_k":"100","top_p":1,"typical":"0.97","Model Category":"Custom","Author":null,"uid":20},{"preset":"Emerald","Model Size":"20B","Model Type":"Neo(X) (Neo-X 20B)","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":1024,"rep_pen_slope":"0.8","sampler_order": -[4, 3, 2, 0, 1, 5],"temp":"1.2","tfs":"0.96","top_a":"0.01","top_k":43,"top_p":"0.94","typical":"0.98","Model Category":"Custom","Author":null,"uid":21},{"preset":"Fever Dreams","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":80,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.99","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":22},{"preset":"Fever Dreams","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":80,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.99","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":22},{"preset":"Fever Dreams","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":80,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.99","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":22},{"preset":"Fever Dreams","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":80,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"0.99","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":22},{"preset":"Gojira","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[3, 5, 0, 2, 1, 4],"temp":"1.22","tfs":"0.99","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":23},{"preset":"Gojira","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[3, 5, 0, 2, 1, 4],"temp":"1.22","tfs":"0.99","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":23},{"preset":"Gojira","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[3, 5, 0, 2, 1, 4],"temp":"1.22","tfs":"0.99","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":23},{"preset":"Gojira","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[3, 5, 0, 2, 1, 4],"temp":"1.22","tfs":"0.99","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":23},{"preset":"Lycaenidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":30,"rep_pen":"1.15","rep_pen_range":256,"rep_pen_slope":0,"sampler_order": -[3, 5, 2, 0, 1, 4],"temp":"2","tfs":"0.99","top_a":0,"top_k":12,"top_p":"0.85","typical":1,"Model Category":"Custom","Author":null,"uid":24},{"preset":"Lycaenidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":30,"rep_pen":"1.15","rep_pen_range":256,"rep_pen_slope":0,"sampler_order": -[3, 5, 2, 0, 1, 4],"temp":"2","tfs":"0.99","top_a":0,"top_k":12,"top_p":"0.85","typical":1,"Model Category":"Custom","Author":null,"uid":24},{"preset":"Lycaenidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":30,"rep_pen":"1.15","rep_pen_range":256,"rep_pen_slope":0,"sampler_order": -[3, 5, 2, 0, 1, 4],"temp":"2","tfs":"0.99","top_a":0,"top_k":12,"top_p":"0.85","typical":1,"Model Category":"Custom","Author":null,"uid":24},{"preset":"Lycaenidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":30,"rep_pen":"1.15","rep_pen_range":256,"rep_pen_slope":0,"sampler_order": -[3, 5, 2, 0, 1, 4],"temp":"2","tfs":"0.99","top_a":0,"top_k":12,"top_p":"0.85","typical":1,"Model Category":"Custom","Author":null,"uid":24},{"preset":"Monarch","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[2, 0, 1, 3, 4, 5],"temp":"2","tfs":"0.98","top_a":0,"top_k":"100","top_p":"0.93","typical":"0.99","Model Category":"Custom","Author":null,"uid":25},{"preset":"Monarch","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[2, 0, 1, 3, 4, 5],"temp":"2","tfs":"0.98","top_a":0,"top_k":"100","top_p":"0.93","typical":"0.99","Model Category":"Custom","Author":null,"uid":25},{"preset":"Monarch","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[2, 0, 1, 3, 4, 5],"temp":"2","tfs":"0.98","top_a":0,"top_k":"100","top_p":"0.93","typical":"0.99","Model Category":"Custom","Author":null,"uid":25},{"preset":"Monarch","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[2, 0, 1, 3, 4, 5],"temp":"2","tfs":"0.98","top_a":0,"top_k":"100","top_p":"0.93","typical":"0.99","Model Category":"Custom","Author":null,"uid":25},{"preset":"Monkey Business","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[0, 2, 3, 5, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":26},{"preset":"Monkey Business","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[0, 2, 3, 5, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":26},{"preset":"Monkey Business","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[0, 2, 3, 5, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":26},{"preset":"Monkey Business","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[0, 2, 3, 5, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":26},{"preset":"Monkey Business.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":27},{"preset":"Monkey Business.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":27},{"preset":"Monkey Business.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":27},{"preset":"Monkey Business.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":2048,"rep_pen_slope":"0.2","sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.2","tfs":"0.97","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":27},{"preset":"Mothra","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":28},{"preset":"Mothra","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":28},{"preset":"Mothra","Model Size":"6B","Model Type":"hakurei\/lit-6B","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":28},{"preset":"Mothra","Model Size":"6B","Model Type":"EleutherAI\/gpt-j-6B","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":28},{"preset":"Mothra.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":29},{"preset":"Mothra.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":29},{"preset":"Mothra.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":29},{"preset":"Mothra.1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":40,"rep_pen":"1.1\/1.05","rep_pen_range":512,"rep_pen_slope":0,"sampler_order": -[0, 3, 5, 2, 1, 4],"temp":"1.25","tfs":"0.9\/0.8","top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":29},{"preset":"Necromancer","Model Size":"20B","Model Type":"Neo(X) (Neo-X 20B)","description":null,"genamt":50,"rep_pen":"1.03","rep_pen_range":2048,"rep_pen_slope":"10.0","sampler_order": -[0, 3, 1, 4, 2, 5],"temp":"2","tfs":1,"top_a":0,"top_k":"100","top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":30},{"preset":"Nymphalidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.18","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":31},{"preset":"Nymphalidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.18","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":31},{"preset":"Nymphalidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.18","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":31},{"preset":"Nymphalidae","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":30,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":0,"sampler_order": -[5, 0, 2, 3, 1, 4],"temp":"1.18","tfs":1,"top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Custom","Author":null,"uid":31},{"preset":"Red Viper","Model Size":"20B","Model Type":"Neo(X) (Neo-X 20B)","description":null,"genamt":70,"rep_pen":"1.01","rep_pen_range":496,"rep_pen_slope":"0.7","sampler_order": -[4, 5, 3, 2, 1, 0],"temp":1,"tfs":"0.97","top_a":"0.06","top_k":0,"top_p":"0.98","typical":"0.97","Model Category":"Custom","Author":null,"uid":32},{"preset":"Swansong","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[4, 3, 5, 1, 2, 0],"temp":2,"tfs":"0.95","top_a":"0.05","top_k":"100","top_p":1,"typical":"0.95","Model Category":"Custom","Author":null,"uid":33},{"preset":"Swansong","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[4, 3, 5, 1, 2, 0],"temp":2,"tfs":"0.95","top_a":"0.05","top_k":"100","top_p":1,"typical":"0.95","Model Category":"Custom","Author":null,"uid":33},{"preset":"Swansong","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[4, 3, 5, 1, 2, 0],"temp":2,"tfs":"0.95","top_a":"0.05","top_k":"100","top_p":1,"typical":"0.95","Model Category":"Custom","Author":null,"uid":33},{"preset":"Swansong","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":50,"rep_pen":"1.05","rep_pen_range":0,"rep_pen_slope":0,"sampler_order": -[4, 3, 5, 1, 2, 0],"temp":2,"tfs":"0.95","top_a":"0.05","top_k":"100","top_p":1,"typical":"0.95","Model Category":"Custom","Author":null,"uid":33},{"preset":"Top Gun","Model Size":"20B","Model Type":"Neo(X) (Neo-X 20B)","description":null,"genamt":40,"rep_pen":"1.03","rep_pen_range":880,"rep_pen_slope":"0.2","sampler_order": -[2, 4, 5, 3, 1, 0],"temp":"0.58","tfs":"0.92","top_a":"0.1","top_k":10,"top_p":"0.68","typical":"0.99","Model Category":"Custom","Author":null,"uid":34},{"preset":"Trust","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":40,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"10.0","sampler_order": -[3, 0, 5, 2, 1, 4],"temp":"0.65","tfs":"0.85","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"Custom","Author":null,"uid":35},{"preset":"Trust","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":40,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"10.0","sampler_order": -[3, 0, 5, 2, 1, 4],"temp":"0.65","tfs":"0.85","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"Custom","Author":null,"uid":35},{"preset":"Trust","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":40,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"10.0","sampler_order": -[3, 0, 5, 2, 1, 4],"temp":"0.65","tfs":"0.85","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"Custom","Author":null,"uid":35},{"preset":"Trust","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":40,"rep_pen":"1.05","rep_pen_range":2048,"rep_pen_slope":"10.0","sampler_order": -[3, 0, 5, 2, 1, 4],"temp":"0.65","tfs":"0.85","top_a":0,"top_k":0,"top_p":"0.98","typical":1,"Model Category":"Custom","Author":null,"uid":35},{"preset":"Weaver","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":null,"genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.5","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":1,"tfs":"0.88","top_a":0,"top_k":12,"top_p":"0.83","typical":1,"Model Category":"Custom","Author":null,"uid":36},{"preset":"Weaver","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":null,"genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.5","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":1,"tfs":"0.88","top_a":0,"top_k":12,"top_p":"0.83","typical":1,"Model Category":"Custom","Author":null,"uid":36},{"preset":"Weaver","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Shinen","description":null,"genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.5","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":1,"tfs":"0.88","top_a":0,"top_k":12,"top_p":"0.83","typical":1,"Model Category":"Custom","Author":null,"uid":36},{"preset":"Weaver","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":null,"genamt":50,"rep_pen":"1.1","rep_pen_range":2048,"rep_pen_slope":"0.5","sampler_order": -[2, 0, 3, 5, 1, 4],"temp":1,"tfs":"0.88","top_a":0,"top_k":12,"top_p":"0.83","typical":1,"Model Category":"Custom","Author":null,"uid":36},{"preset":"Godlike 2","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 1, 2, 0],"temp":0.8,"tfs":"0.97","top_a":0.8,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":37},{"preset":"Godlike 2","Model Size":"13B","Model Type":"facebook\/opt-13b","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 1, 2, 0],"temp":0.8,"tfs":"0.97","top_a":0.8,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":37},{"preset":"Godlike 2","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 1, 2, 0],"temp":0.8,"tfs":"0.97","top_a":0.8,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":37},{"preset":"Godlike 2","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 1, 2, 0],"temp":0.8,"tfs":"0.97","top_a":0.8,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":37},{"preset":"Godlike1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 2, 1, 0],"temp":0.7,"tfs":"0.97","top_a":0.75,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":38},{"preset":"Godlike1","Model Size":"13B","Model Type":"facebook\/opt-13b","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 2, 1, 0],"temp":0.7,"tfs":"0.97","top_a":0.75,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":38},{"preset":"Godlike1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Nerys","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 2, 1, 0],"temp":0.7,"tfs":"0.97","top_a":0.75,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":38},{"preset":"Godlike1","Model Size":"13B","Model Type":"KoboldAI\/fairseq-dense-13B-Janeway","description":"Makes AI give a descriptive and sensual output.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[5, 4, 3, 2, 1, 0],"temp":0.7,"tfs":"0.97","top_a":0.75,"top_k":0,"top_p":"0.5","typical":"0.19","Model Category":"Original","Author":"Chasm","uid":38},{"preset":"Good Winds","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"Let AI direct the plot, but still stay logical.","genamt":100,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[0, 1, 2, 3, 4, 5],"temp":"0.7","tfs":"0.9","top_a":0,"top_k":0,"top_p":1,"typical":1,"Model Category":"Original","Author":"xen0","uid":39},{"preset":"Light Breeze","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Skein","description":"Staying on track, not complex stories, directing the plot yourself.","genamt":80,"rep_pen":"1.2","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[0, 1, 2, 3, 4, 5],"temp":"0.6","tfs":1,"top_a":0,"top_k":0,"top_p":"0.85","typical":1,"Model Category":"Original","Author":"xen0","uid":40},{"preset":"Liminal Drift","Model Size":"13B","Model Type":"facebook\/opt-13b","description":"Drives coherent dialogue, responses, and behavior, sometimes surreal situations arise based on information already present in the story.","genamt":80,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[4, 5, 1, 0, 2, 3],"temp":"0.66","tfs":1,"top_a":"0.96","top_k":0,"top_p":1,"typical":"0.6","Model Category":"Original","Author":"Chasm","uid":41},{"preset":"Mayday","Model Size":"6B","Model Type":"KoboldAI\/GPT-J-6B-Adventure","description":"Wacky plot, creativity from AI, crazy stories you want AI to weird out.","genamt":120,"rep_pen":"1.1","rep_pen_range":1024,"rep_pen_slope":"0.7","sampler_order": -[0, 1, 2, 3, 4, 5],"temp":"1.05","tfs":1,"top_a":0,"top_k":0,"top_p":"0.95","typical":1,"Model Category":"Original","Author":"xen0","uid":42}] \ No newline at end of file +[ + { + "preset":"Best Guess", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"A subtle change with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":512, + "rep_pen_slope":"3.4", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.8", + "tfs":1, + "top_a":0, + "top_k":"100", + "top_p":"0.9", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":0 + }, + { + "preset":"Best Guess", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"A subtle change with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":512, + "rep_pen_slope":"3.4", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.8", + "tfs":1, + "top_a":0, + "top_k":"100", + "top_p":"0.9", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":0 + }, + { + "preset":"Best Guess", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"A subtle change with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":512, + "rep_pen_slope":"3.4", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.8", + "tfs":1, + "top_a":0, + "top_k":"100", + "top_p":"0.9", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":0 + }, + { + "preset":"Best Guess", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"A subtle change with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":512, + "rep_pen_slope":"3.4", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.8", + "tfs":1, + "top_a":0, + "top_k":"100", + "top_p":"0.9", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":0 + }, + { + "preset":"Coherent Creativity", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"A good balance between coherence, creativity, and quality of prose.", + "genamt":50, + "rep_pen":"1.2", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.51", + "tfs":"0.99", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":1 + }, + { + "preset":"Coherent Creativity", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"A good balance between coherence, creativity, and quality of prose.", + "genamt":50, + "rep_pen":"1.2", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.51", + "tfs":"0.99", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":1 + }, + { + "preset":"Coherent Creativity", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"A good balance between coherence, creativity, and quality of prose.", + "genamt":50, + "rep_pen":"1.2", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.51", + "tfs":"0.99", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":1 + }, + { + "preset":"Coherent Creativity", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"A good balance between coherence, creativity, and quality of prose.", + "genamt":50, + "rep_pen":"1.2", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.51", + "tfs":"0.99", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":1 + }, + { + "preset":"Emperor Moth", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"Medium randomness with a decent bit of creative writing.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.25", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":2 + }, + { + "preset":"Emperor Moth", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"Medium randomness with a decent bit of creative writing.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.25", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":2 + }, + { + "preset":"Emperor Moth", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"Medium randomness with a decent bit of creative writing.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.25", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":2 + }, + { + "preset":"Emperor Moth", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"Medium randomness with a decent bit of creative writing.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.25", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":2 + }, + { + "preset":"Luna Moth", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"A great degree of creativity without losing coherency.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":2, + "tfs":1, + "top_a":0, + "top_k":85, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":3 + }, + { + "preset":"Luna Moth", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"A great degree of creativity without losing coherency.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":2, + "tfs":1, + "top_a":0, + "top_k":85, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":3 + }, + { + "preset":"Luna Moth", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"A great degree of creativity without losing coherency.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":2, + "tfs":1, + "top_a":0, + "top_k":85, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":3 + }, + { + "preset":"Luna Moth", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"A great degree of creativity without losing coherency.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":2, + "tfs":1, + "top_a":0, + "top_k":85, + "top_p":"0.24", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":3 + }, + { + "preset":"Pleasing Results", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"Expectable output with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":1024, + "rep_pen_slope":"6.8", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.44", + "tfs":"0.9", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":4 + }, + { + "preset":"Pleasing Results", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"Expectable output with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":1024, + "rep_pen_slope":"6.8", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.44", + "tfs":"0.9", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":4 + }, + { + "preset":"Pleasing Results", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"Expectable output with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":1024, + "rep_pen_slope":"6.8", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.44", + "tfs":"0.9", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":4 + }, + { + "preset":"Pleasing Results", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"Expectable output with alternative context settings.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":1024, + "rep_pen_slope":"6.8", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.44", + "tfs":"0.9", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":4 + }, + { + "preset":"Sphinx Moth", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"2", + "tfs":1, + "top_a":0, + "top_k":30, + "top_p":"0.18", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":5 + }, + { + "preset":"Sphinx Moth", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"2", + "tfs":1, + "top_a":0, + "top_k":30, + "top_p":"0.18", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":5 + }, + { + "preset":"Sphinx Moth", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"2", + "tfs":1, + "top_a":0, + "top_k":30, + "top_p":"0.18", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":5 + }, + { + "preset":"Sphinx Moth", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"Maximum randomness while still being plot relevant. Like Sphinx riddles!", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"2", + "tfs":1, + "top_a":0, + "top_k":30, + "top_p":"0.18", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":5 + }, + { + "preset":"Storywriter", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"Optimized settings for relevant output.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.72", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.73", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":6 + }, + { + "preset":"Storywriter", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"Optimized settings for relevant output.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.72", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.73", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":6 + }, + { + "preset":"Storywriter", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":"Optimized settings for relevant output.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.72", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.73", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":6 + }, + { + "preset":"Storywriter", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":"Optimized settings for relevant output.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.72", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.73", + "typical":1, + "Model Category":"6B", + "Author":null, + "uid":6 + }, + { + "preset":"Ace of Spades", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Expressive, while still staying focused.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":7, + "sampler_order":[ + 3, + 2, + 0, + 5, + 1, + 4 + ], + "temp":"1.15", + "tfs":"0.8", + "top_a":0, + "top_k":0, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":7 + }, + { + "preset":"Ace of Spades", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Expressive, while still staying focused.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":7, + "sampler_order":[ + 3, + 2, + 0, + 5, + 1, + 4 + ], + "temp":"1.15", + "tfs":"0.8", + "top_a":0, + "top_k":0, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":7 + }, + { + "preset":"Ace of Spades", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Expressive, while still staying focused.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":7, + "sampler_order":[ + 3, + 2, + 0, + 5, + 1, + 4 + ], + "temp":"1.15", + "tfs":"0.8", + "top_a":0, + "top_k":0, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":7 + }, + { + "preset":"Ace of Spades", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Expressive, while still staying focused.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":7, + "sampler_order":[ + 3, + 2, + 0, + 5, + 1, + 4 + ], + "temp":"1.15", + "tfs":"0.8", + "top_a":0, + "top_k":0, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":7 + }, + { + "preset":"All-Nighter", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Creative diction with room for embellishments.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":400, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 5, + 3, + 1, + 4 + ], + "temp":"1.33", + "tfs":"0.84", + "top_a":0, + "top_k":13, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":8 + }, + { + "preset":"All-Nighter", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Creative diction with room for embellishments.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":400, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 5, + 3, + 1, + 4 + ], + "temp":"1.33", + "tfs":"0.84", + "top_a":0, + "top_k":13, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":8 + }, + { + "preset":"All-Nighter", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Creative diction with room for embellishments.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":400, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 5, + 3, + 1, + 4 + ], + "temp":"1.33", + "tfs":"0.84", + "top_a":0, + "top_k":13, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":8 + }, + { + "preset":"All-Nighter", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Creative diction with room for embellishments.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":400, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 5, + 3, + 1, + 4 + ], + "temp":"1.33", + "tfs":"0.84", + "top_a":0, + "top_k":13, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":8 + }, + { + "preset":"Basic Coherence", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Keep things on track.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.59", + "tfs":"0.87", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":9 + }, + { + "preset":"Basic Coherence", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Keep things on track.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.59", + "tfs":"0.87", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":9 + }, + { + "preset":"Basic Coherence", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Keep things on track.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.59", + "tfs":"0.87", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":9 + }, + { + "preset":"Basic Coherence", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Keep things on track.", + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.59", + "tfs":"0.87", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":9 + }, + { + "preset":"Fandango", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"A rhytmic dance of prose, whoever takes the lead.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.86", + "tfs":1, + "top_a":0, + "top_k":20, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":10 + }, + { + "preset":"Fandango", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"A rhytmic dance of prose, whoever takes the lead.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.86", + "tfs":1, + "top_a":0, + "top_k":20, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":10 + }, + { + "preset":"Fandango", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"A rhytmic dance of prose, whoever takes the lead.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.86", + "tfs":1, + "top_a":0, + "top_k":20, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":10 + }, + { + "preset":"Fandango", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"A rhytmic dance of prose, whoever takes the lead.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.86", + "tfs":1, + "top_a":0, + "top_k":20, + "top_p":"0.95", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":10 + }, + { + "preset":"Genesis", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Stable and logical, but with scattered creativity.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.63", + "tfs":"0.98", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":11 + }, + { + "preset":"Genesis", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Stable and logical, but with scattered creativity.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.63", + "tfs":"0.98", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":11 + }, + { + "preset":"Genesis", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Stable and logical, but with scattered creativity.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.63", + "tfs":"0.98", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":11 + }, + { + "preset":"Genesis", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Stable and logical, but with scattered creativity.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.63", + "tfs":"0.98", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":11 + }, + { + "preset":"Low Rider", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Reliable, aimed at story development.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.94", + "tfs":"0.94", + "top_a":0, + "top_k":12, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":12 + }, + { + "preset":"Low Rider", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Reliable, aimed at story development.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.94", + "tfs":"0.94", + "top_a":0, + "top_k":12, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":12 + }, + { + "preset":"Low Rider", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Reliable, aimed at story development.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.94", + "tfs":"0.94", + "top_a":0, + "top_k":12, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":12 + }, + { + "preset":"Low Rider", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Reliable, aimed at story development.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.94", + "tfs":"0.94", + "top_a":0, + "top_k":12, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":12 + }, + { + "preset":"Moonlit Chronicler", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Tells a tale with confidence, but variety where it matters.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 4, + 1, + 3, + 5, + 2 + ], + "temp":"1.25", + "tfs":"0.8", + "top_a":"0.78", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"13B", + "Author":null, + "uid":13 + }, + { + "preset":"Moonlit Chronicler", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Tells a tale with confidence, but variety where it matters.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 4, + 1, + 3, + 5, + 2 + ], + "temp":"1.25", + "tfs":"0.8", + "top_a":"0.78", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"13B", + "Author":null, + "uid":13 + }, + { + "preset":"Moonlit Chronicler", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Tells a tale with confidence, but variety where it matters.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 4, + 1, + 3, + 5, + 2 + ], + "temp":"1.25", + "tfs":"0.8", + "top_a":"0.78", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"13B", + "Author":null, + "uid":13 + }, + { + "preset":"Moonlit Chronicler", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Tells a tale with confidence, but variety where it matters.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 4, + 1, + 3, + 5, + 2 + ], + "temp":"1.25", + "tfs":"0.8", + "top_a":"0.78", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"13B", + "Author":null, + "uid":13 + }, + { + "preset":"Morpho", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Let the AI generate without constraints.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.69", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":14 + }, + { + "preset":"Morpho", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Let the AI generate without constraints.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.69", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":14 + }, + { + "preset":"Morpho", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Let the AI generate without constraints.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.69", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":14 + }, + { + "preset":"Morpho", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Let the AI generate without constraints.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.69", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":14 + }, + { + "preset":"Ouroboros", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Versatile, conforms well to poems, lists, chat, etc.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":404, + "rep_pen_slope":"0.8", + "sampler_order":[ + 0, + 5, + 3, + 2, + 1, + 4 + ], + "temp":"1.07", + "tfs":"0.93", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":15 + }, + { + "preset":"Ouroboros", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Versatile, conforms well to poems, lists, chat, etc.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":404, + "rep_pen_slope":"0.8", + "sampler_order":[ + 0, + 5, + 3, + 2, + 1, + 4 + ], + "temp":"1.07", + "tfs":"0.93", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":15 + }, + { + "preset":"Ouroboros", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Versatile, conforms well to poems, lists, chat, etc.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":404, + "rep_pen_slope":"0.8", + "sampler_order":[ + 0, + 5, + 3, + 2, + 1, + 4 + ], + "temp":"1.07", + "tfs":"0.93", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":15 + }, + { + "preset":"Ouroboros", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Versatile, conforms well to poems, lists, chat, etc.", + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":404, + "rep_pen_slope":"0.8", + "sampler_order":[ + 0, + 5, + 3, + 2, + 1, + 4 + ], + "temp":"1.07", + "tfs":"0.93", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":15 + }, + { + "preset":"Pro Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 3, + 2, + 5, + 0, + 1, + 4 + ], + "temp":"1.35", + "tfs":"0.69", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":16 + }, + { + "preset":"Pro Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 3, + 2, + 5, + 0, + 1, + 4 + ], + "temp":"1.35", + "tfs":"0.69", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":16 + }, + { + "preset":"Pro Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 3, + 2, + 5, + 0, + 1, + 4 + ], + "temp":"1.35", + "tfs":"0.69", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":16 + }, + { + "preset":"Pro Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Optimal setting for readability, based on AI-powered mass statistical analysis of Euterpe output.", + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 3, + 2, + 5, + 0, + 1, + 4 + ], + "temp":"1.35", + "tfs":"0.69", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"13B", + "Author":null, + "uid":16 + }, + { + "preset":"Aces High", + "Model Size":"20B", + "Model Type":"Neo(X) (Neo-X 20B)", + "description":null, + "genamt":50, + "rep_pen":"1.03", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 2, + 4, + 5, + 3, + 1, + 0 + ], + "temp":"0.7", + "tfs":"0.98", + "top_a":"0.05", + "top_k":10, + "top_p":"0.98", + "typical":"0.99", + "Model Category":"Custom", + "Author":null, + "uid":17 + }, + { + "preset":"Co-Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.55", + "tfs":"0.7", + "top_a":0, + "top_k":14, + "top_p":"0.9", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":18 + }, + { + "preset":"Co-Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.55", + "tfs":"0.7", + "top_a":0, + "top_k":14, + "top_p":"0.9", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":18 + }, + { + "preset":"Co-Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.55", + "tfs":"0.7", + "top_a":0, + "top_k":14, + "top_p":"0.9", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":18 + }, + { + "preset":"Co-Writer", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":50, + "rep_pen":"1.15", + "rep_pen_range":2048, + "rep_pen_slope":"0.3", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":"0.55", + "tfs":"0.7", + "top_a":0, + "top_k":14, + "top_p":"0.9", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":18 + }, + { + "preset":"Damn Decent", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":60, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 1, + 0, + 2, + 4, + 3, + 5 + ], + "temp":"1.1", + "tfs":"0.9", + "top_a":"0.35", + "top_k":0, + "top_p":1, + "typical":"0.9", + "Model Category":"Custom", + "Author":null, + "uid":19 + }, + { + "preset":"Damn Decent", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":60, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 1, + 0, + 2, + 4, + 3, + 5 + ], + "temp":"1.1", + "tfs":"0.9", + "top_a":"0.35", + "top_k":0, + "top_p":1, + "typical":"0.9", + "Model Category":"Custom", + "Author":null, + "uid":19 + }, + { + "preset":"Damn Decent", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":60, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 1, + 0, + 2, + 4, + 3, + 5 + ], + "temp":"1.1", + "tfs":"0.9", + "top_a":"0.35", + "top_k":0, + "top_p":1, + "typical":"0.9", + "Model Category":"Custom", + "Author":null, + "uid":19 + }, + { + "preset":"Damn Decent", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":60, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.1", + "sampler_order":[ + 1, + 0, + 2, + 4, + 3, + 5 + ], + "temp":"1.1", + "tfs":"0.9", + "top_a":"0.35", + "top_k":0, + "top_p":1, + "typical":"0.9", + "Model Category":"Custom", + "Author":null, + "uid":19 + }, + { + "preset":"Decadence", + "Model Size":"20B", + "Model Type":"Neo(X) (Neo-X 20B)", + "description":null, + "genamt":40, + "rep_pen":"1", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 0, + 5, + 4, + 2, + 1 + ], + "temp":2, + "tfs":"0.99", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":"0.97", + "Model Category":"Custom", + "Author":null, + "uid":20 + }, + { + "preset":"Emerald", + "Model Size":"20B", + "Model Type":"Neo(X) (Neo-X 20B)", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":1024, + "rep_pen_slope":"0.8", + "sampler_order":[ + 4, + 3, + 2, + 0, + 1, + 5 + ], + "temp":"1.2", + "tfs":"0.96", + "top_a":"0.01", + "top_k":43, + "top_p":"0.94", + "typical":"0.98", + "Model Category":"Custom", + "Author":null, + "uid":21 + }, + { + "preset":"Fever Dreams", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":80, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.99", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":22 + }, + { + "preset":"Fever Dreams", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":80, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.99", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":22 + }, + { + "preset":"Fever Dreams", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":80, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.99", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":22 + }, + { + "preset":"Fever Dreams", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":80, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"0.99", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":22 + }, + { + "preset":"Gojira", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 0, + 2, + 1, + 4 + ], + "temp":"1.22", + "tfs":"0.99", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":23 + }, + { + "preset":"Gojira", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 0, + 2, + 1, + 4 + ], + "temp":"1.22", + "tfs":"0.99", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":23 + }, + { + "preset":"Gojira", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 0, + 2, + 1, + 4 + ], + "temp":"1.22", + "tfs":"0.99", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":23 + }, + { + "preset":"Gojira", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 0, + 2, + 1, + 4 + ], + "temp":"1.22", + "tfs":"0.99", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":23 + }, + { + "preset":"Lycaenidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":30, + "rep_pen":"1.15", + "rep_pen_range":256, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 2, + 0, + 1, + 4 + ], + "temp":"2", + "tfs":"0.99", + "top_a":0, + "top_k":12, + "top_p":"0.85", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":24 + }, + { + "preset":"Lycaenidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":30, + "rep_pen":"1.15", + "rep_pen_range":256, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 2, + 0, + 1, + 4 + ], + "temp":"2", + "tfs":"0.99", + "top_a":0, + "top_k":12, + "top_p":"0.85", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":24 + }, + { + "preset":"Lycaenidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":30, + "rep_pen":"1.15", + "rep_pen_range":256, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 2, + 0, + 1, + 4 + ], + "temp":"2", + "tfs":"0.99", + "top_a":0, + "top_k":12, + "top_p":"0.85", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":24 + }, + { + "preset":"Lycaenidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":30, + "rep_pen":"1.15", + "rep_pen_range":256, + "rep_pen_slope":0, + "sampler_order":[ + 3, + 5, + 2, + 0, + 1, + 4 + ], + "temp":"2", + "tfs":"0.99", + "top_a":0, + "top_k":12, + "top_p":"0.85", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":24 + }, + { + "preset":"Monarch", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 2, + 0, + 1, + 3, + 4, + 5 + ], + "temp":"2", + "tfs":"0.98", + "top_a":0, + "top_k":"100", + "top_p":"0.93", + "typical":"0.99", + "Model Category":"Custom", + "Author":null, + "uid":25 + }, + { + "preset":"Monarch", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 2, + 0, + 1, + 3, + 4, + 5 + ], + "temp":"2", + "tfs":"0.98", + "top_a":0, + "top_k":"100", + "top_p":"0.93", + "typical":"0.99", + "Model Category":"Custom", + "Author":null, + "uid":25 + }, + { + "preset":"Monarch", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 2, + 0, + 1, + 3, + 4, + 5 + ], + "temp":"2", + "tfs":"0.98", + "top_a":0, + "top_k":"100", + "top_p":"0.93", + "typical":"0.99", + "Model Category":"Custom", + "Author":null, + "uid":25 + }, + { + "preset":"Monarch", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 2, + 0, + 1, + 3, + 4, + 5 + ], + "temp":"2", + "tfs":"0.98", + "top_a":0, + "top_k":"100", + "top_p":"0.93", + "typical":"0.99", + "Model Category":"Custom", + "Author":null, + "uid":25 + }, + { + "preset":"Monkey Business", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 0, + 2, + 3, + 5, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":26 + }, + { + "preset":"Monkey Business", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 0, + 2, + 3, + 5, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":26 + }, + { + "preset":"Monkey Business", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 0, + 2, + 3, + 5, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":26 + }, + { + "preset":"Monkey Business", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 0, + 2, + 3, + 5, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":26 + }, + { + "preset":"Monkey Business.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":27 + }, + { + "preset":"Monkey Business.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":27 + }, + { + "preset":"Monkey Business.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":27 + }, + { + "preset":"Monkey Business.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":2048, + "rep_pen_slope":"0.2", + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.2", + "tfs":"0.97", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":27 + }, + { + "preset":"Mothra", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":28 + }, + { + "preset":"Mothra", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":28 + }, + { + "preset":"Mothra", + "Model Size":"6B", + "Model Type":"hakurei\/lit-6B", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":28 + }, + { + "preset":"Mothra", + "Model Size":"6B", + "Model Type":"EleutherAI\/gpt-j-6B", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":28 + }, + { + "preset":"Mothra.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":29 + }, + { + "preset":"Mothra.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":29 + }, + { + "preset":"Mothra.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":29 + }, + { + "preset":"Mothra.1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":40, + "rep_pen":"1.1\/1.05", + "rep_pen_range":512, + "rep_pen_slope":0, + "sampler_order":[ + 0, + 3, + 5, + 2, + 1, + 4 + ], + "temp":"1.25", + "tfs":"0.9\/0.8", + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":29 + }, + { + "preset":"Necromancer", + "Model Size":"20B", + "Model Type":"Neo(X) (Neo-X 20B)", + "description":null, + "genamt":50, + "rep_pen":"1.03", + "rep_pen_range":2048, + "rep_pen_slope":"10.0", + "sampler_order":[ + 0, + 3, + 1, + 4, + 2, + 5 + ], + "temp":"2", + "tfs":1, + "top_a":0, + "top_k":"100", + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":30 + }, + { + "preset":"Nymphalidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.18", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":31 + }, + { + "preset":"Nymphalidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.18", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":31 + }, + { + "preset":"Nymphalidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.18", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":31 + }, + { + "preset":"Nymphalidae", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":30, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":0, + "sampler_order":[ + 5, + 0, + 2, + 3, + 1, + 4 + ], + "temp":"1.18", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":31 + }, + { + "preset":"Red Viper", + "Model Size":"20B", + "Model Type":"Neo(X) (Neo-X 20B)", + "description":null, + "genamt":70, + "rep_pen":"1.01", + "rep_pen_range":496, + "rep_pen_slope":"0.7", + "sampler_order":[ + 4, + 5, + 3, + 2, + 1, + 0 + ], + "temp":1, + "tfs":"0.97", + "top_a":"0.06", + "top_k":0, + "top_p":"0.98", + "typical":"0.97", + "Model Category":"Custom", + "Author":null, + "uid":32 + }, + { + "preset":"Swansong", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 4, + 3, + 5, + 1, + 2, + 0 + ], + "temp":2, + "tfs":"0.95", + "top_a":"0.05", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"Custom", + "Author":null, + "uid":33 + }, + { + "preset":"Swansong", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 4, + 3, + 5, + 1, + 2, + 0 + ], + "temp":2, + "tfs":"0.95", + "top_a":"0.05", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"Custom", + "Author":null, + "uid":33 + }, + { + "preset":"Swansong", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 4, + 3, + 5, + 1, + 2, + 0 + ], + "temp":2, + "tfs":"0.95", + "top_a":"0.05", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"Custom", + "Author":null, + "uid":33 + }, + { + "preset":"Swansong", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":50, + "rep_pen":"1.05", + "rep_pen_range":0, + "rep_pen_slope":0, + "sampler_order":[ + 4, + 3, + 5, + 1, + 2, + 0 + ], + "temp":2, + "tfs":"0.95", + "top_a":"0.05", + "top_k":"100", + "top_p":1, + "typical":"0.95", + "Model Category":"Custom", + "Author":null, + "uid":33 + }, + { + "preset":"Top Gun", + "Model Size":"20B", + "Model Type":"Neo(X) (Neo-X 20B)", + "description":null, + "genamt":40, + "rep_pen":"1.03", + "rep_pen_range":880, + "rep_pen_slope":"0.2", + "sampler_order":[ + 2, + 4, + 5, + 3, + 1, + 0 + ], + "temp":"0.58", + "tfs":"0.92", + "top_a":"0.1", + "top_k":10, + "top_p":"0.68", + "typical":"0.99", + "Model Category":"Custom", + "Author":null, + "uid":34 + }, + { + "preset":"Trust", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":40, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"10.0", + "sampler_order":[ + 3, + 0, + 5, + 2, + 1, + 4 + ], + "temp":"0.65", + "tfs":"0.85", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":35 + }, + { + "preset":"Trust", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":40, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"10.0", + "sampler_order":[ + 3, + 0, + 5, + 2, + 1, + 4 + ], + "temp":"0.65", + "tfs":"0.85", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":35 + }, + { + "preset":"Trust", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":40, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"10.0", + "sampler_order":[ + 3, + 0, + 5, + 2, + 1, + 4 + ], + "temp":"0.65", + "tfs":"0.85", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":35 + }, + { + "preset":"Trust", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":40, + "rep_pen":"1.05", + "rep_pen_range":2048, + "rep_pen_slope":"10.0", + "sampler_order":[ + 3, + 0, + 5, + 2, + 1, + 4 + ], + "temp":"0.65", + "tfs":"0.85", + "top_a":0, + "top_k":0, + "top_p":"0.98", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":35 + }, + { + "preset":"Weaver", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":null, + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.5", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":1, + "tfs":"0.88", + "top_a":0, + "top_k":12, + "top_p":"0.83", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":36 + }, + { + "preset":"Weaver", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":null, + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.5", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":1, + "tfs":"0.88", + "top_a":0, + "top_k":12, + "top_p":"0.83", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":36 + }, + { + "preset":"Weaver", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Shinen", + "description":null, + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.5", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":1, + "tfs":"0.88", + "top_a":0, + "top_k":12, + "top_p":"0.83", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":36 + }, + { + "preset":"Weaver", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":null, + "genamt":50, + "rep_pen":"1.1", + "rep_pen_range":2048, + "rep_pen_slope":"0.5", + "sampler_order":[ + 2, + 0, + 3, + 5, + 1, + 4 + ], + "temp":1, + "tfs":"0.88", + "top_a":0, + "top_k":12, + "top_p":"0.83", + "typical":1, + "Model Category":"Custom", + "Author":null, + "uid":36 + }, + { + "preset":"Godlike 2", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 1, + 2, + 0 + ], + "temp":0.8, + "tfs":"0.97", + "top_a":0.8, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":37 + }, + { + "preset":"Godlike 2", + "Model Size":"13B", + "Model Type":"facebook\/opt-13b", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 1, + 2, + 0 + ], + "temp":0.8, + "tfs":"0.97", + "top_a":0.8, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":37 + }, + { + "preset":"Godlike 2", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 1, + 2, + 0 + ], + "temp":0.8, + "tfs":"0.97", + "top_a":0.8, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":37 + }, + { + "preset":"Godlike 2", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 1, + 2, + 0 + ], + "temp":0.8, + "tfs":"0.97", + "top_a":0.8, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":37 + }, + { + "preset":"Godlike1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 2, + 1, + 0 + ], + "temp":0.7, + "tfs":"0.97", + "top_a":0.75, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":38 + }, + { + "preset":"Godlike1", + "Model Size":"13B", + "Model Type":"facebook\/opt-13b", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 2, + 1, + 0 + ], + "temp":0.7, + "tfs":"0.97", + "top_a":0.75, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":38 + }, + { + "preset":"Godlike1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Nerys", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 2, + 1, + 0 + ], + "temp":0.7, + "tfs":"0.97", + "top_a":0.75, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":38 + }, + { + "preset":"Godlike1", + "Model Size":"13B", + "Model Type":"KoboldAI\/fairseq-dense-13B-Janeway", + "description":"Makes AI give a descriptive and sensual output.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 5, + 4, + 3, + 2, + 1, + 0 + ], + "temp":0.7, + "tfs":"0.97", + "top_a":0.75, + "top_k":0, + "top_p":"0.5", + "typical":"0.19", + "Model Category":"Original", + "Author":"Chasm", + "uid":38 + }, + { + "preset":"Good Winds", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"Let AI direct the plot, but still stay logical.", + "genamt":100, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "temp":"0.7", + "tfs":"0.9", + "top_a":0, + "top_k":0, + "top_p":1, + "typical":1, + "Model Category":"Original", + "Author":"xen0", + "uid":39 + }, + { + "preset":"Light Breeze", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Skein", + "description":"Staying on track, not complex stories, directing the plot yourself.", + "genamt":80, + "rep_pen":"1.2", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "temp":"0.6", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.85", + "typical":1, + "Model Category":"Original", + "Author":"xen0", + "uid":40 + }, + { + "preset":"Liminal Drift", + "Model Size":"13B", + "Model Type":"facebook\/opt-13b", + "description":"Drives coherent dialogue, responses, and behavior, sometimes surreal situations arise based on information already present in the story.", + "genamt":80, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 4, + 5, + 1, + 0, + 2, + 3 + ], + "temp":"0.66", + "tfs":1, + "top_a":"0.96", + "top_k":0, + "top_p":1, + "typical":"0.6", + "Model Category":"Original", + "Author":"Chasm", + "uid":41 + }, + { + "preset":"Mayday", + "Model Size":"6B", + "Model Type":"KoboldAI\/GPT-J-6B-Adventure", + "description":"Wacky plot, creativity from AI, crazy stories you want AI to weird out.", + "genamt":120, + "rep_pen":"1.1", + "rep_pen_range":1024, + "rep_pen_slope":"0.7", + "sampler_order":[ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "temp":"1.05", + "tfs":1, + "top_a":0, + "top_k":0, + "top_p":"0.95", + "typical":1, + "Model Category":"Original", + "Author":"xen0", + "uid":42 + } +] \ No newline at end of file diff --git a/static/koboldai.js b/static/koboldai.js index a76016d0..ea515d45 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -128,7 +128,7 @@ function reset_story() { world_info_folder({"root": []}); document.getElementById("story_prompt").setAttribute("world_info_uids", ""); document.getElementById('themerow').classList.remove("hidden"); - document.getElementById('input_text').placeholder = "Enter Prompt Here"; + document.getElementById('input_text').placeholder = "Enter Prompt Here (shift+enter for new line)"; } function fix_text(val) { @@ -164,18 +164,37 @@ function create_options(data) { } option_container.append(option_chunk); } - //first, let's clear out our existing data - while (option_chunk.firstChild) { - option_chunk.removeChild(option_chunk.firstChild); + //first, let's clear out any extra options + options = []; + if (option_chunk.firstChild) { + for (child of option_chunk.firstChild.childNodes) { + options.push(child.firstChild); + } + } + for (item of options) { + if (item.getAttribute("option_id") >= data.value.action.Options.length) { + item.parentElement.remove() + } + } + if (option_chunk.firstChild) { + var table = option_chunk.firstChild; + } else { + var table = document.createElement("div"); + table.classList.add("sequences"); } - var table = document.createElement("div"); - table.classList.add("sequences"); //Add Redo options i=0; for (item of data.value.action.Options) { if ((item['Previous Selection'])) { - var row = document.createElement("div"); - row.classList.add("sequence_row"); + if (i < options.length) { + var row = options[i]; + while (row.firstChild) { + row.removeChild(row.firstChild); + } + } else { + var row = document.createElement("div"); + row.classList.add("sequence_row"); + } var textcell = document.createElement("span"); textcell.textContent = item.text; textcell.classList.add("sequence"); @@ -200,11 +219,18 @@ function create_options(data) { i+=1; } //Add general options - i=0; + //i=0; for (item of data.value.action.Options) { if (!(item.Edited) && !(item['Previous Selection'])) { - var row = document.createElement("div"); - row.classList.add("sequence_row"); + if (i < options.length) { + var row = options[i]; + while (row.firstChild) { + row.removeChild(row.firstChild); + } + } else { + var row = document.createElement("div"); + row.classList.add("sequence_row"); + } var textcell = document.createElement("span"); textcell.textContent = item.text; textcell.classList.add("sequence"); @@ -310,14 +336,14 @@ function do_prompt(data) { } //if we have a prompt we need to disable the theme area, or enable it if we don't if (data.value != "") { - document.getElementById('input_text').placeholder = "Enter text here"; + document.getElementById('input_text').placeholder = "Enter text here (shift+enter for new line)"; document.getElementById('themerow').classList.add("hidden"); document.getElementById('themetext').value = ""; if (document.getElementById("Delete Me")) { document.getElementById("Delete Me").remove(); } } else { - document.getElementById('input_text').placeholder = "Enter Prompt Here"; + document.getElementById('input_text').placeholder = "Enter Prompt Here (shift+enter for new line)"; document.getElementById('input_text').disabled = false; document.getElementById('themerow').classList.remove("hidden"); } From 5dbbdb418907186e06d6002a44bc037338d85b1f Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 13:14:09 -0400 Subject: [PATCH 12/20] Fix --- aiserver.py | 2 +- static/koboldai.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aiserver.py b/aiserver.py index bf24a6c1..8c5cf2af 100644 --- a/aiserver.py +++ b/aiserver.py @@ -259,7 +259,7 @@ app.config['SESSION_TYPE'] = 'filesystem' app.config['TEMPLATES_AUTO_RELOAD'] = True Session(app) socketio = SocketIO(app, async_method="eventlet", manage_session=False, cors_allowed_origins='*') -#socketio = SocketIO(app, async_method="eventlet", logger=True, engineio_logger=True, manage_session=False) +#socketio = SocketIO(app, async_method="eventlet", manage_session=False, cors_allowed_origins='*', logger=True, engineio_logger=True) koboldai_vars = koboldai_settings.koboldai_vars(session, socketio) utils.koboldai_vars = koboldai_vars diff --git a/static/koboldai.js b/static/koboldai.js index ea515d45..103a98e9 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -219,7 +219,7 @@ function create_options(data) { i+=1; } //Add general options - //i=0; + i=0; for (item of data.value.action.Options) { if (!(item.Edited) && !(item['Previous Selection'])) { if (i < options.length) { From 0214cbd06460f7ff27ef86330d48084d347118e0 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 13:18:27 -0400 Subject: [PATCH 13/20] Potential fix for story menu on mobile --- aiserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiserver.py b/aiserver.py index 8c5cf2af..cd94b889 100644 --- a/aiserver.py +++ b/aiserver.py @@ -7293,7 +7293,7 @@ def UI_2_load_story_list(data): deleteable=True, show_breadcrumbs=True, item_check=valid_story, valid_only=True, hide_extention=True, extra_parameter_function=get_story_listing_data, column_names=['Story Name', 'Action Count', 'Last Loaded'], show_filename=False, - column_widths=['auto', '150px', '150px'], advanced_sort=story_sort, + column_widths=['minmax(150px, auto)', '150px', '150px'], advanced_sort=story_sort, sort="Modified", desc=True) def get_story_listing_data(item_full_path, item, valid_selection): From 9805c4c3e186e916399277ba79aee013f1636caf Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 13:33:22 -0400 Subject: [PATCH 14/20] Mobile Fix --- static/koboldai.js | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/static/koboldai.js b/static/koboldai.js index 103a98e9..f8222dfa 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -164,36 +164,33 @@ function create_options(data) { } option_container.append(option_chunk); } - //first, let's clear out any extra options - options = []; - if (option_chunk.firstChild) { - for (child of option_chunk.firstChild.childNodes) { - options.push(child.firstChild); - } - } - for (item of options) { - if (item.getAttribute("option_id") >= data.value.action.Options.length) { - item.parentElement.remove() - } - } + //get our option area if (option_chunk.firstChild) { var table = option_chunk.firstChild; } else { var table = document.createElement("div"); table.classList.add("sequences"); } + + //first, let's clear out any extra options + for (item of table.childNodes) { + if (item.getAttribute("option_id") >= data.value.action.Options.length) { + item.parentElement.remove() + } + } //Add Redo options i=0; for (item of data.value.action.Options) { if ((item['Previous Selection'])) { - if (i < options.length) { - var row = options[i]; + if (document.getElementById("option_row_"+i)) { + var row = document.getElementById("option_row_"+i); while (row.firstChild) { row.removeChild(row.firstChild); } } else { var row = document.createElement("div"); row.classList.add("sequence_row"); + row.id="option_row_"+i; } var textcell = document.createElement("span"); textcell.textContent = item.text; @@ -222,14 +219,15 @@ function create_options(data) { i=0; for (item of data.value.action.Options) { if (!(item.Edited) && !(item['Previous Selection'])) { - if (i < options.length) { - var row = options[i]; + if (document.getElementById("option_row_"+i)) { + var row = document.getElementById("option_row_"+i); while (row.firstChild) { row.removeChild(row.firstChild); } } else { var row = document.createElement("div"); row.classList.add("sequence_row"); + row.id="option_row_"+i; } var textcell = document.createElement("span"); textcell.textContent = item.text; From 4a5293fea8ebbbbd4c157b08e864f4ab785657de Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 13:40:39 -0400 Subject: [PATCH 15/20] Fix for mobile --- static/koboldai.js | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/static/koboldai.js b/static/koboldai.js index f8222dfa..8a1add1d 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -184,34 +184,35 @@ function create_options(data) { if ((item['Previous Selection'])) { if (document.getElementById("option_row_"+i)) { var row = document.getElementById("option_row_"+i); - while (row.firstChild) { - row.removeChild(row.firstChild); - } + var textcell = row.firstChild; + var iconcell = row.lastChild; + var icon = iconcell.firstChild; } else { var row = document.createElement("div"); row.classList.add("sequence_row"); row.id="option_row_"+i; + var textcell = document.createElement("span"); + var iconcell = document.createElement("span"); + var icon = document.createElement("span"); + iconcell.append(icon); + row.append(textcell); + row.append(iconcell); + table.append(row); } - var textcell = document.createElement("span"); - textcell.textContent = item.text; textcell.classList.add("sequence"); textcell.setAttribute("option_id", i); textcell.setAttribute("option_chunk", data.value.id); - var iconcell = document.createElement("span"); iconcell.setAttribute("option_id", i); iconcell.setAttribute("option_chunk", data.value.id); iconcell.classList.add("sequnce_icon"); - var icon = document.createElement("span"); icon.id = "Pin_"+i; icon.classList.add("oi"); icon.setAttribute('data-glyph', "loop-circular"); - iconcell.append(icon); + iconcell.onclick = null; textcell.onclick = function () { socket.emit("Use Option Text", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); }; - row.append(textcell); - row.append(iconcell); - table.append(row); + } i+=1; } @@ -221,39 +222,40 @@ function create_options(data) { if (!(item.Edited) && !(item['Previous Selection'])) { if (document.getElementById("option_row_"+i)) { var row = document.getElementById("option_row_"+i); - while (row.firstChild) { - row.removeChild(row.firstChild); - } + var textcell = row.firstChild; + var iconcell = row.lastChild; + var icon = iconcell.firstChild; } else { var row = document.createElement("div"); row.classList.add("sequence_row"); row.id="option_row_"+i; + var textcell = document.createElement("span"); + var iconcell = document.createElement("span"); + var icon = document.createElement("span"); + iconcell.append(icon); + row.append(textcell); + row.append(iconcell); + table.append(row); } - var textcell = document.createElement("span"); textcell.textContent = item.text; textcell.classList.add("sequence"); textcell.setAttribute("option_id", i); textcell.setAttribute("option_chunk", data.value.id); - var iconcell = document.createElement("span"); iconcell.setAttribute("option_id", i); iconcell.setAttribute("option_chunk", data.value.id); iconcell.classList.add("sequnce_icon"); - var icon = document.createElement("span"); icon.id = "Pin_"+i; icon.classList.add("oi"); icon.setAttribute('data-glyph', "pin"); if (!(item.Pinned)) { icon.setAttribute('style', "filter: brightness(50%);"); } - iconcell.append(icon); iconcell.onclick = function () { socket.emit("Pinning", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); }; textcell.onclick = function () { socket.emit("Use Option Text", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); }; - row.append(textcell); - row.append(iconcell); table.append(row); } i+=1; From 815ccf02641c6e6c5ab3a198c0ce82e3f83c887e Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 14:16:11 -0400 Subject: [PATCH 16/20] Fix for pins on options --- static/koboldai.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/koboldai.js b/static/koboldai.js index 8a1add1d..b41fcd29 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -249,6 +249,8 @@ function create_options(data) { icon.setAttribute('data-glyph', "pin"); if (!(item.Pinned)) { icon.setAttribute('style', "filter: brightness(50%);"); + } else { + icon.removeAttribute('style'); } iconcell.onclick = function () { socket.emit("Pinning", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); From 776acb0c7dd0817deabe30ae821fd750e4371bba Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 14:20:10 -0400 Subject: [PATCH 17/20] Undo last few commits. Mobile version fix didn't help and caused glitches --- static/koboldai.js | 74 ++++++++++++++-------------------------------- 1 file changed, 23 insertions(+), 51 deletions(-) diff --git a/static/koboldai.js b/static/koboldai.js index b41fcd29..353fa440 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -164,55 +164,38 @@ function create_options(data) { } option_container.append(option_chunk); } - //get our option area - if (option_chunk.firstChild) { - var table = option_chunk.firstChild; - } else { - var table = document.createElement("div"); - table.classList.add("sequences"); - } - - //first, let's clear out any extra options - for (item of table.childNodes) { - if (item.getAttribute("option_id") >= data.value.action.Options.length) { - item.parentElement.remove() - } + //first, let's clear out our existing data + while (option_chunk.firstChild) { + option_chunk.removeChild(option_chunk.firstChild); } + var table = document.createElement("div"); + table.classList.add("sequences"); //Add Redo options i=0; for (item of data.value.action.Options) { if ((item['Previous Selection'])) { - if (document.getElementById("option_row_"+i)) { - var row = document.getElementById("option_row_"+i); - var textcell = row.firstChild; - var iconcell = row.lastChild; - var icon = iconcell.firstChild; - } else { - var row = document.createElement("div"); - row.classList.add("sequence_row"); - row.id="option_row_"+i; - var textcell = document.createElement("span"); - var iconcell = document.createElement("span"); - var icon = document.createElement("span"); - iconcell.append(icon); - row.append(textcell); - row.append(iconcell); - table.append(row); - } + var row = document.createElement("div"); + row.classList.add("sequence_row"); + var textcell = document.createElement("span"); + textcell.textContent = item.text; textcell.classList.add("sequence"); textcell.setAttribute("option_id", i); textcell.setAttribute("option_chunk", data.value.id); + var iconcell = document.createElement("span"); iconcell.setAttribute("option_id", i); iconcell.setAttribute("option_chunk", data.value.id); iconcell.classList.add("sequnce_icon"); + var icon = document.createElement("span"); icon.id = "Pin_"+i; icon.classList.add("oi"); icon.setAttribute('data-glyph', "loop-circular"); - iconcell.onclick = null; + iconcell.append(icon); textcell.onclick = function () { socket.emit("Use Option Text", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); }; - + row.append(textcell); + row.append(iconcell); + table.append(row); } i+=1; } @@ -220,44 +203,33 @@ function create_options(data) { i=0; for (item of data.value.action.Options) { if (!(item.Edited) && !(item['Previous Selection'])) { - if (document.getElementById("option_row_"+i)) { - var row = document.getElementById("option_row_"+i); - var textcell = row.firstChild; - var iconcell = row.lastChild; - var icon = iconcell.firstChild; - } else { - var row = document.createElement("div"); - row.classList.add("sequence_row"); - row.id="option_row_"+i; - var textcell = document.createElement("span"); - var iconcell = document.createElement("span"); - var icon = document.createElement("span"); - iconcell.append(icon); - row.append(textcell); - row.append(iconcell); - table.append(row); - } + var row = document.createElement("div"); + row.classList.add("sequence_row"); + var textcell = document.createElement("span"); textcell.textContent = item.text; textcell.classList.add("sequence"); textcell.setAttribute("option_id", i); textcell.setAttribute("option_chunk", data.value.id); + var iconcell = document.createElement("span"); iconcell.setAttribute("option_id", i); iconcell.setAttribute("option_chunk", data.value.id); iconcell.classList.add("sequnce_icon"); + var icon = document.createElement("span"); icon.id = "Pin_"+i; icon.classList.add("oi"); icon.setAttribute('data-glyph', "pin"); if (!(item.Pinned)) { icon.setAttribute('style', "filter: brightness(50%);"); - } else { - icon.removeAttribute('style'); } + iconcell.append(icon); iconcell.onclick = function () { socket.emit("Pinning", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); }; textcell.onclick = function () { socket.emit("Use Option Text", {"chunk": this.getAttribute("option_chunk"), "option": this.getAttribute("option_id")}); }; + row.append(textcell); + row.append(iconcell); table.append(row); } i+=1; From 6fb2b4ddb39c5cad69d534ea0df63f760b8244d5 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 15:44:25 -0400 Subject: [PATCH 18/20] Fix for auto saving on creating new story --- aiserver.py | 5 ++++- koboldai_settings.py | 9 ++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/aiserver.py b/aiserver.py index cd94b889..7d1a86a7 100644 --- a/aiserver.py +++ b/aiserver.py @@ -4018,10 +4018,13 @@ def actionsubmit(data, actionmode=0, force_submit=False, force_prompt_gen=False, data = f"\n\n> {data}\n" # "Chat" mode + print(koboldai_vars.chatmode) + print(koboldai_vars.gamestarted) if(koboldai_vars.chatmode and koboldai_vars.gamestarted): data = re.sub(r'\n+', ' ', data) if(len(data)): data = f"\n{koboldai_vars.chatname}: {data}\n" + print("Chat Mode Data: {}".format(data)) # If we're not continuing, store a copy of the raw input if(data != ""): @@ -7172,7 +7175,7 @@ def UI_2_submit(data): koboldai_vars.lua_koboldbridge.feedback = None koboldai_vars.recentrng = koboldai_vars.recentrngm = None if koboldai_vars.actions.action_count == -1: - actionsubmit(data['data'], actionmode=0) + actionsubmit(data['data'], actionmode=koboldai_vars.actionmode) else: actionsubmit(data['data'], actionmode=koboldai_vars.actionmode) diff --git a/koboldai_settings.py b/koboldai_settings.py index a6c7fd52..abf0c6fb 100644 --- a/koboldai_settings.py +++ b/koboldai_settings.py @@ -85,12 +85,11 @@ class koboldai_vars(object): #If we can figure out a way to get flask sessions into/through the lua bridge we could re-enable story_name = 'default' if story_name in self._story_settings: - self._story_settings[story_name].reset() else: self._story_settings[story_name] = story_settings(self.socketio) if json_data is not None: - self._story_settings[story_name].from_json(json_data) + self.load_story(sotry_name, json_data) self._story_settings['default'].send_to_ui() def story_list(self): @@ -517,7 +516,6 @@ class story_settings(settings): self.gamestarted = False # Whether the game has started (disables UI elements) self.gamesaved = True # Whether or not current game is saved self.autosave = False # Whether or not to automatically save after each action - self.no_save = False #Temporary disable save (doesn't save with the file) self.prompt = "" # Prompt self.memory = "" # Text submitted to memory field self.authornote = "" # Text submitted to Author's Note field @@ -568,6 +566,9 @@ class story_settings(settings): self.context = [] self.last_story_load = None + #must be at bottom + self.no_save = False #Temporary disable save (doesn't save with the file) + def save_story(self): if not self.no_save: if self.prompt != "" or self.memory != "" or self.authornote != "" or len(self.actions) > 0 or len(self.worldinfo_v2) > 0: @@ -592,8 +593,10 @@ class story_settings(settings): self.gamesaved = True def reset(self): + self.no_save = True self.socketio.emit("reset_story", {}, broadcast=True, room="UI_2") self.__init__(self.socketio, self.koboldai_vars, tokenizer=self.tokenizer) + self.no_save = False def __setattr__(self, name, value): new_variable = name not in self.__dict__ From 2040f506ac1a67382076019e424802bfda8ab4c1 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 15:44:25 -0400 Subject: [PATCH 19/20] Fix for auto saving on creating new story --- aiserver.py | 2 +- koboldai_settings.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/aiserver.py b/aiserver.py index cd94b889..e344a657 100644 --- a/aiserver.py +++ b/aiserver.py @@ -7172,7 +7172,7 @@ def UI_2_submit(data): koboldai_vars.lua_koboldbridge.feedback = None koboldai_vars.recentrng = koboldai_vars.recentrngm = None if koboldai_vars.actions.action_count == -1: - actionsubmit(data['data'], actionmode=0) + actionsubmit(data['data'], actionmode=koboldai_vars.actionmode) else: actionsubmit(data['data'], actionmode=koboldai_vars.actionmode) diff --git a/koboldai_settings.py b/koboldai_settings.py index a6c7fd52..abf0c6fb 100644 --- a/koboldai_settings.py +++ b/koboldai_settings.py @@ -85,12 +85,11 @@ class koboldai_vars(object): #If we can figure out a way to get flask sessions into/through the lua bridge we could re-enable story_name = 'default' if story_name in self._story_settings: - self._story_settings[story_name].reset() else: self._story_settings[story_name] = story_settings(self.socketio) if json_data is not None: - self._story_settings[story_name].from_json(json_data) + self.load_story(sotry_name, json_data) self._story_settings['default'].send_to_ui() def story_list(self): @@ -517,7 +516,6 @@ class story_settings(settings): self.gamestarted = False # Whether the game has started (disables UI elements) self.gamesaved = True # Whether or not current game is saved self.autosave = False # Whether or not to automatically save after each action - self.no_save = False #Temporary disable save (doesn't save with the file) self.prompt = "" # Prompt self.memory = "" # Text submitted to memory field self.authornote = "" # Text submitted to Author's Note field @@ -568,6 +566,9 @@ class story_settings(settings): self.context = [] self.last_story_load = None + #must be at bottom + self.no_save = False #Temporary disable save (doesn't save with the file) + def save_story(self): if not self.no_save: if self.prompt != "" or self.memory != "" or self.authornote != "" or len(self.actions) > 0 or len(self.worldinfo_v2) > 0: @@ -592,8 +593,10 @@ class story_settings(settings): self.gamesaved = True def reset(self): + self.no_save = True self.socketio.emit("reset_story", {}, broadcast=True, room="UI_2") self.__init__(self.socketio, self.koboldai_vars, tokenizer=self.tokenizer) + self.no_save = False def __setattr__(self, name, value): new_variable = name not in self.__dict__ From b2152986491c972e4e843bc36b4ed011abdc3845 Mon Sep 17 00:00:00 2001 From: ebolam Date: Wed, 7 Sep 2022 15:45:58 -0400 Subject: [PATCH 20/20] Remove debug messages --- aiserver.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/aiserver.py b/aiserver.py index 7d1a86a7..e344a657 100644 --- a/aiserver.py +++ b/aiserver.py @@ -4018,13 +4018,10 @@ def actionsubmit(data, actionmode=0, force_submit=False, force_prompt_gen=False, data = f"\n\n> {data}\n" # "Chat" mode - print(koboldai_vars.chatmode) - print(koboldai_vars.gamestarted) if(koboldai_vars.chatmode and koboldai_vars.gamestarted): data = re.sub(r'\n+', ' ', data) if(len(data)): data = f"\n{koboldai_vars.chatname}: {data}\n" - print("Chat Mode Data: {}".format(data)) # If we're not continuing, store a copy of the raw input if(data != ""):