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',