s3nh commited on
Commit
c8563aa
·
1 Parent(s): 90e8382

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ def evaluate(instruction, input=None):
63
  results.append( output.split("### Response:")[1].strip())
64
  return ' '.join(el for el in results)
65
 
66
- def inference(text):
67
  output = evaluate(instruction = text, input = input)
68
  return output
69
 
 
63
  results.append( output.split("### Response:")[1].strip())
64
  return ' '.join(el for el in results)
65
 
66
+ def inference(text, input):
67
  output = evaluate(instruction = text, input = input)
68
  return output
69