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