Spaces:
Runtime error
Runtime error
gleison
commited on
Commit
·
51b3a54
1
Parent(s):
f311a92
making my contract public
Browse files- main.py +5 -6
- requirements.txt +15 -15
main.py
CHANGED
@@ -9,17 +9,16 @@ from typing import List, Dict, Optional
|
|
9 |
app = FastAPI(title="Text-to-Speech API",
|
10 |
docs_url="/",
|
11 |
|
12 |
-
description="
|
13 |
-
|
14 |
-
terms_of_service="https://www.tartunlp.ai/andmekaitsetingimused",
|
15 |
license_info={
|
16 |
"name": "MIT license",
|
17 |
"url": "https://github.com/TartuNLP/text-to-speech-api/blob/main/LICENSE"
|
18 |
},
|
19 |
contact={
|
20 |
-
"name": "
|
21 |
-
"url": "https://
|
22 |
-
"email": "
|
23 |
})
|
24 |
|
25 |
app.include_router(audio_router)
|
|
|
9 |
app = FastAPI(title="Text-to-Speech API",
|
10 |
docs_url="/",
|
11 |
|
12 |
+
description="the idea is to centralize all audio options at the moment",
|
13 |
+
terms_of_service=" ",
|
|
|
14 |
license_info={
|
15 |
"name": "MIT license",
|
16 |
"url": "https://github.com/TartuNLP/text-to-speech-api/blob/main/LICENSE"
|
17 |
},
|
18 |
contact={
|
19 |
+
"name": "Gleison Luiz",
|
20 |
+
"url": "https://github.com/gleisonnanet",
|
21 |
+
"email": "gleisonnanet@gmail.com",
|
22 |
})
|
23 |
|
24 |
app.include_router(audio_router)
|
requirements.txt
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
annotated-types
|
2 |
-
anyio
|
3 |
-
certifi
|
4 |
-
charset-normalizer
|
5 |
-
click
|
6 |
fastapi
|
7 |
-
h11
|
8 |
-
idna
|
9 |
-
pydantic
|
10 |
-
pydantic_core
|
11 |
-
requests
|
12 |
-
sniffio
|
13 |
-
starlette
|
14 |
-
typing_extensions
|
15 |
-
urllib3
|
16 |
uvicorn
|
17 |
-
neon-tts-plugin-coqui
|
18 |
TTS[all,dev,notebooks]
|
19 |
gradio
|
20 |
stt
|
|
|
1 |
+
annotated-types
|
2 |
+
anyio
|
3 |
+
certifi
|
4 |
+
charset-normalizer
|
5 |
+
click
|
6 |
fastapi
|
7 |
+
h11
|
8 |
+
idna
|
9 |
+
pydantic
|
10 |
+
pydantic_core
|
11 |
+
requests
|
12 |
+
sniffio
|
13 |
+
starlette
|
14 |
+
typing_extensions
|
15 |
+
urllib3
|
16 |
uvicorn
|
17 |
+
neon-tts-plugin-coqui
|
18 |
TTS[all,dev,notebooks]
|
19 |
gradio
|
20 |
stt
|