From 1d7bda2eccc50afd668d7c6600d66b12ca9a8b52 Mon Sep 17 00:00:00 2001 From: Ben de Roo Date: Mon, 11 May 2026 09:26:45 +0200 Subject: [PATCH] Update gpt/index.html --- gpt/index.html | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/gpt/index.html b/gpt/index.html index 893c2e0..f435e6f 100644 --- a/gpt/index.html +++ b/gpt/index.html @@ -505,12 +505,18 @@ async function testConnection() { PRESETS (CLEAN) ============================================ */ document.getElementById('presetSelect').addEventListener('change', function () { - const presets = { - local: { - endpoint: 'http://localhost:4891/v1/chat/completions', - model: 'local-model', - type: 'openai' - }, +const presets = { + catgpt: { + endpoint: 'http://192.168.254.169:4891/v1/chat/completions', + model: 'cat-gpt', + type: 'openai' + }, + + local: { + endpoint: 'http://localhost:4891/v1/chat/completions', + model: 'local-model', + type: 'openai' + }, openai: { endpoint: 'https://api.openai.com/v1/chat/completions', model: 'gpt-4o-mini',