aupfe08 commited on
Commit
e897949
โ€ข
1 Parent(s): 5f8e8c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -1,7 +1,14 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
5
 
6
- demo = gr.Interface(fn=greet, inputs=gr.Textbox(lines=2, placeholder="์—ฌ๊ธฐ์— ๋‹น์‹ ์˜ ์ด๋ฆ„์„ ์ ์œผ์„ธ์š”..."), outputs="text")
 
 
 
 
7
  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()