feat: add pre call fetch configuration

This commit is contained in:
Abhishek Kumar 2026-04-04 19:35:52 +05:30
parent c4c4b591db
commit f1a5aa40d6
26 changed files with 644 additions and 66 deletions

View file

@ -266,6 +266,7 @@ class TestUserMutingDuringBotSpeech:
async def run_test():
await asyncio.sleep(0.01)
await engine.initialize()
await engine.set_node(engine.workflow.start_node_id)
# Trigger first LLM completion
await engine.llm.queue_frame(LLMContextFrame(engine.context))
@ -356,6 +357,7 @@ class TestUserMutingDuringBotSpeech:
async def run_test():
await asyncio.sleep(0.01)
await engine.initialize()
await engine.set_node(engine.workflow.start_node_id)
# Trigger first LLM completion
await engine.llm.queue_frame(LLMContextFrame(engine.context))
@ -451,6 +453,7 @@ class TestUserMutingDuringBotSpeech:
async def run_test():
await asyncio.sleep(0.01)
await engine.initialize()
await engine.set_node(engine.workflow.start_node_id)
# Trigger first LLM completion
await engine.llm.queue_frame(LLMContextFrame(engine.context))