livekit-plugins-neuphonic 1.2.1__tar.gz → 1.2.3__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.

Potentially problematic release.


This version of livekit-plugins-neuphonic might be problematic. Click here for more details.

@@ -169,4 +169,7 @@ node_modules
169
169
 
170
170
  credentials.json
171
171
  pyrightconfig.json
172
- docs/
172
+ docs/
173
+
174
+ # Database files
175
+ *.db
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-neuphonic
3
- Version: 1.2.1
3
+ Version: 1.2.3
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,7 +16,7 @@ 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.2.1
19
+ Requires-Dist: livekit-agents>=1.2.3
20
20
  Description-Content-Type: text/markdown
21
21
 
22
22
  # Neuphonic plugin for LiveKit Agents
@@ -77,7 +77,7 @@ class TTS(tts.TTS):
77
77
  base_url (str, optional): The base URL for the Neuphonic API. Defaults to "api.neuphonic.com".
78
78
  """ # noqa: E501
79
79
  super().__init__(
80
- capabilities=tts.TTSCapabilities(streaming=True),
80
+ capabilities=tts.TTSCapabilities(streaming=False),
81
81
  sample_rate=sample_rate,
82
82
  num_channels=1,
83
83
  )
@@ -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.2.1"
15
+ __version__ = "1.2.3"
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Programming Language :: Python :: 3 :: Only",
22
22
  ]
23
23
  dependencies = [
24
- "livekit-agents>=1.2.1",
24
+ "livekit-agents>=1.2.3",
25
25
  ]
26
26
 
27
27
  [project.urls]