Spaces:
Build error
Build error
Commit ·
4fefd0f
1
Parent(s): c61fa51
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,14 +1,16 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def greet(name):
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
-
|
| 10 |
-
iface.launch()
|
| 11 |
-
|
| 12 |
-
iface2 = gr.Interface(fn=greet2, inputs="text", outputs="text")
|
| 13 |
-
iface2.launch()
|
| 14 |
|
|
|
|
| 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 |
|
| 15 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|