README / app.py
cvictorr2508's picture
Update app.py
765d5e6
raw
history blame
172 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
interface = gr.Interface(greet, "text", "text")
if __name__ == "__main__":
interface.launch()