Fix append-to-context function call

This commit is contained in:
mattie ruth backman
2025-07-11 14:06:01 -07:00
committed by Mattie Ruth
parent 06c1255abe
commit fad5713ade

View File

@@ -1411,7 +1411,7 @@ class RTVIProcessor(FrameProcessor):
await self._handle_function_call_result(data)
case "append-to-context":
data = RTVIAppendToContextData.model_validate(message.data)
await self._handle_update_context(data, message.id)
await self._handle_update_context(data)
case "raw-audio" | "raw-audio-batch":
await self._handle_audio_buffer(message.data)