alex-abb commited on
Commit
394e3ca
·
verified ·
1 Parent(s): 1917b0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -8,7 +8,6 @@ api_token = os.environ.get("TOKEN")
8
 
9
  API_URL = "https://api-inference.huggingface.co/models/meta-llama/Meta-Llama-3-8B-Instruct"
10
  headers = {"Authorization": f"Bearer {api_token}"}
11
-
12
  @spaces.GPU
13
 
14
  def query(payload):
@@ -16,7 +15,7 @@ def query(payload):
16
  return response.json()
17
 
18
  def analyze_sentiment(text):
19
- prompt = f"Tu es un analyseur de sentiment. Ton rôle est d'évaluer le sentiment général du texte fourni. Réponds uniquement par 'positif' ou 'négatif'. N'ajoute aucune explication. Voici le texte à analyser : {text}"
20
 
21
  output = query({
22
  "inputs": prompt,
 
8
 
9
  API_URL = "https://api-inference.huggingface.co/models/meta-llama/Meta-Llama-3-8B-Instruct"
10
  headers = {"Authorization": f"Bearer {api_token}"}
 
11
  @spaces.GPU
12
 
13
  def query(payload):
 
15
  return response.json()
16
 
17
  def analyze_sentiment(text):
18
+ prompt = f"TYou're a sentiment analyzer. Your role is to evaluate the general feeling of the prompt. Answer only with 'positive' or 'negative'. Don't add any explanations. Here's the text to analyze (don't add any text) : {text}"
19
 
20
  output = query({
21
  "inputs": prompt,