Spaces:
Running
Running
ghost717
commited on
Commit
•
d7382dd
1
Parent(s):
27bb4e6
config
Browse files- .gitignore +6 -0
- app.py +7 -0
- requirements.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.env
|
2 |
+
*.bak
|
3 |
+
|
4 |
+
env
|
5 |
+
venv
|
6 |
+
temp
|
app.py
CHANGED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
demo.launch()
|
requirements.txt
ADDED
Binary file (2.65 kB). View file
|
|