q2 / app.py
Almahfouz's picture
Create app.py
d07028b verified
raw
history blame contribute delete
163 Bytes
import gradio as gr
def greet(c):
f = c*9/5+32
return "Temp in F: " + f +"!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()