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