Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def query(payload):
|
|
15 |
return response.json()
|
16 |
|
17 |
def analyze_sentiment(text):
|
18 |
-
prompt = f"
|
19 |
|
20 |
output = query({
|
21 |
"inputs": prompt,
|
|
|
15 |
return response.json()
|
16 |
|
17 |
def analyze_sentiment(text):
|
18 |
+
prompt = f"<|begin_of_text|><|start_header_id|>system<|end_header_id|>You'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}<|eot_id|><|start_header_id|>user<|end_header_id|>"
|
19 |
|
20 |
output = query({
|
21 |
"inputs": prompt,
|