diff --git a/aiserver.py b/aiserver.py index 74bb498c..e344a657 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 @@ -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 #==================================================================# @@ -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) @@ -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): @@ -7684,6 +7684,23 @@ 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 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 #==================================================================# 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 50ec7f34..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): @@ -431,7 +430,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 @@ -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 @@ -552,6 +550,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 @@ -567,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: @@ -591,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__ @@ -638,7 +642,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 +654,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'] @@ -805,12 +809,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") 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.css b/static/koboldai.css index 650490f3..548e054a 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; @@ -199,6 +199,10 @@ input[type="range"]::-ms-fill-upper { 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); @@ -1491,6 +1516,8 @@ body { flex-grow: 1; flex-shrink: 1; flex-basis: auto; + color: var(--popup_item_color_text); + } .popup .model_item { @@ -2112,3 +2139,7 @@ h2 .material-icons-outlined { padding: 3px; } } + +.horde_trigger[model_model="ReadOnly"] { + display: none; +} \ No newline at end of file diff --git a/static/koboldai.js b/static/koboldai.js index 7541d118..353fa440 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 = {}; @@ -127,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) { @@ -309,14 +310,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"); } @@ -510,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(" ", "_")); @@ -2007,6 +2016,29 @@ function send_world_info(uid) { socket.emit("edit_world_info", world_info_data[uid]); } +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'; @@ -3062,8 +3094,9 @@ function detect_enter_submit(e) { } else { e.cancelBubble = true; } - document.getElementById("btnsend").onclick(); - document.getElementById('input_text').value = '' + console.log("submitting"); + document.getElementById("btnsubmit").onclick(); + setTimeout(function() {document.getElementById('input_text').value = '';}, 1); } } @@ -3356,6 +3389,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..ec6884c3 100644 --- a/templates/index_new.html +++ b/templates/index_new.html @@ -19,6 +19,7 @@ +
@@ -68,13 +69,14 @@
-
+
- diff --git a/templates/popups.html b/templates/popups.html index 594da66f..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 @@ @@ -107,7 +107,7 @@
diff --git a/templates/settings flyout.html b/templates/settings flyout.html index 6180f575..d58b0a9a 100644 --- a/templates/settings flyout.html +++ b/templates/settings flyout.html @@ -44,7 +44,7 @@ {% if not on_colab %} -
Share with Horde +
Share with Horde
help_icon {% endif %} @@ -76,8 +76,6 @@ save Save Story - -
@@ -88,6 +86,20 @@ {% include 'settings item.html' %} {% endwith %} {% endwith %} +
+ + + Chat Name: + help_icon + + + + + + + + +
@@ -112,6 +124,9 @@
Change how the AI decides what to say. + {% with sub_path='Sampling' %} + {% include 'settings item.html' %} + {% endwith %}
@@ -137,9 +152,6 @@
- {% with sub_path='Sampling' %} - {% include 'settings item.html' %} - {% endwith %}
@@ -312,15 +324,26 @@ + + - - - - - + + + + + + + + + + + + + + +
ErrorBackgrounds
BaseLayer 1Layer 2Layer 3Layer 4
-
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 @@
-
+