Spaces:
Sleeping
Sleeping
thanga-v2
commited on
Commit
·
235fdc2
1
Parent(s):
3a2d125
adding gitignore
Browse files- .gitignore +2 -0
- app.py +1 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.env
|
| 2 |
+
|
app.py
CHANGED
|
@@ -5,6 +5,7 @@ import gradio as gr
|
|
| 5 |
def greet(name):
|
| 6 |
return "Hello " + name + "!!"
|
| 7 |
|
|
|
|
| 8 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 9 |
demo.launch()
|
| 10 |
|
|
|
|
| 5 |
def greet(name):
|
| 6 |
return "Hello " + name + "!!"
|
| 7 |
|
| 8 |
+
|
| 9 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 10 |
demo.launch()
|
| 11 |
|