From 23e3d05993beb3af6b0ce53b554b156982aaef78 Mon Sep 17 00:00:00 2001 From: egregore Date: Mon, 2 Feb 2026 20:30:16 +0000 Subject: [PATCH] Remove model name from public-facing code Model selection now handled server-side. Follows branding guideline to not expose implementation details (Claude, etc.) in public interfaces. Co-Authored-By: Claude Opus 4.5 --- static/app.js | 4 +--- static/index.html | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/static/app.js b/static/app.js index e90b3fc..c266a63 100644 --- a/static/app.js +++ b/static/app.js @@ -5,7 +5,6 @@ const messagesEl = document.getElementById('messages'); const form = document.getElementById('chat-form'); const input = document.getElementById('message-input'); const sendBtn = document.getElementById('send-btn'); -const modelSelect = document.getElementById('model-select'); // State let isLoading = false; @@ -591,8 +590,7 @@ form.addEventListener('submit', async function(e) { credentials: 'include', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ - message: message, - model: modelSelect.value + message: message }) }); diff --git a/static/index.html b/static/index.html index 7ec8789..0179573 100644 --- a/static/index.html +++ b/static/index.html @@ -16,7 +16,6 @@ -