v0.7.0 - Standard non cortex mode enabled

This commit is contained in:
serversdwn
2025-12-20 04:15:22 -05:00
parent 6bb800f5f8
commit d09425c37b
5 changed files with 134 additions and 17 deletions

View File

@@ -21,6 +21,11 @@
<option value="gpt-4o-mini">GPT-4o-mini (OpenAI)</option>
<option value="ollama:nollama/mythomax-l2-13b:Q5_K_S">Ollama MythoMax (3090)</option>
</select>
<label for="mode" style="margin-left: 20px;">Mode:</label>
<select id="mode">
<option value="standard">Standard</option>
<option value="cortex">Cortex</option>
</select>
<div id="theme-toggle">
<button id="toggleThemeBtn">🌙 Dark Mode</button>
</div>
@@ -124,7 +129,8 @@
const model = document.getElementById("model").value;
const mode = document.getElementById("mode").value;
// make sure we always include a stable user_id
let userId = localStorage.getItem("userId");
if (!userId) {
@@ -133,6 +139,7 @@
}
const body = {
model: model,
mode: mode,
messages: history,
sessionId: currentSession
};