Create app.py

This commit is contained in:
2025-09-22 06:48:18 +00:00
parent 07ae84cfbd
commit 6b20371b6f

7
app.py Normal file
View File

@ -0,0 +1,7 @@
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()