Update app.py
Browse files
app.py
CHANGED
@@ -88,11 +88,11 @@ def is_scam(instruction):
|
|
88 |
classification = output.split("### Solution:")[1].lstrip("\n")
|
89 |
print(classification)
|
90 |
|
91 |
-
return str(classification), "
|
92 |
|
93 |
|
94 |
gr.Interface(
|
95 |
fn=is_scam,
|
96 |
inputs='text',
|
97 |
outputs= ['text','text']
|
98 |
-
).launch(
|
|
|
88 |
classification = output.split("### Solution:")[1].lstrip("\n")
|
89 |
print(classification)
|
90 |
|
91 |
+
return str(classification), " "
|
92 |
|
93 |
|
94 |
gr.Interface(
|
95 |
fn=is_scam,
|
96 |
inputs='text',
|
97 |
outputs= ['text','text']
|
98 |
+
).launch()
|