We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 186053f commit 7da96dbCopy full SHA for 7da96db
plugins/aws/vision_agents/plugins/aws/aws_realtime.py
@@ -160,7 +160,9 @@ async def connect(self):
160
raise Exception("AWS Bedrock requires system instructions before sending regular user input")
161
await self.content_input(system_instructions, "SYSTEM")
162
163
- async def simple_audio_response(self, pcm: PcmData):
+ async def simple_audio_response(
164
+ self, pcm: PcmData, participant: Optional[Participant] = None
165
+ ):
166
"""Send audio data to the model for processing."""
167
if not self.connected:
168
self.logger.warning("realtime is not active. can't call simple_audio_response")
0 commit comments