From 77de90dd843376fe30a962bc8037f7e5f15622eb Mon Sep 17 00:00:00 2001 From: kwaroran Date: Sun, 3 Dec 2023 21:38:50 +0900 Subject: [PATCH] [fix] top_p ooba --- src/ts/process/request.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/process/request.ts b/src/ts/process/request.ts index 7d7365fc..6c0df107 100644 --- a/src/ts/process/request.ts +++ b/src/ts/process/request.ts @@ -778,7 +778,7 @@ export async function requestChatDataMain(arg:requestDataArgument, model:'model' max_tokens: maxTokens, stop: stopStrings, temperature: temperature, - topP: db.top_p, + top_p: db.top_p, } const url = new URL(db.textgenWebUIBlockingURL)