nldemo commited on
Commit
f96f1c8
1 Parent(s): 30353c2

Explicitly specify no inputs

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()