abstractvoice 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/PKG-INFO +5 -5
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/__init__.py +1 -1
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice.egg-info/PKG-INFO +5 -5
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice.egg-info/requires.txt +4 -4
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/pyproject.toml +9 -6
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/LICENSE +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/README.md +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/__main__.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/dependency_check.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/examples/__init__.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/examples/cli_repl.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/examples/voice_cli.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/examples/web_api.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/recognition.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/stt/__init__.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/stt/transcriber.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/tts/__init__.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/tts/tts_engine.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/vad/__init__.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/vad/voice_detector.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice/voice_manager.py +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice.egg-info/SOURCES.txt +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice.egg-info/dependency_links.txt +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice.egg-info/entry_points.txt +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/abstractvoice.egg-info/top_level.txt +0 -0
- {abstractvoice-0.3.0 → abstractvoice-0.3.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: abstractvoice
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A modular Python library for voice interactions with AI systems
|
|
5
5
|
Author-email: Laurent-Philippe Albou <contact@abstractcore.ai>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -29,7 +29,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "tts"
|
|
|
29
29
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "tts"
|
|
30
30
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "tts"
|
|
31
31
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "tts"
|
|
32
|
-
Requires-Dist: librosa
|
|
32
|
+
Requires-Dist: librosa>=0.10.0; extra == "tts"
|
|
33
33
|
Provides-Extra: stt
|
|
34
34
|
Requires-Dist: openai-whisper>=20230314; extra == "stt"
|
|
35
35
|
Requires-Dist: tiktoken>=0.6.0; extra == "stt"
|
|
@@ -44,7 +44,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "all"
|
|
|
44
44
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "all"
|
|
45
45
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "all"
|
|
46
46
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "all"
|
|
47
|
-
Requires-Dist: librosa
|
|
47
|
+
Requires-Dist: librosa>=0.10.0; extra == "all"
|
|
48
48
|
Requires-Dist: soundfile>=0.12.1; extra == "all"
|
|
49
49
|
Requires-Dist: flask>=2.0.0; extra == "all"
|
|
50
50
|
Requires-Dist: tiktoken>=0.6.0; extra == "all"
|
|
@@ -61,7 +61,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "voice-full"
|
|
|
61
61
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "voice-full"
|
|
62
62
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "voice-full"
|
|
63
63
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "voice-full"
|
|
64
|
-
Requires-Dist: librosa
|
|
64
|
+
Requires-Dist: librosa>=0.10.0; extra == "voice-full"
|
|
65
65
|
Requires-Dist: soundfile>=0.12.1; extra == "voice-full"
|
|
66
66
|
Requires-Dist: tiktoken>=0.6.0; extra == "voice-full"
|
|
67
67
|
Provides-Extra: core-tts
|
|
@@ -69,7 +69,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "core-tts"
|
|
|
69
69
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "core-tts"
|
|
70
70
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "core-tts"
|
|
71
71
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "core-tts"
|
|
72
|
-
Requires-Dist: librosa
|
|
72
|
+
Requires-Dist: librosa>=0.10.0; extra == "core-tts"
|
|
73
73
|
Provides-Extra: core-stt
|
|
74
74
|
Requires-Dist: openai-whisper>=20230314; extra == "core-stt"
|
|
75
75
|
Requires-Dist: tiktoken>=0.6.0; extra == "core-stt"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: abstractvoice
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A modular Python library for voice interactions with AI systems
|
|
5
5
|
Author-email: Laurent-Philippe Albou <contact@abstractcore.ai>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -29,7 +29,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "tts"
|
|
|
29
29
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "tts"
|
|
30
30
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "tts"
|
|
31
31
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "tts"
|
|
32
|
-
Requires-Dist: librosa
|
|
32
|
+
Requires-Dist: librosa>=0.10.0; extra == "tts"
|
|
33
33
|
Provides-Extra: stt
|
|
34
34
|
Requires-Dist: openai-whisper>=20230314; extra == "stt"
|
|
35
35
|
Requires-Dist: tiktoken>=0.6.0; extra == "stt"
|
|
@@ -44,7 +44,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "all"
|
|
|
44
44
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "all"
|
|
45
45
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "all"
|
|
46
46
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "all"
|
|
47
|
-
Requires-Dist: librosa
|
|
47
|
+
Requires-Dist: librosa>=0.10.0; extra == "all"
|
|
48
48
|
Requires-Dist: soundfile>=0.12.1; extra == "all"
|
|
49
49
|
Requires-Dist: flask>=2.0.0; extra == "all"
|
|
50
50
|
Requires-Dist: tiktoken>=0.6.0; extra == "all"
|
|
@@ -61,7 +61,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "voice-full"
|
|
|
61
61
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "voice-full"
|
|
62
62
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "voice-full"
|
|
63
63
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "voice-full"
|
|
64
|
-
Requires-Dist: librosa
|
|
64
|
+
Requires-Dist: librosa>=0.10.0; extra == "voice-full"
|
|
65
65
|
Requires-Dist: soundfile>=0.12.1; extra == "voice-full"
|
|
66
66
|
Requires-Dist: tiktoken>=0.6.0; extra == "voice-full"
|
|
67
67
|
Provides-Extra: core-tts
|
|
@@ -69,7 +69,7 @@ Requires-Dist: coqui-tts<0.30.0,>=0.27.0; extra == "core-tts"
|
|
|
69
69
|
Requires-Dist: torch<2.4.0,>=2.0.0; extra == "core-tts"
|
|
70
70
|
Requires-Dist: torchvision<0.19.0,>=0.15.0; extra == "core-tts"
|
|
71
71
|
Requires-Dist: torchaudio<2.4.0,>=2.0.0; extra == "core-tts"
|
|
72
|
-
Requires-Dist: librosa
|
|
72
|
+
Requires-Dist: librosa>=0.10.0; extra == "core-tts"
|
|
73
73
|
Provides-Extra: core-stt
|
|
74
74
|
Requires-Dist: openai-whisper>=20230314; extra == "core-stt"
|
|
75
75
|
Requires-Dist: tiktoken>=0.6.0; extra == "core-stt"
|
|
@@ -10,7 +10,7 @@ coqui-tts<0.30.0,>=0.27.0
|
|
|
10
10
|
torch<2.4.0,>=2.0.0
|
|
11
11
|
torchvision<0.19.0,>=0.15.0
|
|
12
12
|
torchaudio<2.4.0,>=2.0.0
|
|
13
|
-
librosa
|
|
13
|
+
librosa>=0.10.0
|
|
14
14
|
soundfile>=0.12.1
|
|
15
15
|
flask>=2.0.0
|
|
16
16
|
tiktoken>=0.6.0
|
|
@@ -30,7 +30,7 @@ coqui-tts<0.30.0,>=0.27.0
|
|
|
30
30
|
torch<2.4.0,>=2.0.0
|
|
31
31
|
torchvision<0.19.0,>=0.15.0
|
|
32
32
|
torchaudio<2.4.0,>=2.0.0
|
|
33
|
-
librosa
|
|
33
|
+
librosa>=0.10.0
|
|
34
34
|
|
|
35
35
|
[dev]
|
|
36
36
|
pytest>=7.0.0
|
|
@@ -46,7 +46,7 @@ coqui-tts<0.30.0,>=0.27.0
|
|
|
46
46
|
torch<2.4.0,>=2.0.0
|
|
47
47
|
torchvision<0.19.0,>=0.15.0
|
|
48
48
|
torchaudio<2.4.0,>=2.0.0
|
|
49
|
-
librosa
|
|
49
|
+
librosa>=0.10.0
|
|
50
50
|
|
|
51
51
|
[voice]
|
|
52
52
|
sounddevice>=0.4.6
|
|
@@ -63,7 +63,7 @@ coqui-tts<0.30.0,>=0.27.0
|
|
|
63
63
|
torch<2.4.0,>=2.0.0
|
|
64
64
|
torchvision<0.19.0,>=0.15.0
|
|
65
65
|
torchaudio<2.4.0,>=2.0.0
|
|
66
|
-
librosa
|
|
66
|
+
librosa>=0.10.0
|
|
67
67
|
soundfile>=0.12.1
|
|
68
68
|
tiktoken>=0.6.0
|
|
69
69
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "abstractvoice"
|
|
7
|
-
|
|
7
|
+
dynamic = ["version"]
|
|
8
8
|
description = "A modular Python library for voice interactions with AI systems"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -43,7 +43,7 @@ tts = [
|
|
|
43
43
|
"torch>=2.0.0,<2.4.0",
|
|
44
44
|
"torchvision>=0.15.0,<0.19.0",
|
|
45
45
|
"torchaudio>=2.0.0,<2.4.0",
|
|
46
|
-
"librosa>=0.10.0
|
|
46
|
+
"librosa>=0.10.0",
|
|
47
47
|
]
|
|
48
48
|
|
|
49
49
|
# Speech-to-Text functionality
|
|
@@ -67,7 +67,7 @@ all = [
|
|
|
67
67
|
"torch>=2.0.0,<2.4.0",
|
|
68
68
|
"torchvision>=0.15.0,<0.19.0",
|
|
69
69
|
"torchaudio>=2.0.0,<2.4.0",
|
|
70
|
-
"librosa>=0.10.0
|
|
70
|
+
"librosa>=0.10.0",
|
|
71
71
|
"soundfile>=0.12.1",
|
|
72
72
|
"flask>=2.0.0",
|
|
73
73
|
"tiktoken>=0.6.0",
|
|
@@ -90,7 +90,7 @@ voice-full = [
|
|
|
90
90
|
"torch>=2.0.0,<2.4.0",
|
|
91
91
|
"torchvision>=0.15.0,<0.19.0",
|
|
92
92
|
"torchaudio>=2.0.0,<2.4.0",
|
|
93
|
-
"librosa>=0.10.0
|
|
93
|
+
"librosa>=0.10.0",
|
|
94
94
|
"soundfile>=0.12.1",
|
|
95
95
|
"tiktoken>=0.6.0",
|
|
96
96
|
]
|
|
@@ -101,7 +101,7 @@ core-tts = [
|
|
|
101
101
|
"torch>=2.0.0,<2.4.0",
|
|
102
102
|
"torchvision>=0.15.0,<0.19.0",
|
|
103
103
|
"torchaudio>=2.0.0,<2.4.0",
|
|
104
|
-
"librosa>=0.10.0
|
|
104
|
+
"librosa>=0.10.0",
|
|
105
105
|
]
|
|
106
106
|
|
|
107
107
|
# Core STT-only (lightweight, no TTS)
|
|
@@ -123,4 +123,7 @@ Repository = "https://github.com/lpalbou/abstractvoice"
|
|
|
123
123
|
Documentation = "https://github.com/lpalbou/abstractvoice#readme"
|
|
124
124
|
|
|
125
125
|
[project.scripts]
|
|
126
|
-
abstractvoice = "abstractvoice.examples.voice_cli:main"
|
|
126
|
+
abstractvoice = "abstractvoice.examples.voice_cli:main"
|
|
127
|
+
|
|
128
|
+
[tool.setuptools.dynamic]
|
|
129
|
+
version = {attr = "abstractvoice.__version__"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|