[fix] top_p

This commit is contained in:
kwaroran
2023-12-03 21:38:21 +09:00
parent acaf80f8f0
commit 9155734df2

View File

@@ -299,7 +299,7 @@ export async function requestChatDataMain(arg:requestDataArgument, model:'model'
frequency_penalty: arg.frequencyPenalty || (db.frequencyPenalty / 100),
logit_bias: bias,
stream: false,
topP: db.top_p,
top_p: db.top_p,
})