zhaochaojin
commited on
Commit
·
684da35
1
Parent(s):
f64eb49
fix
Browse files- app.py +7 -0
- main.py +6 -0
- packages.txt +0 -0
- pyproject.toml +7 -0
- requirements.txt +55 -0
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()
|
main.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def main():
|
2 |
+
print("Hello from asr-test!")
|
3 |
+
|
4 |
+
|
5 |
+
if __name__ == "__main__":
|
6 |
+
main()
|
packages.txt
ADDED
File without changes
|
pyproject.toml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "asr-test"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.13"
|
7 |
+
dependencies = []
|
requirements.txt
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiofiles==24.1.0
|
2 |
+
annotated-types==0.7.0
|
3 |
+
anyio==4.9.0
|
4 |
+
audioop-lts==0.2.1
|
5 |
+
certifi==2025.4.26
|
6 |
+
charset-normalizer==3.4.2
|
7 |
+
click==8.1.8
|
8 |
+
fastapi==0.115.12
|
9 |
+
ffmpy==0.5.0
|
10 |
+
filelock==3.18.0
|
11 |
+
fsspec==2025.5.1
|
12 |
+
gradio==5.31.0
|
13 |
+
gradio-client==1.10.1
|
14 |
+
groovy==0.1.2
|
15 |
+
h11==0.16.0
|
16 |
+
hf-xet==1.1.2
|
17 |
+
httpcore==1.0.9
|
18 |
+
httpx==0.28.1
|
19 |
+
huggingface-hub==0.32.0
|
20 |
+
idna==3.10
|
21 |
+
jinja2==3.1.6
|
22 |
+
markdown-it-py==3.0.0
|
23 |
+
markupsafe==3.0.2
|
24 |
+
mdurl==0.1.2
|
25 |
+
numpy==2.2.6
|
26 |
+
orjson==3.10.18
|
27 |
+
packaging==25.0
|
28 |
+
pandas==2.2.3
|
29 |
+
pillow==11.2.1
|
30 |
+
pydantic==2.11.5
|
31 |
+
pydantic-core==2.33.2
|
32 |
+
pydub==0.25.1
|
33 |
+
pygments==2.19.1
|
34 |
+
python-dateutil==2.9.0.post0
|
35 |
+
python-multipart==0.0.20
|
36 |
+
pytz==2025.2
|
37 |
+
pyyaml==6.0.2
|
38 |
+
requests==2.32.3
|
39 |
+
rich==14.0.0
|
40 |
+
ruff==0.11.11
|
41 |
+
safehttpx==0.1.6
|
42 |
+
semantic-version==2.10.0
|
43 |
+
shellingham==1.5.4
|
44 |
+
six==1.17.0
|
45 |
+
sniffio==1.3.1
|
46 |
+
starlette==0.46.2
|
47 |
+
tomlkit==0.13.2
|
48 |
+
tqdm==4.67.1
|
49 |
+
typer==0.15.4
|
50 |
+
typing-extensions==4.13.2
|
51 |
+
typing-inspection==0.4.1
|
52 |
+
tzdata==2025.2
|
53 |
+
urllib3==2.4.0
|
54 |
+
uvicorn==0.34.2
|
55 |
+
websockets==15.0.1
|