Spaces:
Runtime error
Runtime error
Amovane commited on
Commit ·
0a611a1
1
Parent(s): a67a3d3
feat: ailogo
Browse files- .gitignore +1 -0
- app.py +7 -0
- requirements.txt +56 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
venv
|
app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def greet(name):
|
| 4 |
+
return "Hello " + name + "!!"
|
| 5 |
+
|
| 6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
+
iface.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiofiles==23.2.1
|
| 2 |
+
altair==5.1.1
|
| 3 |
+
annotated-types==0.5.0
|
| 4 |
+
anyio==3.7.1
|
| 5 |
+
attrs==23.1.0
|
| 6 |
+
certifi==2023.7.22
|
| 7 |
+
charset-normalizer==3.2.0
|
| 8 |
+
click==8.1.7
|
| 9 |
+
contourpy==1.1.0
|
| 10 |
+
cycler==0.11.0
|
| 11 |
+
fastapi==0.103.1
|
| 12 |
+
ffmpy==0.3.1
|
| 13 |
+
filelock==3.12.3
|
| 14 |
+
fonttools==4.42.1
|
| 15 |
+
fsspec==2023.9.0
|
| 16 |
+
gradio==3.43.2
|
| 17 |
+
gradio_client==0.5.0
|
| 18 |
+
h11==0.14.0
|
| 19 |
+
httpcore==0.17.3
|
| 20 |
+
httpx==0.24.1
|
| 21 |
+
huggingface-hub==0.16.4
|
| 22 |
+
idna==3.4
|
| 23 |
+
importlib-resources==6.0.1
|
| 24 |
+
Jinja2==3.1.2
|
| 25 |
+
jsonschema==4.19.0
|
| 26 |
+
jsonschema-specifications==2023.7.1
|
| 27 |
+
kiwisolver==1.4.5
|
| 28 |
+
MarkupSafe==2.1.3
|
| 29 |
+
matplotlib==3.7.2
|
| 30 |
+
numpy==1.25.2
|
| 31 |
+
orjson==3.9.7
|
| 32 |
+
packaging==23.1
|
| 33 |
+
pandas==2.1.0
|
| 34 |
+
Pillow==10.0.0
|
| 35 |
+
pydantic==2.3.0
|
| 36 |
+
pydantic_core==2.6.3
|
| 37 |
+
pydub==0.25.1
|
| 38 |
+
pyparsing==3.0.9
|
| 39 |
+
python-dateutil==2.8.2
|
| 40 |
+
python-multipart==0.0.6
|
| 41 |
+
pytz==2023.3.post1
|
| 42 |
+
PyYAML==6.0.1
|
| 43 |
+
referencing==0.30.2
|
| 44 |
+
requests==2.31.0
|
| 45 |
+
rpds-py==0.10.2
|
| 46 |
+
semantic-version==2.10.0
|
| 47 |
+
six==1.16.0
|
| 48 |
+
sniffio==1.3.0
|
| 49 |
+
starlette==0.27.0
|
| 50 |
+
toolz==0.12.0
|
| 51 |
+
tqdm==4.66.1
|
| 52 |
+
typing_extensions==4.7.1
|
| 53 |
+
tzdata==2023.3
|
| 54 |
+
urllib3==2.0.4
|
| 55 |
+
uvicorn==0.23.2
|
| 56 |
+
websockets==11.0.3
|