Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def greet(input):
|
4 |
-
|
5 |
-
return
|
6 |
|
7 |
demo = gr.Interface(fn=greet, inputs='text', outputs='text')
|
8 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def greet(input):
|
4 |
+
|
5 |
+
return (float)input * 9/5 + 3
|
6 |
|
7 |
demo = gr.Interface(fn=greet, inputs='text', outputs='text')
|
8 |
demo.launch()
|