Spaces:
Running
Running
Commit
·
78b8f5f
1
Parent(s):
4bde51b
initial commit.
Browse files- .gitignore +0 -0
- app.py +8 -0
- requirements.txt +2 -0
.gitignore
ADDED
|
File without changes
|
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import gradio as gr
|
| 3 |
+
|
| 4 |
+
def greet(name):
|
| 5 |
+
return "Hello " + name + "!!"
|
| 6 |
+
|
| 7 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 8 |
+
iface.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
novita_client==0.4.12
|
| 2 |
+
gradio==3.50.2
|