fix: fix transition logic for realtime providers

This commit is contained in:
Abhishek Kumar 2026-07-15 16:45:16 +05:30
parent 348cd8427b
commit 960d183c82
7 changed files with 415 additions and 33 deletions

View file

@ -344,7 +344,11 @@ class PipecatEngine:
)
# Register function with LLM
self.llm.register_function(name, transition_func)
self.llm.register_function(
name,
transition_func,
is_node_transition=True,
)
async def _register_knowledge_base_function(
self, document_uuids: list[str]