Commit ·
7abf4f0
1
Parent(s): ff5b03d
init
Browse files- .gitignore +1 -0
- app.py +7 -0
- requirements.txt +0 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
env
|
app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def test(input: str):
|
| 4 |
+
return "Hello, " + input
|
| 5 |
+
|
| 6 |
+
demo = gr.Interface(fn=test, inputs="text", outputs="text")
|
| 7 |
+
demo.launch()
|
requirements.txt
ADDED
|
File without changes
|