Spaces:
Sleeping
Sleeping
First commit
Browse files- .idea/.gitignore +8 -0
- app.py +7 -0
- requirements.txt +52 -0
.idea/.gitignore
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
4 |
+
# Editor-based HTTP Client requests
|
5 |
+
/httpRequests/
|
6 |
+
# Datasource local storage ignored files
|
7 |
+
/dataSources/
|
8 |
+
/dataSources.local.xml
|
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
demo.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiofiles==23.2.1
|
2 |
+
annotated-types==0.7.0
|
3 |
+
anyio==4.6.2.post1
|
4 |
+
certifi==2024.8.30
|
5 |
+
charset-normalizer==3.4.0
|
6 |
+
click==8.1.7
|
7 |
+
exceptiongroup==1.2.2
|
8 |
+
fastapi==0.115.4
|
9 |
+
ffmpy==0.4.0
|
10 |
+
filelock==3.16.1
|
11 |
+
fsspec==2024.10.0
|
12 |
+
gradio==5.5.0
|
13 |
+
gradio_client==1.4.2
|
14 |
+
h11==0.14.0
|
15 |
+
httpcore==1.0.6
|
16 |
+
httpx==0.27.2
|
17 |
+
huggingface-hub==0.26.2
|
18 |
+
idna==3.10
|
19 |
+
Jinja2==3.1.4
|
20 |
+
markdown-it-py==3.0.0
|
21 |
+
MarkupSafe==2.1.5
|
22 |
+
mdurl==0.1.2
|
23 |
+
numpy==2.1.3
|
24 |
+
orjson==3.10.11
|
25 |
+
packaging==24.1
|
26 |
+
pandas==2.2.3
|
27 |
+
pillow==11.0.0
|
28 |
+
pydantic==2.9.2
|
29 |
+
pydantic_core==2.23.4
|
30 |
+
pydub==0.25.1
|
31 |
+
Pygments==2.18.0
|
32 |
+
python-dateutil==2.9.0.post0
|
33 |
+
python-multipart==0.0.12
|
34 |
+
pytz==2024.2
|
35 |
+
PyYAML==6.0.2
|
36 |
+
requests==2.32.3
|
37 |
+
rich==13.9.4
|
38 |
+
ruff==0.7.2
|
39 |
+
safehttpx==0.1.1
|
40 |
+
semantic-version==2.10.0
|
41 |
+
shellingham==1.5.4
|
42 |
+
six==1.16.0
|
43 |
+
sniffio==1.3.1
|
44 |
+
starlette==0.41.2
|
45 |
+
tomlkit==0.12.0
|
46 |
+
tqdm==4.66.6
|
47 |
+
typer==0.12.5
|
48 |
+
typing_extensions==4.12.2
|
49 |
+
tzdata==2024.2
|
50 |
+
urllib3==2.2.3
|
51 |
+
uvicorn==0.32.0
|
52 |
+
websockets==12.0
|