Remove debug

This commit is contained in:
Webifi 2023-05-28 17:40:29 -05:00
parent b10cdf3aed
commit 449c2937b7
1 changed files with 1 additions and 1 deletions

View File

@ -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<string, number>) => {
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<number, number> = Object.entries(val).reduce((a, [k, v]) => {
const tokens:number[] = encode(k)