Spaces:
Runtime error
Runtime error
File size: 1,050 Bytes
fb64d41 5131b33 4c4e8e3 4ffc5f1 5131b33 867427f 4c4e8e3 5131b33 d43b4cf e843947 4c4e8e3 604d57b 4c4e8e3 5131b33 4c4e8e3 5131b33 5acfd7e 5131b33 b96ef93 5acfd7e 4c4e8e3 |
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 |
import requests
import gradio as gr
import spaces
import os
api_token = os.environ.get("TOKEN")
API_URL = "https://api-inference.huggingface.co/models/meta-llama/Meta-llama-3-8B-Instruct"
headers = {"Authorization": f"Bearer {api_token}"}
@spaces.GPU
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()
def detect_sentiment(message):
prompt = f"Détecte le sentiment de ce message. Réponds par 'positif' ou 'négatif' :\nMessage : \"{message}\""
response = query({"inputs": prompt})
sentiment = response[0]['generated_text'].strip().lower()
return sentiment
def sentiment_analysis_interface(message):
sentiment = detect_sentiment(message)
return sentiment
# Créer l'interface Gradio
iface = gr.Interface(
fn=sentiment_analysis_interface,
inputs="text",
outputs="text",
title="Détection de Sentiment",
description="Entrez un message pour détecter si le sentiment est positif ou négatif.",
)
# Lancer l'interface
iface.launch() |