orion / app.py
andreslu's picture
Update app.py
ea1dd8e
raw
history blame
148 Bytes
import gradio as gr
def uppercase(text):
return text.upper()
iface = gr.Interface(fn=uppercase, inputs="text", outputs="text")
iface.launch()