zeyadahmedd commited on
Commit
1e656fe
·
1 Parent(s): 731474c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,14 +1,15 @@
1
  import gradio as gr
2
 
3
  def greet(name):
4
- return "Hello " + name + "!! "
5
 
6
  def greet1(name):
7
- return "Hello ya client" +name
8
 
9
  iface = gr.Blocks()
10
 
11
  with iface:
 
12
  name = gr.Textbox(label="Name")
13
  output = gr.Textbox(label="Output Box")
14
 
 
1
  import gradio as gr
2
 
3
  def greet(name):
4
+ return "Hello " + name + "!! "
5
 
6
  def greet1(name):
7
+ return "Hello ya client" +name + test
8
 
9
  iface = gr.Blocks()
10
 
11
  with iface:
12
+ test="hhhhhhh"
13
  name = gr.Textbox(label="Name")
14
  output = gr.Textbox(label="Output Box")
15