gleison commited on
Commit
51b3a54
·
1 Parent(s): f311a92

making my contract public

Browse files
Files changed (2) hide show
  1. main.py +5 -6
  2. 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="An API that provides text-to-speech using neural models. "
13
- "Developed by TartuNLP - the NLP research group of the University of Tartu.",
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": "TartuNLP",
21
- "url": "https://tartunlp.ai",
22
- "email": "ping@tartunlp.ai",
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==0.5.0
2
- anyio==3.7.1
3
- certifi==2023.7.22
4
- charset-normalizer==3.2.0
5
- click==8.1.6
6
  fastapi
7
- h11==0.14.0
8
- idna==3.4
9
- pydantic==2.1.1
10
- pydantic_core==2.4.0
11
- requests==2.31.0
12
- sniffio==1.3.0
13
- starlette==0.27.0
14
- typing_extensions==4.7.1
15
- urllib3==2.0.4
16
  uvicorn
17
- neon-tts-plugin-coqui==0.7.3a1
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