From 13fe472264977b5be5e5ba19a6640bf05f4fd3d7 Mon Sep 17 00:00:00 2001 From: henk717 Date: Mon, 28 Feb 2022 02:47:15 +0100 Subject: [PATCH] Menu Polish --- aiserver.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aiserver.py b/aiserver.py index e2229a79..2dea748d 100644 --- a/aiserver.py +++ b/aiserver.py @@ -72,8 +72,8 @@ mainmenu = [ ["Adventure 6B", "KoboldAI/GPT-J-6B-Adventure", "16GB"], ["Lit 6B (NSFW)", "hakurei/lit-6B", "16GB"], ["C1 6B (Chatbot)", "hakurei/c1-6B", "16GB"], - ["Janeway 2.7B (Novel)", "KoboldAI/GPT-Neo-2.7B-Janeway", "8GB"], - ["Janeway fairseq-2.7B (Novel)", "KoboldAI/fairseq-dense-2.7B-Janeway", "16GB"], + ["Janeway Neo 2.7B (Novel)", "KoboldAI/GPT-Neo-2.7B-Janeway", "8GB"], + ["Janeway FSD 2.7B (Novel)", "KoboldAI/fairseq-dense-2.7B-Janeway", "8GB"], ["Adventure 2.7B", "KoboldAI/GPT-Neo-2.7B-AID", "8GB"], ["Picard 2.7B (Novel)", "KoboldAI/GPT-Neo-2.7B-Picard", "8GB"], ["Horni 2.7B (NSFW)", "KoboldAI/GPT-Neo-2.7B-Horni", "8GB"], @@ -255,10 +255,10 @@ utils.vars = vars # Function to get model selection at startup #==================================================================# def getModelSelection(modellist): - print(" # Model VRAM\n =========================================") + print(" # Model\t\t\t\t\t\tVRAM\n ========================================================") i = 1 for m in modellist: - print(" {0} - {1}\t\t{2}".format("{:<2}".format(i), m[0].ljust(15), m[2])) + print(" {0} - {1}\t\t\t{2}".format("{:<2}".format(i), m[0].ljust(25), m[2])) i += 1 print(" "); modelsel = 0