AbuAmirx commited on
Commit
f46bbf3
·
verified ·
1 Parent(s): 7319458

Create app.py

Browse files

![chicken-meat..png](https://cdn-uploads.huggingface.co/production/uploads/678110de0d03aaa51d43e43e/nRoX7yTLod7bz58PAdJfR.png)

Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return f"Hello {name}!"
5
+
6
+ iface = gr.Interface(
7
+ fn=greet,
8
+ inputs="text",
9
+ outputs="text"
10
+ )
11
+
12
+ iface.launch()