abstractvoice 0.1.0__tar.gz → 0.1.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.1.0 → abstractvoice-0.1.1}/PKG-INFO +27 -27
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/README.md +26 -26
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice.egg-info/PKG-INFO +27 -27
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/pyproject.toml +2 -1
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/LICENSE +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/__init__.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/__main__.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/examples/__init__.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/examples/cli_repl.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/examples/voice_cli.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/examples/web_api.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/recognition.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/stt/__init__.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/stt/transcriber.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/tts/__init__.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/tts/tts_engine.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/vad/__init__.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/vad/voice_detector.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice/voice_manager.py +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice.egg-info/SOURCES.txt +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice.egg-info/dependency_links.txt +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice.egg-info/entry_points.txt +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice.egg-info/requires.txt +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/abstractvoice.egg-info/top_level.txt +0 -0
- {abstractvoice-0.1.0 → abstractvoice-0.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: abstractvoice
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.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
|
|
@@ -70,6 +70,32 @@ While we provide CLI and WEB examples, AbstractVoice is designed to be integrate
|
|
|
70
70
|
- PortAudio for audio input/output
|
|
71
71
|
- **Recommended**: espeak-ng for best voice quality (VITS model)
|
|
72
72
|
|
|
73
|
+
### Basic Installation
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Install from PyPI
|
|
77
|
+
pip install abstractvoice
|
|
78
|
+
|
|
79
|
+
# Or clone the repository
|
|
80
|
+
git clone https://github.com/lpalbou/abstractvoice.git
|
|
81
|
+
cd abstractvoice
|
|
82
|
+
pip install -e .
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Development Installation
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Install with development dependencies
|
|
89
|
+
pip install "abstractvoice[dev]"
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### From Requirements File
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
# Install all dependencies including the package
|
|
96
|
+
pip install -r requirements.txt
|
|
97
|
+
```
|
|
98
|
+
|
|
73
99
|
### Installing espeak-ng (Recommended for Best Quality)
|
|
74
100
|
|
|
75
101
|
AbstractVoice will work without espeak-ng, but voice quality will be significantly better with it:
|
|
@@ -102,32 +128,6 @@ choco install espeak-ng
|
|
|
102
128
|
|
|
103
129
|
**Without espeak-ng:** AbstractVoice will automatically fall back to a simpler TTS model (fast_pitch) that works everywhere but has lower voice quality.
|
|
104
130
|
|
|
105
|
-
### Basic Installation
|
|
106
|
-
|
|
107
|
-
```bash
|
|
108
|
-
# Install from PyPI
|
|
109
|
-
pip install abstractvoice
|
|
110
|
-
|
|
111
|
-
# Or clone the repository
|
|
112
|
-
git clone https://github.com/lpalbou/abstractvoice.git
|
|
113
|
-
cd abstractvoice
|
|
114
|
-
pip install -e .
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
### Development Installation
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
# Install with development dependencies
|
|
121
|
-
pip install "abstractvoice[dev]"
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
### From Requirements File
|
|
125
|
-
|
|
126
|
-
```bash
|
|
127
|
-
# Install all dependencies including the package
|
|
128
|
-
pip install -r requirements.txt
|
|
129
|
-
```
|
|
130
|
-
|
|
131
131
|
## Quick Start
|
|
132
132
|
|
|
133
133
|
### Using AbstractVoice from the Command Line
|
|
@@ -32,6 +32,32 @@ While we provide CLI and WEB examples, AbstractVoice is designed to be integrate
|
|
|
32
32
|
- PortAudio for audio input/output
|
|
33
33
|
- **Recommended**: espeak-ng for best voice quality (VITS model)
|
|
34
34
|
|
|
35
|
+
### Basic Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Install from PyPI
|
|
39
|
+
pip install abstractvoice
|
|
40
|
+
|
|
41
|
+
# Or clone the repository
|
|
42
|
+
git clone https://github.com/lpalbou/abstractvoice.git
|
|
43
|
+
cd abstractvoice
|
|
44
|
+
pip install -e .
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Development Installation
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Install with development dependencies
|
|
51
|
+
pip install "abstractvoice[dev]"
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### From Requirements File
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Install all dependencies including the package
|
|
58
|
+
pip install -r requirements.txt
|
|
59
|
+
```
|
|
60
|
+
|
|
35
61
|
### Installing espeak-ng (Recommended for Best Quality)
|
|
36
62
|
|
|
37
63
|
AbstractVoice will work without espeak-ng, but voice quality will be significantly better with it:
|
|
@@ -64,32 +90,6 @@ choco install espeak-ng
|
|
|
64
90
|
|
|
65
91
|
**Without espeak-ng:** AbstractVoice will automatically fall back to a simpler TTS model (fast_pitch) that works everywhere but has lower voice quality.
|
|
66
92
|
|
|
67
|
-
### Basic Installation
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
# Install from PyPI
|
|
71
|
-
pip install abstractvoice
|
|
72
|
-
|
|
73
|
-
# Or clone the repository
|
|
74
|
-
git clone https://github.com/lpalbou/abstractvoice.git
|
|
75
|
-
cd abstractvoice
|
|
76
|
-
pip install -e .
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
### Development Installation
|
|
80
|
-
|
|
81
|
-
```bash
|
|
82
|
-
# Install with development dependencies
|
|
83
|
-
pip install "abstractvoice[dev]"
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
### From Requirements File
|
|
87
|
-
|
|
88
|
-
```bash
|
|
89
|
-
# Install all dependencies including the package
|
|
90
|
-
pip install -r requirements.txt
|
|
91
|
-
```
|
|
92
|
-
|
|
93
93
|
## Quick Start
|
|
94
94
|
|
|
95
95
|
### Using AbstractVoice from the Command Line
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: abstractvoice
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.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
|
|
@@ -70,6 +70,32 @@ While we provide CLI and WEB examples, AbstractVoice is designed to be integrate
|
|
|
70
70
|
- PortAudio for audio input/output
|
|
71
71
|
- **Recommended**: espeak-ng for best voice quality (VITS model)
|
|
72
72
|
|
|
73
|
+
### Basic Installation
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Install from PyPI
|
|
77
|
+
pip install abstractvoice
|
|
78
|
+
|
|
79
|
+
# Or clone the repository
|
|
80
|
+
git clone https://github.com/lpalbou/abstractvoice.git
|
|
81
|
+
cd abstractvoice
|
|
82
|
+
pip install -e .
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Development Installation
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Install with development dependencies
|
|
89
|
+
pip install "abstractvoice[dev]"
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### From Requirements File
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
# Install all dependencies including the package
|
|
96
|
+
pip install -r requirements.txt
|
|
97
|
+
```
|
|
98
|
+
|
|
73
99
|
### Installing espeak-ng (Recommended for Best Quality)
|
|
74
100
|
|
|
75
101
|
AbstractVoice will work without espeak-ng, but voice quality will be significantly better with it:
|
|
@@ -102,32 +128,6 @@ choco install espeak-ng
|
|
|
102
128
|
|
|
103
129
|
**Without espeak-ng:** AbstractVoice will automatically fall back to a simpler TTS model (fast_pitch) that works everywhere but has lower voice quality.
|
|
104
130
|
|
|
105
|
-
### Basic Installation
|
|
106
|
-
|
|
107
|
-
```bash
|
|
108
|
-
# Install from PyPI
|
|
109
|
-
pip install abstractvoice
|
|
110
|
-
|
|
111
|
-
# Or clone the repository
|
|
112
|
-
git clone https://github.com/lpalbou/abstractvoice.git
|
|
113
|
-
cd abstractvoice
|
|
114
|
-
pip install -e .
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
### Development Installation
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
# Install with development dependencies
|
|
121
|
-
pip install "abstractvoice[dev]"
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
### From Requirements File
|
|
125
|
-
|
|
126
|
-
```bash
|
|
127
|
-
# Install all dependencies including the package
|
|
128
|
-
pip install -r requirements.txt
|
|
129
|
-
```
|
|
130
|
-
|
|
131
131
|
## Quick Start
|
|
132
132
|
|
|
133
133
|
### Using AbstractVoice from the Command Line
|
|
@@ -4,11 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "abstractvoice"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "A modular Python library for voice interactions with AI systems"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
11
11
|
license = "MIT"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
12
13
|
authors = [
|
|
13
14
|
{name = "Laurent-Philippe Albou", email = "contact@abstractcore.ai"}
|
|
14
15
|
]
|
|
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
|