livekit-plugins-aws 1.2.6__tar.gz → 1.2.8__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-aws might be problematic. Click here for more details.

Files changed (18) hide show
  1. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/PKG-INFO +2 -2
  2. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/tts.py +4 -3
  3. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/version.py +1 -1
  4. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/pyproject.toml +1 -1
  5. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/.gitignore +0 -0
  6. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/README.md +0 -0
  7. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/__init__.py +0 -0
  8. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/experimental/realtime/__init__.py +0 -0
  9. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/experimental/realtime/events.py +0 -0
  10. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/experimental/realtime/pretty_printer.py +0 -0
  11. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/experimental/realtime/realtime_model.py +0 -0
  12. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/experimental/realtime/turn_tracker.py +0 -0
  13. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/llm.py +0 -0
  14. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/log.py +0 -0
  15. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/models.py +0 -0
  16. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/py.typed +0 -0
  17. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/stt.py +0 -0
  18. {livekit_plugins_aws-1.2.6 → livekit_plugins_aws-1.2.8}/livekit/plugins/aws/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-aws
3
- Version: 1.2.6
3
+ Version: 1.2.8
4
4
  Summary: LiveKit Agents Plugin for services from AWS
5
5
  Project-URL: Documentation, https://docs.livekit.io
6
6
  Project-URL: Website, https://livekit.io/
@@ -20,7 +20,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
20
  Requires-Python: >=3.9.0
21
21
  Requires-Dist: aioboto3>=14.1.0
22
22
  Requires-Dist: amazon-transcribe>=0.6.4
23
- Requires-Dist: livekit-agents>=1.2.6
23
+ Requires-Dist: livekit-agents>=1.2.8
24
24
  Provides-Extra: realtime
25
25
  Requires-Dist: aws-sdk-bedrock-runtime==0.0.2; (python_version >= '3.12') and extra == 'realtime'
26
26
  Requires-Dist: boto3>1.35.10; extra == 'realtime'
@@ -74,10 +74,11 @@ class TTS(tts.TTS):
74
74
  See https://docs.aws.amazon.com/polly/latest/dg/API_SynthesizeSpeech.html for more details on the the AWS Polly TTS.
75
75
 
76
76
  Args:
77
- Voice (TTSModels, optional): Voice ID to use for the synthesis. Defaults to "Ruth".
78
- language (TTS_LANGUAGE, optional): language code for the Synthesize Speech request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN).
77
+ voice (TTSModels, optional): Voice ID to use for the synthesis. Defaults to "Ruth".
78
+ language (TTSLanguages, optional): language code for the Synthesize Speech request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN).
79
+ speech_engine(TTSSpeechEngine, optional): The engine to use for the synthesis. Defaults to "generative".
80
+ text_type(TTSTextType, optional): Type of text to synthesize. Use "ssml" for SSML-enhanced text. Defaults to "text".
79
81
  sample_rate(int, optional): The audio frequency specified in Hz. Defaults to 16000.
80
- speech_engine(TTS_SPEECH_ENGINE, optional): The engine to use for the synthesis. Defaults to "generative".
81
82
  region(str, optional): The region to use for the synthesis. Defaults to "us-east-1".
82
83
  api_key(str, optional): AWS access key id.
83
84
  api_secret(str, optional): AWS secret access key.
@@ -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.6"
15
+ __version__ = "1.2.8"
@@ -23,7 +23,7 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3 :: Only",
24
24
  ]
25
25
  dependencies = [
26
- "livekit-agents>=1.2.6",
26
+ "livekit-agents>=1.2.8",
27
27
  "aioboto3>=14.1.0",
28
28
  "amazon-transcribe>=0.6.4",
29
29
  ]