pip64 commited on
Commit
5e0f491
1 Parent(s): 4c682e0
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def gen(text, size):
21
 
22
  iface = gr.Interface(
23
  fn=gen,
24
- inputs="text", "size",
25
  outputs="text",
26
  examples=[["Привет!"], ["Как дела?"]])
27
  iface.launch()
 
21
 
22
  iface = gr.Interface(
23
  fn=gen,
24
+ inputs=["text", "size"],
25
  outputs="text",
26
  examples=[["Привет!"], ["Как дела?"]])
27
  iface.launch()