Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|