Spaces:
Sleeping
Sleeping
fix error in input
Browse files
app.py
CHANGED
|
@@ -22,5 +22,5 @@ def sentience_check():
|
|
| 22 |
|
| 23 |
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 24 |
|
| 25 |
-
demo = gr.Interface(fn=sentience_check, outputs=gr.Text())
|
| 26 |
demo.launch()
|
|
|
|
| 22 |
|
| 23 |
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 24 |
|
| 25 |
+
demo = gr.Interface(fn=sentience_check, inputs=None, outputs=gr.Text())
|
| 26 |
demo.launch()
|