From 4ae045d704656ed97b71e81d5e8563120154f43e Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Wed, 2 Jul 2025 19:53:48 -0700 Subject: [PATCH] Add docs deprecation for handle_function_call_start --- src/pipecat/processors/frameworks/rtvi.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pipecat/processors/frameworks/rtvi.py b/src/pipecat/processors/frameworks/rtvi.py index 7c03561a9..06784d0df 100644 --- a/src/pipecat/processors/frameworks/rtvi.py +++ b/src/pipecat/processors/frameworks/rtvi.py @@ -1005,6 +1005,10 @@ class RTVIProcessor(FrameProcessor): ): """Handle the start of a function call from the LLM. + .. deprecated:: 0.0.66 + This method is deprecated and will be removed in a future version. + Use `RTVIProcessor.handle_function_call()` instead. + Args: function_name: Name of the function being called. llm: The LLM processor making the call.