File size: 153 Bytes
d6aa14e
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr
from utils import translate

x = lambda text : translate(x)

iface = gr.Interface(fn=x, inputs="text", outputs="text")
iface.launch()