En2Kab / app.py
Sifal's picture
Update app.py
808666b
raw
history blame
154 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()