Spaces:
Running
Running
File size: 16,306 Bytes
f6a844e d7b5307 0764bc3 f504a20 0764bc3 f504a20 0764bc3 f504a20 d7b5307 7f6a60b d7b5307 5722d4a d7b5307 d8cdcb9 d7b5307 5722d4a 0320f83 654ebda 6fb7ab4 654ebda d7b5307 7f6a60b d7b5307 5722d4a d7b5307 0764bc3 d7b5307 a7c53f0 d8cdcb9 d7b5307 5722d4a d7b5307 a7c53f0 d7b5307 a7c53f0 d7b5307 a7c53f0 d7b5307 5722d4a d7b5307 6fb7ab4 d7b5307 6fb7ab4 d7b5307 eac5900 7f6a60b 96e77f0 7f6a60b 96e77f0 6ce7adf 7f6a60b 0764bc3 7f6a60b 96e77f0 d8cdcb9 a7c53f0 0764bc3 f6a844e 8ffb8bd 6a37b89 4015ef4 fe55f56 f6a844e 4015ef4 fe55f56 4015ef4 fe55f56 4015ef4 fe55f56 4015ef4 8ffb8bd fe55f56 4015ef4 8ffb8bd 6a37b89 4015ef4 6a37b89 4015ef4 6a37b89 4015ef4 6a37b89 4015ef4 6a37b89 4015ef4 6a37b89 4015ef4 6a37b89 4015ef4 f6a844e |
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 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
/*document.addEventListener("DOMContentLoaded", () => {
const convo = document.querySelector(".convo");
const input = document.querySelector(".qt input");
const sendBtn = document.querySelector(".sendingQA");
const fileBtn = document.querySelector(".fa-file");
const imageBtn = document.querySelector(".fa-image");
let selectedFile = null;
let filePreviewBubble = null;
// Create hidden file inputs for documents and images
const fileUpload = document.createElement("input");
fileUpload.type = "file";
fileUpload.accept = ".pdf,.docx,.pptx,.xlsx";
fileUpload.style.display = "none";
document.body.appendChild(fileUpload);
const imageUpload = document.createElement("input");
imageUpload.type = "file";
imageUpload.accept = "image/*";
imageUpload.style.display = "none";
document.body.appendChild(imageUpload);
// Click on hidden inputs when buttons are clicked
fileBtn.addEventListener("click", () => fileUpload.click());
imageBtn.addEventListener("click", () => imageUpload.click());
// Handle document file selection
fileUpload.addEventListener("change", (e) => {
handleFileSelection(e.target.files[0], "document");
});
// Handle image file selection
imageUpload.addEventListener("change", (e) => {
handleFileSelection(e.target.files[0], "image");
});
function handleFileSelection(file, type) {
if (!file) return;
const validDocTypes = [
'application/pdf',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
];
const validImageTypes = ['image/jpeg', 'image/png', 'image/gif', 'image/webp'];
const isValid = type === "document" ? validDocTypes.includes(file.type) : validImageTypes.includes(file.type);
if (!isValid) {
alert(`Please select a valid ${type === "document" ? "document (PDF, DOCX, PPTX, XLSX)" : "image (JPEG, PNG, GIF, WEBP)"}`);
if (type === "document") fileUpload.value = '';
else imageUpload.value = '';
return;
}
selectedFile = file;
if (filePreviewBubble) filePreviewBubble.remove();
filePreviewBubble = document.createElement("div");
filePreviewBubble.className = "file-preview-bubble bubble right";
filePreviewBubble.textContent = `${type === "document" ? "π" : "πΌοΈ"} Selected: ${file.name}`;
convo.appendChild(filePreviewBubble);
convo.scrollTop = convo.scrollHeight;
}
function createMessageBubble(text, sender = "You", audioSrc = null, fileName = null) {
const bubble = document.createElement("div");
bubble.className = `bubble ${sender === "You" ? "right" : "left"}`;
const label = document.createElement("div");
label.className = "label";
label.innerText = sender;
const message = document.createElement("div");
message.className = "text";
message.style.whiteSpace = "pre-wrap";
if (sender === "You") {
let fileLine = fileName ? `π Selected file: ${fileName}\n` : "";
message.innerText = `${fileLine}β ${text}`;
} else {
message.style.display = "flex";
message.style.justifyContent = "space-between";
message.style.alignItems = "center";
const msgSpan = document.createElement("span");
msgSpan.innerHTML = text;
message.appendChild(msgSpan);
if (audioSrc) {
const icon = document.createElement("i");
icon.className = "fa-solid fa-volume-high audio-toggle";
icon.title = "Click to mute";
icon.style.cursor = "pointer";
icon.style.fontSize = "18px";
const audio = new Audio(audioSrc);
audio.play();
icon.addEventListener("click", () => {
if (audio.muted) {
audio.currentTime = 0;
audio.muted = false;
icon.classList.remove("fa-volume-xmark");
icon.classList.add("fa-volume-high");
icon.title = "Click to mute";
audio.play();
} else {
audio.muted = true;
icon.classList.remove("fa-volume-high");
icon.classList.add("fa-volume-xmark");
icon.title = "Click to unmute";
}
});
message.appendChild(icon);
}
}
bubble.appendChild(label);
bubble.appendChild(message);
convo.appendChild(bubble);
convo.scrollTop = convo.scrollHeight;
return bubble;
}
async function sendMessage() {
const question = input.value.trim();
if (!question) return;
if (!selectedFile) {
alert("Please upload a document or image first.");
return;
}
// Remove file preview bubble
if (filePreviewBubble) {
filePreviewBubble.remove();
filePreviewBubble = null;
}
// Create user's message bubble
createMessageBubble(question, "You", null, selectedFile.name);
// Thinking bubble with loader
const thinkingBubble = createMessageBubble("Wait, let me think π€... <div class='loader'></div>", "Aidan");
const formData = new FormData();
formData.append("question", question);
formData.append("file", selectedFile);
try {
const response = await fetch("/predict", {
method: "POST",
body: formData
});
const result = await response.json();
const answerText = result.answer || "No response.";
const audioSrc = result.audio || null;
// Update the thinking bubble to show the answer text and remove the loader
const message = thinkingBubble.querySelector(".text");
message.innerHTML = answerText; // Replacing with answer
// If audio exists, add audio toggle icon
if (audioSrc) {
const icon = document.createElement("i");
icon.className = "fa-solid fa-volume-high audio-toggle";
icon.title = "Click to mute";
icon.style.cursor = "pointer";
icon.style.fontSize = "18px";
icon.style.marginLeft = "10px";
const audio = new Audio(audioSrc);
audio.play();
icon.addEventListener("click", () => {
if (audio.muted) {
audio.currentTime = 0;
audio.muted = false;
icon.classList.remove("fa-volume-xmark");
icon.classList.add("fa-volume-high");
icon.title = "Click to mute";
audio.play();
} else {
audio.muted = true;
icon.classList.remove("fa-volume-high");
icon.classList.add("fa-volume-xmark");
icon.title = "Click to unmute";
}
});
message.style.display = "flex";
message.style.justifyContent = "space-between";
message.appendChild(icon);
}
} catch (err) {
const message = thinkingBubble.querySelector(".text");
message.innerText = "β οΈ Aidan had trouble responding.";
}
input.value = "";
selectedFile = null;
}
sendBtn.addEventListener("click", sendMessage);
input.addEventListener("keydown", (event) => {
if (event.key === "Enter") {
event.preventDefault();
sendMessage();
}
});
const style = document.createElement('style');
style.textContent = `
.loader {
display: inline-block;
border: 2px solid #f3f3f3;
border-top: 2px solid #3b82f6;
border-radius: 50%;
width: 16px;
height: 16px;
animation: spin 1s linear infinite;
margin-left: 8px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
`;
document.head.appendChild(style);
});
*/
document.addEventListener("DOMContentLoaded", () => {
const convo = document.querySelector(".convo");
const input = document.querySelector(".qt input");
const sendBtn = document.querySelector(".sendingQA");
const fileBtn = document.querySelector(".fa-file");
const imageBtn = document.querySelector(".fa-image");
let selectedFile = null;
let filePreviewBubble = null;
// Create hidden file inputs for documents and images
const fileUpload = document.createElement("input");
fileUpload.type = "file";
fileUpload.accept = ".pdf,.docx,.pptx,.xlsx";
fileUpload.style.display = "none";
document.body.appendChild(fileUpload);
const imageUpload = document.createElement("input");
imageUpload.type = "file";
imageUpload.accept = "image/*";
imageUpload.style.display = "none";
document.body.appendChild(imageUpload);
// Click on hidden inputs when buttons are clicked
fileBtn.addEventListener("click", () => fileUpload.click());
imageBtn.addEventListener("click", () => imageUpload.click());
// Handle document file selection
fileUpload.addEventListener("change", (e) => {
handleFileSelection(e.target.files[0], "document");
});
// Handle image file selection
imageUpload.addEventListener("change", (e) => {
handleFileSelection(e.target.files[0], "image");
});
function handleFileSelection(file, type) {
if (!file) return;
const validDocTypes = [
'application/pdf',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
];
const validImageTypes = ['image/jpeg', 'image/png', 'image/gif', 'image/webp'];
const isValid = type === "document" ? validDocTypes.includes(file.type) : validImageTypes.includes(file.type);
if (!isValid) {
alert(`Please select a valid ${type === "document" ? "document (PDF, DOCX, PPTX, XLSX)" : "image (JPEG, PNG, GIF, WEBP)"}`);
if (type === "document") fileUpload.value = '';
else imageUpload.value = '';
return;
}
selectedFile = file;
if (filePreviewBubble) filePreviewBubble.remove();
filePreviewBubble = document.createElement("div");
filePreviewBubble.className = "file-preview-bubble bubble right";
filePreviewBubble.style.display = "flex";
filePreviewBubble.style.flexDirection = "column";
filePreviewBubble.style.maxWidth = "50%";
const userQuestion = input.value.trim(); // Only include the question if it was entered
if (file.type.startsWith('image/')) {
const reader = new FileReader();
reader.onload = (e) => {
const img = document.createElement("img");
img.src = e.target.result;
img.style.width = "100%";
img.style.height = "200px";
img.style.objectFit = "cover";
img.style.borderRadius = "10px";
img.style.marginBottom = "8px";
const text = document.createElement("span");
text.textContent = `π Selected image: ${file.name}`;
text.style.fontSize = "13px";
// If there's a user question, add the β
if (userQuestion) {
const question = document.createElement("span");
question.textContent = `\nβ ${userQuestion}`;
question.style.fontSize = "13px";
filePreviewBubble.appendChild(question);
}
filePreviewBubble.appendChild(img);
filePreviewBubble.appendChild(text);
convo.appendChild(filePreviewBubble);
convo.scrollTop = convo.scrollHeight;
};
reader.readAsDataURL(file);
} else {
const text = document.createElement("span");
text.textContent = `π Selected file: ${file.name}`;
text.style.fontSize = "13px";
// If there's a user question, add the β
if (userQuestion) {
const question = document.createElement("span");
question.textContent = `\nβ ${userQuestion}`;
question.style.fontSize = "13px";
filePreviewBubble.appendChild(question);
}
filePreviewBubble.appendChild(text);
convo.appendChild(filePreviewBubble);
convo.scrollTop = convo.scrollHeight;
}
}
function createMessageBubble(text, sender = "You", audioSrc = null, fileName = null, imageSrc = null) {
const bubble = document.createElement("div");
bubble.className = `bubble ${sender === "You" ? "right" : "left"}`;
bubble.style.maxWidth = "50%";
const label = document.createElement("div");
label.className = "label";
label.innerText = sender;
const message = document.createElement("div");
message.className = "text";
message.style.whiteSpace = "pre-wrap";
const textSpan = document.createElement("span");
textSpan.innerHTML = text;
message.appendChild(textSpan);
// Display image if available
if (imageSrc) {
const img = document.createElement("img");
img.src = imageSrc;
img.style.width = "100%";
img.style.height = "200px";
img.style.objectFit = "cover";
img.style.borderRadius = "10px";
img.style.marginTop = "8px";
message.appendChild(img);
}
bubble.appendChild(label);
bubble.appendChild(message);
convo.appendChild(bubble);
convo.scrollTop = convo.scrollHeight;
return bubble;
}
async function sendMessage() {
const question = input.value.trim();
if (!question) return;
if (!selectedFile) {
alert("Please upload a document or image first.");
return;
}
// Remove file preview bubble
if (filePreviewBubble) {
filePreviewBubble.remove();
filePreviewBubble = null;
}
// Create user's message bubble
createMessageBubble(question, "You", null, selectedFile.name, selectedFile.type.startsWith('image/') ? URL.createObjectURL(selectedFile) : null);
// Thinking bubble with loader
const thinkingBubble = createMessageBubble("Wait, let me think π€... <div class='loader'></div>", "Aidan");
const formData = new FormData();
formData.append("question", question);
formData.append("file", selectedFile);
try {
const response = await fetch("/predict", {
method: "POST",
body: formData
});
const result = await response.json();
const answerText = result.answer || "No response.";
const audioSrc = result.audio || null;
// Update the thinking bubble to show the answer text and remove the loader
const message = thinkingBubble.querySelector(".text");
message.innerHTML = answerText;
// If audio exists, add audio toggle icon
if (audioSrc) {
const icon = document.createElement("i");
icon.className = "fa-solid fa-volume-high audio-toggle";
icon.title = "Click to mute";
icon.style.cursor = "pointer";
icon.style.fontSize = "18px";
icon.style.marginLeft = "10px";
const audio = new Audio(audioSrc);
audio.play();
icon.addEventListener("click", () => {
if (audio.muted) {
audio.currentTime = 0;
audio.muted = false;
icon.classList.remove("fa-volume-xmark");
icon.classList.add("fa-volume-high");
icon.title = "Click to mute";
audio.play();
} else {
audio.muted = true;
icon.classList.remove("fa-volume-high");
icon.classList.add("fa-volume-xmark");
icon.title = "Click to unmute";
}
});
message.style.display = "flex";
message.style.justifyContent = "space-between";
message.appendChild(icon);
}
} catch (err) {
const message = thinkingBubble.querySelector(".text");
message.innerText = "β οΈ Aidan had trouble responding.";
}
input.value = "";
selectedFile = null;
}
sendBtn.addEventListener("click", sendMessage);
input.addEventListener("keydown", (event) => {
if (event.key === "Enter") {
event.preventDefault();
sendMessage();
}
});
const style = document.createElement('style');
style.textContent = `
.loader {
display: inline-block;
border: 2px solid #f3f3f3;
border-top: 2px solid #3b82f6;
border-radius: 50%;
width: 16px;
height: 16px;
animation: spin 1s linear infinite;
margin-left: 8px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
`;
document.head.appendChild(style);
});
|