Spaces:
Sleeping
Sleeping
Commit
·
53715b3
1
Parent(s):
ce48253
Initial commit
Browse files- .gitignore +1 -0
- app.py +11 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
venv/
|
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
# Needs a text input for dotabuff link
|
7 |
+
|
8 |
+
|
9 |
+
demo = gr.Interface(fn=greet, inputs="textbox", outputs="text")
|
10 |
+
demo.launch()
|
11 |
+
|