Fix default value for OpenRouter Top A

This commit is contained in:
Cohee 2024-08-07 20:58:19 +03:00
parent f3734ae285
commit 32c48cf9fa
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@
"count_penalty": 0,
"top_p": 1,
"top_k": 0,
"top_a": 1,
"top_a": 0,
"min_p": 0,
"repetition_penalty": 1,
"openai_max_context": 4095,

View File

@ -238,7 +238,7 @@ const default_settings = {
top_p_openai: 1.0,
top_k_openai: 0,
min_p_openai: 0,
top_a_openai: 1,
top_a_openai: 0,
repetition_penalty_openai: 1,
stream_openai: false,
websearch_cohere: false,
@ -318,7 +318,7 @@ const oai_settings = {
top_p_openai: 1.0,
top_k_openai: 0,
min_p_openai: 0,
top_a_openai: 1,
top_a_openai: 0,
repetition_penalty_openai: 1,
stream_openai: false,
websearch_cohere: false,