Skip to content

Commit

Permalink
Merge pull request #57 from appatalks/appatalks-comment-out-limited-b…
Browse files Browse the repository at this point in the history
…etas

gpt-Huristics adjusted for limited beta models
  • Loading branch information
appatalks authored Oct 12, 2024
2 parents 5f98065 + e785200 commit 9fa21bd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ function autoSelect() {
selModel.value = "gpt-4o"; // Long queries might not need more token resources
}
else if (gptHuristics.some(keyword => userInput.includes(keyword))) {
selModel.value = "o1-mini"; // For coding-related, math, logic, science.
// selModel.value = "o1-mini"; // For coding-related, math, logic, science.
selModel.value = "gpt-4o-mini"; // o1-mini and o1-preview is limited beta for the moment
}
else if (glHuristics.some(keyword => userInput.includes(keyword))) {
selModel.value = "gemini"; // For Google Gemini's model
Expand All @@ -85,8 +86,8 @@ function autoSelect() {
switch (selModel.value) {
case "gpt-4o-mini":
case "gpt-4o":
case "o1-mini":
case "o1-preview":
case "o1-mini": // limited beta
case "o1-preview": // limited beta
trboSend();
break;
case "gemini":
Expand Down

0 comments on commit 9fa21bd

Please sign in to comment.