hwberry2 commited on
Commit
ddfcbfd
·
1 Parent(s): e80d282

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -1,2 +1,8 @@
1
- print("hello world")
 
 
 
 
 
 
2
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return f"Hello, {name}!"
5
+
6
+ iface = gr.Interface(greet, "text", "text")
7
+ iface.launch()
8