File size: 1,022 Bytes
d46fa4f
fb64d41
f27292a
fb64d41
 
efba1b1
62f2a72
fb64d41
 
 
 
 
 
 
 
1a67d0c
fb64d41
 
 
efba1b1
fb64d41
 
 
 
 
 
3db2cf3
 
fb64d41
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
import gradio as gr
import requests

API_URL = "https://api-inference.huggingface.co/models/meta-llama/Meta-Llama-3-8B-Instruct"
headers = {"Authorization": "Bearer hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}

def analyze_sentiment(text):
    payload = {
        "inputs": f"Analyze the sentiment of the following text and respond with either 'heureux' or 'malheureux': {text}"
    }
    response = requests.post(API_URL, headers=headers, json=payload)
    result = response.json()
    
    sentiment = result[0]['generated_text'].strip().lower()
    return "heureux" if "heureux" in sentiment else "malheureux"

def gradio_interface(input_text):
    sentiment = analyze_sentiment(input_text)
    return sentiment

iface = gr.Interface(
    fn=gradio_interface,
    inputs=gr.Textbox(lines=3, placeholder="Entrez votre texte ici..."),
    outputs=gr.Label(num_top_classes=1),
    title="Analyseur de Sentiment",
    description="Entrez un texte pour déterminer si le sentiment est 'heureux' ou 'malheureux'."
)

iface.launch()