Update app.py
Browse files
app.py
CHANGED
@@ -8,6 +8,7 @@ def randomize_words():
|
|
8 |
return randomized_words
|
9 |
|
10 |
iface = gr.Interface(fn=randomize_words,
|
|
|
11 |
outputs="text",
|
12 |
title='Random Word API',
|
13 |
description='Click "Generate" to get a random order of words.',
|
|
|
8 |
return randomized_words
|
9 |
|
10 |
iface = gr.Interface(fn=randomize_words,
|
11 |
+
inputs=None,
|
12 |
outputs="text",
|
13 |
title='Random Word API',
|
14 |
description='Click "Generate" to get a random order of words.',
|