Zakia commited on
Commit
03d0f05
·
1 Parent(s): 7a808ad

Add application file

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # Bismillahir Rahmaanir Raheem
2
+ # Almadadh Ya Gause Radi Allahu Ta'alah Anh - Ameen
3
+
4
+ import gradio as gr
5
+
6
+ def greet(name):
7
+ return "Hello " + name + "!!"
8
+
9
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
10
+ demo.launch()