Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| def translate_to_Konkani(sent): | |
| input_text = sent.split(',') | |
| output_texts="" | |
| for x in input_text: | |
| output_texts+=" "+ x | |
| return output_texts | |
| iface = gr.Interface(fn=translate_to_Konkani, inputs="text", outputs="text") | |
| iface.launch() | |
| # |