Spaces:
Running
Running
Update index.js
Browse files
index.js
CHANGED
@@ -1,79 +1,49 @@
|
|
1 |
-
import { pipeline, env } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.
|
2 |
|
3 |
// Since we will download the model from the Hugging Face Hub, we can skip the local model check
|
4 |
env.allowLocalModels = false;
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
const
|
9 |
-
const imageContainer = document.getElementById('container');
|
10 |
-
const example = document.getElementById('example');
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
// Create a new object detection pipeline
|
15 |
-
status.textContent = 'Loading model...';
|
16 |
-
const detector = await pipeline('object-detection', 'Xenova/detr-resnet-50');
|
17 |
-
status.textContent = 'Ready';
|
18 |
-
|
19 |
-
example.addEventListener('click', (e) => {
|
20 |
-
e.preventDefault();
|
21 |
-
detect(EXAMPLE_URL);
|
22 |
-
});
|
23 |
-
|
24 |
-
fileUpload.addEventListener('change', function (e) {
|
25 |
-
const file = e.target.files[0];
|
26 |
-
if (!file) {
|
27 |
-
return;
|
28 |
-
}
|
29 |
-
|
30 |
-
const reader = new FileReader();
|
31 |
-
|
32 |
-
// Set up a callback when the file is loaded
|
33 |
-
reader.onload = e2 => detect(e2.target.result);
|
34 |
-
|
35 |
-
reader.readAsDataURL(file);
|
36 |
});
|
37 |
|
38 |
|
39 |
-
//
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
-
//
|
54 |
-
function
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
// Draw label
|
72 |
-
const labelElement = document.createElement('span');
|
73 |
-
labelElement.textContent = label;
|
74 |
-
labelElement.className = 'bounding-box-label';
|
75 |
-
labelElement.style.backgroundColor = color;
|
76 |
-
|
77 |
-
boxElement.appendChild(labelElement);
|
78 |
-
imageContainer.appendChild(boxElement);
|
79 |
-
}
|
|
|
1 |
+
import { pipeline, env } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.6.0';
|
2 |
|
3 |
// Since we will download the model from the Hugging Face Hub, we can skip the local model check
|
4 |
env.allowLocalModels = false;
|
5 |
|
6 |
+
const answerer = await pipeline('question-answering', 'Xenova/distilbert-base-uncased-distilled-squad');
|
7 |
+
var chatBox = document.getElementById("chat-box");
|
8 |
+
const sendMessageButton = document.getElementById('send-btn');
|
|
|
|
|
9 |
|
10 |
+
sendMessageButton.addEventListener('click', function (e) {
|
11 |
+
sendMessage()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
});
|
13 |
|
14 |
|
15 |
+
// Function to handle sending message
|
16 |
+
function sendMessage() {
|
17 |
+
var userInput = document.getElementById("user-input").value;
|
18 |
+
sendMessageAndUpdateChat(userInput);
|
19 |
+
}
|
20 |
+
|
21 |
+
|
22 |
+
// Detect objects in the image
|
23 |
+
async function getAnswer(question) {
|
24 |
+
const context = 'Titration is the slow addition of one solution of a known concentration (called a titrant) to a known volume of another solution of unknown concentration until the reaction reaches neutralization, which is often indicated by a color change. The solution called the titrant must satisfy the necessary requirements to be a primary or secondary standard. In a broad sense, titration is a technique to determine the concentration of an unknown solution.';
|
25 |
+
const output = await answerer(question, context);
|
26 |
+
setTimeout(function() {
|
27 |
+
chatBox.innerHTML += "<p class='bot-message'><strong>Chatbot:</strong> " + output.answer + "</p>";
|
28 |
+
// Scroll to bottom of chat box
|
29 |
+
chatBox.scrollTop = chatBox.scrollHeight;
|
30 |
+
}, 500);
|
31 |
}
|
32 |
|
33 |
+
// Function to send message and update chat
|
34 |
+
function sendMessageAndUpdateChat(message) {
|
35 |
+
|
36 |
+
// Display user message
|
37 |
+
chatBox.innerHTML += "<p class='user-message'><strong>You:</strong> " + message + "</p>";
|
38 |
+
getAnswer(message)
|
39 |
+
|
40 |
+
}
|
41 |
+
|
42 |
+
// Event listener for Enter key press
|
43 |
+
document.getElementById("user-input").addEventListener("keypress", function(event) {
|
44 |
+
if (event.key === "Enter") {
|
45 |
+
var userInput = document.getElementById("user-input").value;
|
46 |
+
sendMessageAndUpdateChat(userInput);
|
47 |
+
document.getElementById("user-input").value = ""; // Clear input field after sending message
|
48 |
+
}
|
49 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|