-
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) · 890 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 890 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>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["whisperloop*"]
[project]
name = "whisperloop"
version = "0.1.0"
description = "A fully local, sub-700ms voice assistant."
authors = [{name = "Antigravity"}]
dependencies = [
"llama-cpp-python",
"faster-whisper",
"silero-vad",
"sounddevice",
"piper-tts",
"pynvml",
"rich",
"typer",
"numpy",
"scipy",
"psutil",
"pypdf",
"huggingface-hub", # for download_models.py
]
[project.scripts]
whisperloop = "whisperloop.main:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
]
docs = [
"unstructured", # Advanced document parsing (optional)
"markdown", # Markdown processing
]
memex = [
"sentence-transformers", # 384-dim semantic embeddings for recall
]