hello_world / run.py
DemoLou's picture
Update run.py
c5a022a
import gradio as gr
def greet(name):
return "hahaha " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch()