diff --git a/core/js/lm-studio.js b/core/js/lm-studio.js index c1c8f6f..afe4d7c 100644 --- a/core/js/lm-studio.js +++ b/core/js/lm-studio.js @@ -81,9 +81,5 @@ function lmsSend() { // Function to handle sending data based on the selected model function sendData() { - if (selModel.value.startsWith("gpt")) { - geminiSend(); // Use Google Gemini if the model starts with "gpt" - } else { - lmsSend(); // Use OpenAI-like local endpoint otherwise - } + lmsSend(); // Use OpenAI-like local endpoint }