Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
return "This version is currently broken, please switch to another version. See my Bio for more information."
|
6 |
+
|
7 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
8 |
+
demo.launch()
|