Skip to content

Commit 65452cf

Browse files
committed
Remove mentions of video support from aws.Realtime docs
1 parent 1541f8b commit 65452cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/aws/vision_agents/plugins/aws/aws_realtime.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"""
3434
AWS 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

4040
class 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

0 commit comments

Comments
 (0)