mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-22 03:10:03 +00:00
updated lite
This commit is contained in:
parent
4f800fb3ac
commit
634360430b
1 changed files with 2 additions and 2 deletions
|
|
@ -8652,7 +8652,7 @@ pre code,td,th{padding:0}pre code,table{background-color:transparent}.table,inpu
|
|||
function togglepalmmodel()
|
||||
{
|
||||
let mdlname = document.getElementById("custom_palm_model").value;
|
||||
if(mdlname.includes("gemini-1.5-") || mdlname.includes("gemini-exp-"))
|
||||
if(mdlname.includes("gemini-2.") || mdlname.includes("gemini-1.5-") || mdlname.includes("gemini-exp-"))
|
||||
{
|
||||
document.getElementById("gemini_system_instruction").classList.remove("hidden");
|
||||
document.getElementById("gemini_role_options").classList.remove("hidden");
|
||||
|
|
@ -13309,7 +13309,7 @@ pre code,td,th{padding:0}pre code,table{background-color:transparent}.table,inpu
|
|||
oai_payload.logit_bias = submit_payload.params.logit_bias;
|
||||
}
|
||||
|
||||
let is_using_o1 = custom_oai_model.toLowerCase().startsWith("o1-mini") || custom_oai_model.toLowerCase().startsWith("o1-preview");
|
||||
let is_using_o1 = custom_oai_model.toLowerCase().startsWith("o1-") || custom_oai_model.toLowerCase()=="o1";
|
||||
if(is_using_o1)
|
||||
{
|
||||
//o1 does not support ANY customization
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue