forked from HumanAIGC-Engineering/OpenAvatarChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (66 loc) · 1.67 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "open-video-chat"
version = "0.1.0"
description = "A modular interactive digital human conversation implementation that runs full-featured on a single PC."
readme = "README.md"
requires-python = ">=3.11.7, <3.12"
dependencies = [
"aiohttp~=3.11.12",
"aiortc~=1.12.0",
"dynaconf~=3.2.7",
"fastapi[standard]~=0.115.12",
"fastrtc",
"gradio~=5.9.1",
"librosa~=0.10.2",
"loguru~=0.7.3",
"modelscope>=1.25.0",
"numpy<=1.26.4",
"openai>=1.72.0",
"opencv-python-headless~=4.11.0",
"pip>=25.0.1",
"pyaml>=25.1.0",
"pydantic~=2.10.6",
"pyyaml~=6.0.2",
"scipy~=1.15.1",
"setuptools>=78.1.0",
"soundfile~=0.13.1",
"starlette~=0.41.3",
"tqdm~=4.67.1",
"typing-extensions~=4.12.2",
"uvicorn~=0.34.0",
"torch==2.8.0",
"torchvision",
"torchaudio",
"python-dotenv>=1.1.0",
]
[tool.uv.workspace]
members = [
"src/handlers/tts/edgetts",
"src/handlers/tts/cosyvoice",
"src/handlers/llm/minicpm",
"src/handlers/avatar/liteavatar",
"src/handlers/avatar/lam",
"src/handlers/vad/silerovad",
"src/handlers/tts/bailian_tts",
"src/handlers/asr/sensevoice",
"src/handlers/avatar/musetalk",
]
[tool.uv.sources]
fastrtc = { path = "src/third_party/gradio_webrtc_videochat/dist/fastrtc-0.0.28.dev0-py3-none-any.whl" }
torch = [
{ index = "pytorch-cu128" },
]
torchvision = [
{ index = "pytorch-cu128" },
]
torchaudio = [
{ index = "pytorch-cu128" },
]
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.uv]
no-build-isolation-package = ["chumpy"]
[tool.uv.extra-build-dependencies]
chumpy = ["wheel"]