-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 976 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 976 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "voiceAgent"
version = "0.1.0"
description = "Professional Speech-to-Speech Optimization Pipeline"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"torch>=2.0.0",
"numpy<2.0.0",
"transformers>=4.36.0",
"optimum-intel[openvino]>=1.15.0",
"openvino>=2023.3.0",
"soundfile>=0.12.1",
"datasets>=2.16.0",
"librosa>=0.10.1",
"mlx-audio==0.4.0",
"huggingface_hub",
"langchain-openai",
"mlx",
"langgraph>=1.1.2",
"dotenv>=0.9.9",
"ipywidgets>=8.1.8",
"ffmpeg>=1.4",
"openai-whisper>=20250625",
"streamlit>=1.31.0",
"audio-recorder-streamlit>=0.0.8",
"watchdog>=6.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.black]
line-length = 100
target-version = ['py312']
[tool.uv.sources]
openai-whisper = { git = "https://github.com/openai/whisper.git" }