En2Kab / app.py
Sifal's picture
Create app.py
d6aa14e
raw
history blame
153 Bytes
import gradio as gr
from utils import translate
x = lambda text : translate(x)
iface = gr.Interface(fn=x, inputs="text", outputs="text")
iface.launch()