Spaces:
Build error
Build error
System :)
commited on
Commit
·
b9f5d20
1
Parent(s):
da88c7a
Creating app.py
Browse files- .gitignore +1 -0
- README.md +1 -0
- app.py +11 -0
- requirements.txt +67 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
env/
|
README.md
CHANGED
|
@@ -8,6 +8,7 @@ sdk_version: 4.25.0
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: apache-2.0
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: apache-2.0
|
| 11 |
+
python_version: 3.10.13
|
| 12 |
---
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio
|
| 2 |
+
|
| 3 |
+
def my_inference_function(name):
|
| 4 |
+
return "Hello " + name + "!"
|
| 5 |
+
|
| 6 |
+
gradio_interface = gradio.Interface(
|
| 7 |
+
fn = my_inference_function,
|
| 8 |
+
inputs = "text",
|
| 9 |
+
outputs = "text"
|
| 10 |
+
)
|
| 11 |
+
gradio_interface.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiofiles==23.2.1
|
| 2 |
+
altair==5.3.0
|
| 3 |
+
annotated-types==0.6.0
|
| 4 |
+
anyio==4.3.0
|
| 5 |
+
attrs==23.2.0
|
| 6 |
+
certifi==2024.2.2
|
| 7 |
+
charset-normalizer==3.3.2
|
| 8 |
+
click==8.1.7
|
| 9 |
+
contourpy==1.2.1
|
| 10 |
+
cycler==0.12.1
|
| 11 |
+
exceptiongroup==1.2.0
|
| 12 |
+
fastapi==0.110.1
|
| 13 |
+
ffmpy==0.3.2
|
| 14 |
+
filelock==3.13.3
|
| 15 |
+
fonttools==4.50.0
|
| 16 |
+
fsspec==2024.3.1
|
| 17 |
+
gradio==4.25.0
|
| 18 |
+
gradio_client==0.15.0
|
| 19 |
+
h11==0.14.0
|
| 20 |
+
httpcore==1.0.5
|
| 21 |
+
httpx==0.27.0
|
| 22 |
+
huggingface-hub==0.22.2
|
| 23 |
+
idna==3.6
|
| 24 |
+
importlib_resources==6.4.0
|
| 25 |
+
Jinja2==3.1.3
|
| 26 |
+
jsonschema==4.21.1
|
| 27 |
+
jsonschema-specifications==2023.12.1
|
| 28 |
+
kiwisolver==1.4.5
|
| 29 |
+
markdown-it-py==3.0.0
|
| 30 |
+
MarkupSafe==2.1.5
|
| 31 |
+
matplotlib==3.8.4
|
| 32 |
+
mdurl==0.1.2
|
| 33 |
+
numpy==1.26.4
|
| 34 |
+
orjson==3.10.0
|
| 35 |
+
packaging==24.0
|
| 36 |
+
pandas==2.2.1
|
| 37 |
+
pillow==10.3.0
|
| 38 |
+
pydantic==2.6.4
|
| 39 |
+
pydantic_core==2.16.3
|
| 40 |
+
pydub==0.25.1
|
| 41 |
+
Pygments==2.17.2
|
| 42 |
+
pyparsing==3.1.2
|
| 43 |
+
python-dateutil==2.9.0.post0
|
| 44 |
+
python-multipart==0.0.9
|
| 45 |
+
pytz==2024.1
|
| 46 |
+
PyYAML==6.0.1
|
| 47 |
+
referencing==0.34.0
|
| 48 |
+
requests==2.31.0
|
| 49 |
+
rich==13.7.1
|
| 50 |
+
rpds-py==0.18.0
|
| 51 |
+
ruff==0.3.5
|
| 52 |
+
semantic-version==2.10.0
|
| 53 |
+
shellingham==1.5.4
|
| 54 |
+
six==1.16.0
|
| 55 |
+
sniffio==1.3.1
|
| 56 |
+
starlette==0.37.2
|
| 57 |
+
tomlkit==0.12.0
|
| 58 |
+
toolz==0.12.1
|
| 59 |
+
tqdm==4.66.2
|
| 60 |
+
typer==0.12.0
|
| 61 |
+
typer-cli==0.12.0
|
| 62 |
+
typer-slim==0.12.0
|
| 63 |
+
typing_extensions==4.10.0
|
| 64 |
+
tzdata==2024.1
|
| 65 |
+
urllib3==2.2.1
|
| 66 |
+
uvicorn==0.29.0
|
| 67 |
+
websockets==11.0.3
|