Spaces:
Sleeping
Sleeping
File size: 347 Bytes
ec08b42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import gradio as gr
def main(text):
# A gradio function that lowercases text and returns it
return text.lower()
# A simple gradio app for text
app = gr.Interface(
main,
inputs="text",
outputs="text",
title="gradio-guides",
description="A collection of gradio apps from the gradio guides",
)
app.launch(debug=True)
|