livekit-plugins-neuphonic 1.0.19__tar.gz → 1.0.20__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.
@@ -166,3 +166,4 @@ node_modules
166
166
 
167
167
  credentials.json
168
168
  pyrightconfig.json
169
+ docs/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-neuphonic
3
- Version: 1.0.19
3
+ Version: 1.0.20
4
4
  Summary: Neuphonic inference plugin for LiveKit Agents
5
5
  Project-URL: Documentation, https://docs.livekit.io
6
6
  Project-URL: Website, https://livekit.io/
@@ -16,12 +16,14 @@ Classifier: Programming Language :: Python :: 3.12
16
16
  Classifier: Topic :: Multimedia :: Sound/Audio
17
17
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
18
  Requires-Python: >=3.9.0
19
- Requires-Dist: livekit-agents>=1.0.19
19
+ Requires-Dist: livekit-agents>=1.0.20
20
20
  Description-Content-Type: text/markdown
21
21
 
22
- # LiveKit Plugins Neuphonic
22
+ # Neuphonic plugin for LiveKit Agents
23
23
 
24
- Agent Framework plugin for voice synthesis with [Neuphonic](https://neuphonic.com) API.
24
+ Support for voice synthesis with [Neuphonic](https://neuphonic.com).
25
+
26
+ See [https://docs.livekit.io/agents/integrations/tts/neuphonic/](https://docs.livekit.io/agents/integrations/tts/neuphonic/) for more information.
25
27
 
26
28
  ## Installation
27
29
 
@@ -0,0 +1,15 @@
1
+ # Neuphonic plugin for LiveKit Agents
2
+
3
+ Support for voice synthesis with [Neuphonic](https://neuphonic.com).
4
+
5
+ See [https://docs.livekit.io/agents/integrations/tts/neuphonic/](https://docs.livekit.io/agents/integrations/tts/neuphonic/) for more information.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install livekit-plugins-neuphonic
11
+ ```
12
+
13
+ ## Pre-requisites
14
+
15
+ You'll need an API key from Neuphonic. It can be set as an environment variable: `NEUPHONIC_API_TOKEN`
@@ -12,6 +12,11 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
+ """Neuphonic plugin for LiveKit Agents
16
+
17
+ See https://docs.livekit.io/agents/integrations/tts/neuphonic/ for more information.
18
+ """
19
+
15
20
  from .tts import TTS, ChunkedStream
16
21
  from .version import __version__
17
22
 
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "1.0.19"
15
+ __version__ = "1.0.20"
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Programming Language :: Python :: 3 :: Only",
22
22
  ]
23
23
  dependencies = [
24
- "livekit-agents>=1.0.19",
24
+ "livekit-agents>=1.0.20",
25
25
  ]
26
26
 
27
27
  [project.urls]
@@ -1,13 +0,0 @@
1
- # LiveKit Plugins Neuphonic
2
-
3
- Agent Framework plugin for voice synthesis with [Neuphonic](https://neuphonic.com) API.
4
-
5
- ## Installation
6
-
7
- ```bash
8
- pip install livekit-plugins-neuphonic
9
- ```
10
-
11
- ## Pre-requisites
12
-
13
- You'll need an API key from Neuphonic. It can be set as an environment variable: `NEUPHONIC_API_TOKEN`