File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
plugins/aws/vision_agents/plugins/aws Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3333"""
3434AWS Bedrock Realtime with Nova Sonic support.
3535
36- Supports real-time audio/video streaming and function calling (tool use).
36+ Supports real-time audio streaming and function calling (tool use).
3737"""
3838
3939
4040class Realtime (realtime .Realtime ):
4141 """
42- Realtime on AWS with support for audio/video streaming and function calling (uses AWS Bedrock).
42+ Realtime on AWS with support for audio streaming and function calling (uses AWS Bedrock).
4343
4444 A few things are different about Nova compared to other STS solutions
4545
@@ -165,7 +165,6 @@ def __init__(
165165 sample_rate = 24000 , channels = 1 , format = "s16"
166166 )
167167
168- self ._video_forwarder : Optional [VideoForwarder ] = None
169168 self ._stream_task : Optional [asyncio .Task [Any ]] = None
170169 self ._is_connected = False
171170 self ._message_queue : asyncio .Queue [Dict [str , Any ]] = asyncio .Queue ()
@@ -186,6 +185,7 @@ async def watch_video_track(
186185 track : aiortc .mediastreams .MediaStreamTrack ,
187186 shared_forwarder : Optional [VideoForwarder ] = None ,
188187 ) -> None :
188+ # No video support for now.
189189 return None
190190
191191
You can’t perform that action at this time.
0 commit comments