livekit-plugins-azure 1.0.19__tar.gz → 1.0.21__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.
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/.gitignore +1 -0
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/PKG-INFO +6 -4
- livekit_plugins_azure-1.0.21/README.md +15 -0
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/__init__.py +7 -0
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/version.py +1 -1
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/pyproject.toml +1 -1
- livekit_plugins_azure-1.0.19/README.md +0 -13
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/log.py +0 -0
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/py.typed +0 -0
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/stt.py +0 -0
- {livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/tts.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: livekit-plugins-azure
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.21
|
4
4
|
Summary: Agent Framework plugin for services from Azure
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
6
6
|
Project-URL: Website, https://livekit.io/
|
@@ -19,12 +19,14 @@ Classifier: Topic :: Multimedia :: Video
|
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
20
20
|
Requires-Python: >=3.9.0
|
21
21
|
Requires-Dist: azure-cognitiveservices-speech>=1.43.0
|
22
|
-
Requires-Dist: livekit-agents>=1.0.
|
22
|
+
Requires-Dist: livekit-agents>=1.0.21
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
|
25
|
-
# LiveKit
|
25
|
+
# Azure plugin for LiveKit Agents
|
26
26
|
|
27
|
-
|
27
|
+
Support for Azure AI including Azure Speech. For Azure OpenAI, see the [OpenAI plugin](https://github.com/livekit/agents/tree/main/livekit-plugins/livekit-plugins-openai).
|
28
|
+
|
29
|
+
See [https://docs.livekit.io/agents/integrations/azure/](https://docs.livekit.io/agents/integrations/azure/) for more information.
|
28
30
|
|
29
31
|
## Installation
|
30
32
|
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Azure plugin for LiveKit Agents
|
2
|
+
|
3
|
+
Support for Azure AI including Azure Speech. For Azure OpenAI, see the [OpenAI plugin](https://github.com/livekit/agents/tree/main/livekit-plugins/livekit-plugins-openai).
|
4
|
+
|
5
|
+
See [https://docs.livekit.io/agents/integrations/azure/](https://docs.livekit.io/agents/integrations/azure/) for more information.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
```bash
|
10
|
+
pip install livekit-plugins-azure
|
11
|
+
```
|
12
|
+
|
13
|
+
## Pre-requisites
|
14
|
+
|
15
|
+
You'll need to specify an Azure Speech Key and a Deployment Region. They can be set as environment variables: `AZURE_SPEECH_KEY` and `AZURE_SPEECH_REGION`, respectively.
|
{livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/__init__.py
RENAMED
@@ -10,6 +10,13 @@
|
|
10
10
|
# See the License for the specific language governing permissions and
|
11
11
|
# limitations under the License.
|
12
12
|
|
13
|
+
"""Azure plugin for LiveKit Agents
|
14
|
+
|
15
|
+
Support for Azure AI including Azure Speech. For Azure OpenAI, see the [OpenAI plugin](https://github.com/livekit/agents/tree/main/livekit-plugins/livekit-plugins-openai).
|
16
|
+
|
17
|
+
See https://docs.livekit.io/agents/integrations/azure/ for more information.
|
18
|
+
"""
|
19
|
+
|
13
20
|
from .stt import STT, SpeechStream
|
14
21
|
from .tts import TTS
|
15
22
|
from .version import __version__
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# LiveKit Plugins Azure
|
2
|
-
|
3
|
-
Agent Framework plugin for services from Azure Cognitive Services. Currently supports STT and TTS.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
```bash
|
8
|
-
pip install livekit-plugins-azure
|
9
|
-
```
|
10
|
-
|
11
|
-
## Pre-requisites
|
12
|
-
|
13
|
-
You'll need to specify an Azure Speech Key and a Deployment Region. They can be set as environment variables: `AZURE_SPEECH_KEY` and `AZURE_SPEECH_REGION`, respectively.
|
File without changes
|
{livekit_plugins_azure-1.0.19 → livekit_plugins_azure-1.0.21}/livekit/plugins/azure/py.typed
RENAMED
File without changes
|
File without changes
|
File without changes
|