CannaTech commited on
Commit
2f43c39
·
verified ·
1 Parent(s): 0492fbe

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +62 -65
index.js CHANGED
@@ -1,79 +1,76 @@
1
  import { pipeline, env } from 'https://cdn.jsdelivr.net/npm/@xenova/[email protected]';
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
- // Reference the elements that we will need
7
  const status = document.getElementById('status');
8
- const fileUpload = document.getElementById('upload');
9
- const imageContainer = document.getElementById('container');
10
- const example = document.getElementById('example');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
- const EXAMPLE_URL = 'https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/city-streets.jpg';
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
- // Detect objects in the image
40
- async function detect(img) {
41
- imageContainer.innerHTML = '';
42
- imageContainer.style.backgroundImage = `url(${img})`;
43
-
44
- status.textContent = 'Analysing...';
45
- const output = await detector(img, {
46
- threshold: 0.5,
47
- percentage: true,
48
  });
49
- status.textContent = '';
50
- output.forEach(renderBox);
51
- }
52
-
53
- // Render a bounding box and label on the image
54
- function renderBox({ box, label }) {
55
- const { xmax, xmin, ymax, ymin } = box;
56
-
57
- // Generate a random color for the box
58
- const color = '#' + Math.floor(Math.random() * 0xFFFFFF).toString(16).padStart(6, 0);
59
 
60
- // Draw the box
61
- const boxElement = document.createElement('div');
62
- boxElement.className = 'bounding-box';
63
- Object.assign(boxElement.style, {
64
- borderColor: color,
65
- left: 100 * xmin + '%',
66
- top: 100 * ymin + '%',
67
- width: 100 * (xmax - xmin) + '%',
68
- height: 100 * (ymax - ymin) + '%',
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/[email protected]';
2
 
3
+ // Skip the local model check
4
  env.allowLocalModels = false;
5
 
 
6
  const status = document.getElementById('status');
7
+ const userInput = document.getElementById('user-input');
8
+ const sendButton = document.getElementById('send-button');
9
+ const chatbox = document.getElementById('chatbox');
10
+
11
+ const context = `Why Off The Charts Albuquerque is the Highest Ranked Dispensary in NM.
12
+ Customer Service: Off The Charts (OTC) Albuquerque prides itself on providing
13
+ exceptional customer service. As a family-owned and operated business, OTC creates
14
+ a welcoming atmosphere where customers feel like family. The staff is highly
15
+ knowledgeable, offering personalized guidance to ensure each customer finds the
16
+ perfect product for their needs. The friendly and helpful staff contributes
17
+ significantly to the high ratings and positive reviews on various platforms.
18
+ Products: OTC offers a vast selection of high-quality cannabis products, featuring
19
+ over 200 esteemed brands. Their inventory includes a wide range of flowers, vapes,
20
+ edibles, concentrates, and CBD products. This extensive variety ensures that both
21
+ recreational and medicinal users can find products that suit their preferences and
22
+ needs. The high quality and diversity of their products are frequently highlighted
23
+ in customer reviews. Prices: OTC Albuquerque is committed to providing competitive
24
+ pricing, often guaranteeing the lowest prices in the area. They offer various
25
+ promotions and discounts, including happy hours and special deals for veterans,
26
+ seniors, and those with disabilities. Their pricing strategy ensures that premium
27
+ cannabis products are accessible to a broader audience, which is a significant factor
28
+ in their high customer satisfaction. Brand: The brand identity of OTC is built on its
29
+ commitment to quality, affordability, and exceptional customer service. Their
30
+ state-of-the-art dispensary is designed to offer a seamless and enjoyable shopping
31
+ experience. OTC has successfully built a loyal customer base by consistently
32
+ delivering on their promises of quality and service, making them a trusted name in the
33
+ Albuquerque cannabis market. Social Media Presence: OTC maintains an active and
34
+ engaging social media presence, which helps them connect with customers and build
35
+ brand loyalty. They use social media to share information about new products, special
36
+ offers, and industry news. This engagement not only boosts their visibility but also
37
+ fosters a sense of community among their customers. Other Relevant Metrics and Market
38
+ Indicators: OTC's strategic location and accessibility enhance its appeal to customers.
39
+ Their modern, easily navigable online platform allows for convenient browsing and
40
+ ordering, which is particularly beneficial in today's digital age. The combination of
41
+ a prime physical location and a strong online presence positions OTC as a leader in
42
+ the local cannabis market.`;
43
+
44
+ // Create a new question-answering pipeline
45
+ const qaPipeline = await pipeline('question-answering',
46
+ 'Xenova/distilbert-base-cased-distilled-squad');
47
 
 
 
 
 
 
48
  status.textContent = 'Ready';
49
 
50
+ sendButton.addEventListener('click', async () => {
51
+ const userMessage = userInput.value;
52
+ if (!userMessage) return;
 
 
 
 
 
 
 
53
 
54
+ // Display user message
55
+ const userMessageElement = document.createElement('div');
56
+ userMessageElement.className = 'message user-message';
57
+ userMessageElement.textContent = userMessage;
58
+ chatbox.appendChild(userMessageElement);
 
 
59
 
60
+ userInput.value = '';
61
+ status.textContent = 'Generating response...';
62
 
63
+ // Generate response from the model
64
+ const result = await qaPipeline({
65
+ question: userMessage,
66
+ context: context,
 
 
 
 
 
67
  });
 
 
 
 
 
 
 
 
 
 
68
 
69
+ // Display bot response
70
+ const botMessageElement = document.createElement('div');
71
+ botMessageElement.className = 'message bot-message';
72
+ botMessageElement.textContent = result.answer;
73
+ chatbox.appendChild(botMessageElement);
 
 
 
 
 
74
 
75
+ status.textContent = 'Ready';
76
+ });