Hunzla commited on
Commit
6fa85f6
·
verified ·
1 Parent(s): ac6a482

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -97,10 +97,10 @@ if __name__ == '__main__':
97
  ]
98
 
99
  gr.Interface(translation,
100
- inputs,
101
  outputs,
102
  title=title,
103
  description=description,
104
- ).launch(api_open=True)
105
 
106
 
 
97
  ]
98
 
99
  gr.Interface(translation,
100
+ inputs=[gr.Textbox(title="source"),gr.Textbox(title="target"),gr.Textbox(title="text")],
101
  outputs,
102
  title=title,
103
  description=description,
104
+ ).launch()
105
 
106