dawood HF Staff commited on
Commit
4805bfa
·
verified ·
1 Parent(s): 4fafaa3

AI: Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
  def greet(name, intensity):
4
- return "Hello " * intensity + name + "!"
5
 
6
  demo = gr.Interface(
7
  fn=greet,
@@ -9,4 +9,4 @@ demo = gr.Interface(
9
  outputs=["text"],
10
  )
11
 
12
- demo.launch()
 
1
  import gradio as gr
2
 
3
  def greet(name, intensity):
4
+ return "Hi " * intensity + name + "!"
5
 
6
  demo = gr.Interface(
7
  fn=greet,
 
9
  outputs=["text"],
10
  )
11
 
12
+ demo.launch()