ShiwenNi commited on
Commit
e5c4e1f
·
1 Parent(s): 06f4c1d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -1,11 +1,14 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!"
 
 
 
5
 
6
  demo = gr.Interface(
7
  fn=greet,
8
- inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
9
- outputs="text",
10
  )
11
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ def greet(name, is_morning, temperature):
4
+ salutation = "Good morning" if is_morning else "Good evening"
5
+ greeting = f"{salutation} {name}. It is {temperature} degrees today"
6
+ celsius = (temperature - 32) * 5 / 9
7
+ return greeting, round(celsius, 2)
8
 
9
  demo = gr.Interface(
10
  fn=greet,
11
+ inputs=["text", "checkbox", gr.Slider(0, 100)],
12
+ outputs=["text", "number"],
13
  )
14
  demo.launch()