-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (46 loc) · 1.15 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
44
45
46
47
48
49
50
[project]
name = "mangrove"
version = "0.1.0"
description = "Mangrove is the backend module of Estuary, a framework for building multimodal real-time Socially Intelligent Agents (SIA)."
authors = [
{name = "Basem Rizk", email = "[email protected]"},
]
dependencies = [
"faster-whisper>=1.0.3",
"silero-vad>=5.1",
"elevenlabs>=1.4.1",
"langchain>=0.2.7",
"langchain-openai>=0.1.16",
"loguru>=0.7.2",
"flask-socketio>=5.3.6",
"sounddevice>=0.4.7",
"langchain-community>=0.2.7",
"pydub>=0.25.1",
"backoff>=2.2.1",
"faiss-gpu>=1.7.2",
"gtts>=2.5.1",
"transformers==4.35.0",
"tts>=0.22.0",
"pip>=24.2",
"langchain-ollama>=0.1.1",
"torch==2.1.0+cu121",
"deepspeed>=0.15.0",
"python-dotenv>=1.0.1",
"pyttsx3>=2.91",
]
requires-python = "==3.9.*"
readme = "README.md"
license = {text = "AGPL-3.0-only"}
[project.optional-dependencies]
client = [
"pyaudio>=0.2.14",
"python-socketio[client]>=5.11.3",
]
[tool.pdm]
distribution = false
[[tool.pdm.source]]
url = "https://download.pytorch.org/whl/torch/"
verify_ssl = true
name = "torch"
include_packages = ["torch"]
type = "find_links"