about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-01-05 07:45:50 -0500
committerelioat <elioat@tilde.institute>2025-01-05 07:45:50 -0500
commitc68b2f932f510a40f5c4098242be0ed8ab766d0e (patch)
tree2b8c4fc8697283ce150893b158c10f74e96dbac4
parent6294cb0306f9aa8d039ba1b7ec4f871685b10db9 (diff)
downloadtour-c68b2f932f510a40f5c4098242be0ed8ab766d0e.tar.gz
*
-rw-r--r--html/matt-chat/index.html52
1 files changed, 23 insertions, 29 deletions
diff --git a/html/matt-chat/index.html b/html/matt-chat/index.html
index 2bc594d..d802477 100644
--- a/html/matt-chat/index.html
+++ b/html/matt-chat/index.html
@@ -201,24 +201,32 @@
         let isCatMode = false; // Flag to track cat mode
 
         const API_URL = "http://localhost:11434/v1";
+        const API_MODELS_ENDPOINT = `${API_URL}/models`;
 
+        // Function to handle errors
+        function handleError(message) {
+            console.error(message);
+            addMessage(message, "bot");
+        }
+
+        // Function to show loading message
+        function showLoadingMessage() {
+            return addMessage("Loading models...", "bot");
+        }
+
+        // Function to populate model select dropdown
         async function populateModelSelect() {
             const modelSelect = document.getElementById("model-select");
             modelSelect.innerHTML = ""; // Clear existing options
 
-            // Show loading indicator
-            const loadingMessage = addMessage("Loading models...", "bot");
-
-            // Declare modelIds outside the try block
+            const loadingMessage = showLoadingMessage();
             const modelIds = [];
 
             try {
-                const response = await fetch(`${API_URL}/models`);
-                if (!response.ok) {
-                    throw new Error('Failed to fetch models');
-                }
-                const data = await response.json();
+                const response = await fetch(API_MODELS_ENDPOINT);
+                if (!response.ok) throw new Error('Failed to fetch models');
 
+                const data = await response.json();
                 console.log("API Response:", data);
 
                 if (Array.isArray(data.data)) {
@@ -227,25 +235,17 @@
                         option.value = model.id;
                         option.textContent = model.id; // Customize as needed
                         modelSelect.appendChild(option);
-                        
-                        // Add model ID to the array
                         modelIds.push(model.id);
                     });
-                    console.log("Model IDs:", modelIds); // Debugging log to check model IDs
+                    console.log("Model IDs:", modelIds);
                 } else {
-                    console.error("Expected an array of models, but got:", data);
-                    addMessage("Error: Expected an array of models, but got an unexpected response.", "bot");
+                    handleError("Expected an array of models, but got: " + JSON.stringify(data));
                 }
             } catch (error) {
-                console.error("Error fetching models:", error);
-                addMessage("Error fetching models. Please check the console for details.", "bot");
+                handleError("Error fetching models: " + error.message);
             } finally {
-                // Remove loading indicator
                 loadingMessage.remove();
-                
-                // Check if modelIds is populated before displaying the success message
                 if (modelIds.length > 0) {
-                    // Display a message indicating readiness to chat with the list of models
                     addMessage(`Models loaded successfully! Ready to chat. Available models: ${modelIds.join(', ')}`, "bot");
                 } else {
                     addMessage("No models available to chat.", "bot");
@@ -255,15 +255,12 @@
 
         document.addEventListener("DOMContentLoaded", () => {
             populateModelSelect(); // Populate the model select dropdown
-
-            const modelSelect = document.getElementById("model-select");
-
             // Load the saved model from local storage
+            const modelSelect = document.getElementById("model-select");
             const savedModel = localStorage.getItem("selectedModel");
             if (savedModel) {
                 modelSelect.value = savedModel;
             }
-
             // Save the selected model to local storage when changed
             modelSelect.addEventListener("change", () => {
                 localStorage.setItem("selectedModel", modelSelect.value);
@@ -280,12 +277,9 @@
             
             // Scroll to the new message with a smooth animation
             messageElement.scrollIntoView({ behavior: "smooth", block: "end" });
-            
-            // Force scroll to bottom in case the scrollIntoView doesn't work in some browsers
-            chatContainer.scrollTop = chatContainer.scrollHeight;
+            chatContainer.scrollTop = chatContainer.scrollHeight; // Ensure the chat is scrolled to the bottom
 
-            // Return the message element for further manipulation
-            return messageElement;
+            return messageElement; // Return the message element for further manipulation
         }
 
         // Fancy format milliseconds into a more readable format
8-09-23 22:38:16 -0700 committer Kartik Agaram <vc@akkartik.com> 2018-09-23 22:38:16 -0700 4512' href='/akkartik/mu/commit/html/subx/038---literal_strings.cc.html?h=hlt&id=37d53a70958bfe5b1d7946229af9c12f0b865abc'>37d53a70 ^
762107fd ^
37d53a70 ^





fcc161e7 ^
c504ca56 ^
52daf072 ^
9c1056f5 ^
52daf072 ^
9c1056f5 ^
d3a9db3a ^
9c1056f5 ^

c504ca56 ^
9c1056f5 ^






d3a9db3a ^
c504ca56 ^

d3a9db3a ^
c504ca56 ^
d3a9db3a ^
c504ca56 ^
fcc161e7 ^
c504ca56 ^


d3a9db3a ^
c504ca56 ^

d3a9db3a ^
c504ca56 ^

d3a9db3a ^
c504ca56 ^


d3a9db3a ^

fcc161e7 ^
c504ca56 ^









fcc161e7 ^
c504ca56 ^




d3a9db3a ^
c504ca56 ^


d3a9db3a ^
c504ca56 ^

d3a9db3a ^
c504ca56 ^






fcc161e7 ^
c504ca56 ^


d3a9db3a ^
c504ca56 ^




d3a9db3a ^
c504ca56 ^

fcc161e7 ^
c504ca56 ^






d3a9db3a ^
c504ca56 ^





fcc161e7 ^
d3a9db3a ^
4c0b4b46 ^




d3a9db3a ^
4c0b4b46 ^












d3a9db3a ^
4c0b4b46 ^







d3a9db3a ^
fcc161e7 ^
4c0b4b46 ^















d3a9db3a ^
4c0b4b46 ^








d3a9db3a ^
4c0b4b46 ^











d3a9db3a ^
c504ca56 ^
4c0b4b46 ^













d3a9db3a ^
4c0b4b46 ^










fcc161e7 ^
d3a9db3a ^
4c0b4b46 ^



fcc161e7 ^
d3a9db3a ^
4c0b4b46 ^
d3a9db3a ^
4c0b4b46 ^















fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^
d3a9db3a ^
4c0b4b46 ^

fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^





fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^

fcc161e7 ^
4c0b4b46 ^

c504ca56 ^
d3a9db3a ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^

fcc161e7 ^
4c0b4b46 ^

c504ca56 ^
d3a9db3a ^
4c0b4b46 ^





fcc161e7 ^
4c0b4b46 ^

c504ca56 ^
d3a9db3a ^
4c0b4b46 ^





fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^


c504ca56 ^
4c0b4b46 ^

fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^




fcc161e7 ^
4c0b4b46 ^

c504ca56 ^
d3a9db3a ^
4c0b4b46 ^







fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^



fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^

fcc161e7 ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^


d3a9db3a ^
4c0b4b46 ^
37d53a70 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426