Fix default value for OpenRouter Top A
| @@ -22,7 +22,7 @@ | |||
| 22 | "count_penalty": 0, | 22 | "count_penalty": 0, |
| 23 | "top_p": 1, | 23 | "top_p": 1, |
| 24 | "top_k": 0, | 24 | "top_k": 0, |
| 25 | "top_a": 1, | 25 | "top_a": 0, |
| 26 | "min_p": 0, | 26 | "min_p": 0, |
| 27 | "repetition_penalty": 1, | 27 | "repetition_penalty": 1, |
| 28 | "openai_max_context": 4095, | 28 | "openai_max_context": 4095, |
| @@ -238,7 +238,7 @@ const default_settings = { | |||
| 238 | top_p_openai: 1.0, | 238 | top_p_openai: 1.0, |
| 239 | top_k_openai: 0, | 239 | top_k_openai: 0, |
| 240 | min_p_openai: 0, | 240 | min_p_openai: 0, |
| 241 | top_a_openai: 1, | 241 | top_a_openai: 0, |
| 242 | repetition_penalty_openai: 1, | 242 | repetition_penalty_openai: 1, |
| 243 | stream_openai: false, | 243 | stream_openai: false, |
| 244 | websearch_cohere: false, | 244 | websearch_cohere: false, |
| @@ -318,7 +318,7 @@ const oai_settings = { | |||
| 318 | top_p_openai: 1.0, | 318 | top_p_openai: 1.0, |
| 319 | top_k_openai: 0, | 319 | top_k_openai: 0, |
| 320 | min_p_openai: 0, | 320 | min_p_openai: 0, |
| 321 | top_a_openai: 1, | 321 | top_a_openai: 0, |
| 322 | repetition_penalty_openai: 1, | 322 | repetition_penalty_openai: 1, |
| 323 | stream_openai: false, | 323 | stream_openai: false, |
| 324 | websearch_cohere: false, | 324 | websearch_cohere: false, |