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