mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
15 lines
455 B
Python
15 lines
455 B
Python
|
import gradio as gr
|
||
|
|
||
|
def greet(name, is_morning, temperature):
|
||
|
salutation = "Good morning" if is_morning else "Good evening"
|
||
|
greeting = "%s %s. It is %s degrees today" % (
|
||
|
salutation, name, temperature)
|
||
|
celsius = (temperature - 32) * 5 / 9
|
||
|
return greeting, round(celsius, 2)
|
||
|
|
||
|
iface = gr.Interface(
|
||
|
fn=greet,
|
||
|
inputs=["text", "checkbox", gr.inputs.Slider(0, 100)],
|
||
|
outputs=["text", "number"])
|
||
|
if __name__ == "__main__":
|
||
|
iface.launch()
|