Tonic commited on
Commit
c2bec13
·
verified ·
1 Parent(s): c8312da

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 echo(name, intensity):
4
- return f"Name: {name}, Intensity: {intensity}"
5
 
6
  demo = gr.Interface(
7
  fn=echo,
 
1
  import gradio as gr
2
 
3
+ def echo(echo, slider):
4
+ return f"Echo: {echo}, Intensity: {slider}"
5
 
6
  demo = gr.Interface(
7
  fn=echo,