Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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(
|
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 |
|