File size: 1,924 Bytes
6c17133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
async function predictSentiment() {
    const textInput = document.getElementById("textInput").value;
    const response = await fetch("/predict_sentiment", {
        method: "POST",
        headers: {
            "Content-Type": "application/json"
        },
        body: JSON.stringify({ text: textInput })
    });
    const result = await response.json();
    document.getElementById("initialPrediction").innerText = result.initial_prediction;
    document.getElementById("llamaCategory").innerText = result.llama_category;
    document.getElementById("llamaExplanation").innerText = result.llama_explanation;
}

function rate(rating) {
    document.getElementById("userRating").value = rating;
    const stars = document.querySelectorAll(".rating .fa-star");
    stars.forEach((star, index) => {
        star.classList.toggle("selected", index < rating);
    });
}

async function submitInteraction() {
    const textInput = document.getElementById("textInput").value;
    const initialPrediction = document.getElementById("initialPrediction").innerText;
    const llamaCategory = document.getElementById("llamaCategory").innerText;
    const llamaExplanation = document.getElementById("llamaExplanation").innerText;
    const userRating = document.getElementById("userRating").value;

    const data = {
        text: textInput,
        initial_prediction: initialPrediction,
        llama_category: llamaCategory,
        llama_explanation: llamaExplanation,
        user_rating: parseInt(userRating),
    };

    // display the data in the console
    console.log(data);

    const response = await fetch("/submit_interaction", {
        method: "POST",
        headers: {
            "Content-Type": "application/json"
        },
        body: JSON.stringify(data)
    });

    const result = await response.json();
    alert("Thank you for your feedback!");
}