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.
@@ -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-azure
3
- Version: 1.0.19
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.19
22
+ Requires-Dist: livekit-agents>=1.0.21
23
23
  Description-Content-Type: text/markdown
24
24
 
25
- # LiveKit Plugins Azure
25
+ # Azure plugin for LiveKit Agents
26
26
 
27
- Agent Framework plugin for services from Azure Cognitive Services. Currently supports STT and TTS.
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.
@@ -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__
@@ -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.21"
@@ -23,7 +23,7 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3 :: Only",
24
24
  ]
25
25
  dependencies = [
26
- "livekit-agents>=1.0.19",
26
+ "livekit-agents>=1.0.21",
27
27
  "azure-cognitiveservices-speech>=1.43.0",
28
28
  ]
29
29
 
@@ -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.