import gradio as gr def greet(input): f=float(input)*9/5+32 return f demo = gr.Interface(fn=greet, inputs="text", outputs="text") demo.launch()