videosdk-plugins-azure 0.0.41__tar.gz → 0.0.43__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 videosdk-plugins-azure might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: videosdk-plugins-azure
3
- Version: 0.0.41
3
+ Version: 0.0.43
4
4
  Summary: VideoSDK Agent Framework plugin for azure
5
5
  Author: videosdk
6
6
  License-Expression: Apache-2.0
@@ -17,7 +17,7 @@ Requires-Dist: azure-cognitiveservices-speech>=1.46.0
17
17
  Requires-Dist: azure-core==1.35.0
18
18
  Requires-Dist: azure-identity==1.22.0
19
19
  Requires-Dist: httpx>=0.28.1
20
- Requires-Dist: videosdk-agents>=0.0.41
20
+ Requires-Dist: videosdk-agents>=0.0.43
21
21
  Description-Content-Type: text/markdown
22
22
 
23
23
  # VideoSDK Azure Plugin
@@ -20,7 +20,7 @@ classifiers = [
20
20
  "Topic :: Multimedia :: Video",
21
21
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
22
22
  ]
23
- dependencies = ["videosdk-agents>=0.0.41","azure-cognitiveservices-speech>=1.46.0","azure-ai-voicelive>=1.0.0b1","azure-core==1.35.0",
23
+ dependencies = ["videosdk-agents>=0.0.43","azure-cognitiveservices-speech>=1.46.0","azure-ai-voicelive>=1.0.0b1","azure-core==1.35.0",
24
24
  "azure-identity==1.22.0","httpx>=0.28.1"]
25
25
 
26
26
  [tool.hatch.version]
@@ -0,0 +1,2 @@
1
+ __version__ = "0.0.43"
2
+
@@ -27,7 +27,7 @@ from azure.ai.voicelive.models import (
27
27
  ServerVad,
28
28
  AzureStandardVoice,
29
29
  Modality,
30
- AudioFormat,
30
+ InputAudioFormat,
31
31
  ServerEventType,
32
32
  )
33
33
 
@@ -61,8 +61,8 @@ class AzureVoiceLiveConfig:
61
61
  modalities: List[Modality] = field(
62
62
  default_factory=lambda: [Modality.TEXT, Modality.AUDIO]
63
63
  )
64
- input_audio_format: AudioFormat = AudioFormat.PCM16
65
- output_audio_format: AudioFormat = AudioFormat.PCM16
64
+ input_audio_format: InputAudioFormat = InputAudioFormat.PCM16
65
+ output_audio_format: InputAudioFormat = InputAudioFormat.PCM16
66
66
  turn_detection_threshold: float = 0.5
67
67
  turn_detection_prefix_padding_ms: int = 300
68
68
  turn_detection_silence_duration_ms: int = 500
@@ -1,2 +0,0 @@
1
- __version__ = "0.0.41"
2
-