Patt commited on
Commit
0d3afa6
1 Parent(s): 372ebba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gd
2
 
3
  def greeting(name, history):
4
- return(f"Hello + {name}!")
5
 
6
  demo = gd.ChatInterface(fn=greeting,
7
  textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
 
1
  import gradio as gd
2
 
3
  def greeting(name, history):
4
+ return(f"Hello {name}!")
5
 
6
  demo = gd.ChatInterface(fn=greeting,
7
  textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),