livekit-plugins-aws 1.2.14__tar.gz → 1.2.16__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.
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/.gitignore +5 -1
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/PKG-INFO +4 -3
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/experimental/realtime/realtime_model.py +7 -1
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/version.py +1 -1
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/pyproject.toml +3 -2
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/README.md +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/__init__.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/experimental/realtime/__init__.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/experimental/realtime/events.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/experimental/realtime/pretty_printer.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/experimental/realtime/turn_tracker.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/llm.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/log.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/models.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/py.typed +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/stt.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/tts.py +0 -0
- {livekit_plugins_aws-1.2.14 → livekit_plugins_aws-1.2.16}/livekit/plugins/aws/utils.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-aws
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.16
|
|
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/
|
|
7
7
|
Project-URL: Source, https://github.com/livekit/agents
|
|
8
8
|
Author-email: LiveKit <hello@livekit.io>
|
|
9
9
|
License-Expression: Apache-2.0
|
|
10
|
-
Keywords: audio,aws,livekit,nova,realtime,sonic,video,
|
|
10
|
+
Keywords: ai,audio,aws,livekit,nova,realtime,sonic,video,voice
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -20,9 +20,10 @@ 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.
|
|
23
|
+
Requires-Dist: livekit-agents>=1.2.16
|
|
24
24
|
Provides-Extra: realtime
|
|
25
25
|
Requires-Dist: aws-sdk-bedrock-runtime==0.0.2; (python_version >= '3.12') and extra == 'realtime'
|
|
26
|
+
Requires-Dist: aws-sdk-signers==0.0.3; (python_version >= '3.12') and extra == 'realtime'
|
|
26
27
|
Requires-Dist: boto3>1.35.10; extra == 'realtime'
|
|
27
28
|
Description-Content-Type: text/markdown
|
|
28
29
|
|
|
@@ -26,6 +26,7 @@ from aws_sdk_bedrock_runtime.models import (
|
|
|
26
26
|
InvokeModelWithBidirectionalStreamInputChunk,
|
|
27
27
|
ModelErrorException,
|
|
28
28
|
ModelNotReadyException,
|
|
29
|
+
ModelStreamErrorException,
|
|
29
30
|
ModelTimeoutException,
|
|
30
31
|
ThrottlingException,
|
|
31
32
|
ValidationException,
|
|
@@ -963,7 +964,12 @@ class RealtimeSession( # noqa: F811
|
|
|
963
964
|
),
|
|
964
965
|
)
|
|
965
966
|
raise
|
|
966
|
-
except (
|
|
967
|
+
except (
|
|
968
|
+
ThrottlingException,
|
|
969
|
+
ModelNotReadyException,
|
|
970
|
+
ModelErrorException,
|
|
971
|
+
ModelStreamErrorException,
|
|
972
|
+
) as re:
|
|
967
973
|
logger.warning(f"Retryable error: {re}\nAttempting to recover...")
|
|
968
974
|
await self._restart_session(re)
|
|
969
975
|
break
|
|
@@ -10,7 +10,7 @@ readme = "README.md"
|
|
|
10
10
|
license = "Apache-2.0"
|
|
11
11
|
requires-python = ">=3.9.0"
|
|
12
12
|
authors = [{ name = "LiveKit", email = "hello@livekit.io" }]
|
|
13
|
-
keywords = ["
|
|
13
|
+
keywords = ["aws", "nova", "sonic", "voice", "ai", "realtime", "audio", "video", "livekit"]
|
|
14
14
|
classifiers = [
|
|
15
15
|
"Intended Audience :: Developers",
|
|
16
16
|
"License :: OSI Approved :: Apache Software License",
|
|
@@ -23,7 +23,7 @@ classifiers = [
|
|
|
23
23
|
"Programming Language :: Python :: 3 :: Only",
|
|
24
24
|
]
|
|
25
25
|
dependencies = [
|
|
26
|
-
"livekit-agents>=1.2.
|
|
26
|
+
"livekit-agents>=1.2.16",
|
|
27
27
|
"aioboto3>=14.1.0",
|
|
28
28
|
"amazon-transcribe>=0.6.4",
|
|
29
29
|
]
|
|
@@ -31,6 +31,7 @@ dependencies = [
|
|
|
31
31
|
[project.optional-dependencies]
|
|
32
32
|
realtime = [
|
|
33
33
|
"aws-sdk-bedrock-runtime==0.0.2; python_version >= '3.12'",
|
|
34
|
+
"aws-sdk-signers==0.0.3; python_version >= '3.12'",
|
|
34
35
|
"boto3>1.35.10",
|
|
35
36
|
]
|
|
36
37
|
|
|
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
|