forked from vocodedev/vocode-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 1.11 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "vocode"
version = "0.1.105"
description = "The all-in-one voice SDK"
authors = ["Ajay Raj <ajay@vocode.dev>"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/vocodedev/vocode-python"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
pydub = "^0.25.1"
nltk = "^3.8.1"
langchain = "^0.0.149"
openai = "^0.27.4"
sounddevice = "^0.4.6"
azure-cognitiveservices-speech = "^1.27.0"
websockets = "^11.0.2"
requests = "^2.28.2"
uvicorn = "^0.21.1"
fastapi = "^0.95.1"
jinja2 = "^3.1.2"
python-multipart = "^0.0.6"
elevenlabs = {version = "^0.2.6", optional = true}
google-cloud-texttospeech = {version = "^2.14.1", optional = true}
gtts = {version = "^2.3.1", optional = true}
google-cloud-speech = {version = "^2.19.0", optional = true}
redis = {version = "^4.5.4", optional = true}
twilio = {version = "^8.1.0", optional = true}
six = "^1.16.0"
[tool.poetry.extras]
synthesizers = ["gtts", "google-cloud-texttospeech", "elevenlabs"]
transcribers = ["google-cloud-speech"]
telephony = ["twilio", "redis"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"