Jofthomas HF staff commited on
Commit
4766d10
1 Parent(s): f312d57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -120,7 +120,7 @@ def sentence_builder(Model,Text):
120
  good_label,bad_label=falcon_sentiment(Text)
121
  if Model=="GPT-4 Function call":
122
  good_label,bad_label=gpt4_sentiment(Text)
123
-
124
  print({"Good": good_label, "Bad": bad_label})
125
  return {"Good": good_label, "Bad": bad_label}
126
 
 
120
  good_label,bad_label=falcon_sentiment(Text)
121
  if Model=="GPT-4 Function call":
122
  good_label,bad_label=gpt4_sentiment(Text)
123
+ print(Model, Text)
124
  print({"Good": good_label, "Bad": bad_label})
125
  return {"Good": good_label, "Bad": bad_label}
126