From 449c2937b70f2cdb0194d56a5ecdf297d49bc638 Mon Sep 17 00:00:00 2001 From: Webifi Date: Sun, 28 May 2023 17:40:29 -0500 Subject: [PATCH] Remove debug --- src/lib/Settings.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Settings.svelte b/src/lib/Settings.svelte index 3b287ea..e1df1df 100644 --- a/src/lib/Settings.svelte +++ b/src/lib/Settings.svelte @@ -305,7 +305,7 @@ const chatSettingsList: ChatSetting[] = [ // Generally, leading space plus common lower case word will more often result in a single token // See: https://platform.openai.com/tokenizer apiTransform: (chatId, setting, val:Record) => { - console.log('logit_bias', val, getChatSettings(chatId).logit_bias) + // console.log('logit_bias', val, getChatSettings(chatId).logit_bias) if (!val) return null const tokenized:Record = Object.entries(val).reduce((a, [k, v]) => { const tokens:number[] = encode(k)