Spaces:
Sleeping
Sleeping
Commit
·
c3cc27c
1
Parent(s):
6d67d37
v1.0.1-First Commit
Browse files- app.py +5 -0
- requirements.txt +1 -0
app.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def greet(name):
|
| 2 |
+
return "Hello " + name + "!!"
|
| 3 |
+
|
| 4 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 5 |
+
iface.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
gradio
|