Update examples to use default allow_interruptions, fixes to align examples

This commit is contained in:
Mark Backman
2025-06-19 10:02:16 -04:00
parent b5c0ac5f25
commit 9146def21b
147 changed files with 195 additions and 212 deletions

View File

@@ -107,7 +107,6 @@ async def run_bot(
params: FunctionCallParams,
):
"""Function the bot can call to terminate the call."""
await params.llm.queue_frame(EndTaskFrame(), FrameDirection.UPSTREAM)
tools = [
@@ -211,7 +210,13 @@ async def run_bot(
)
# Create pipeline task
task = PipelineTask(pipeline, params=PipelineParams(allow_interruptions=True))
task = PipelineTask(
pipeline,
params=PipelineParams(
enable_metrics=True,
enable_usage_metrics=True,
),
)
# ------------ RETRY LOGIC VARIABLES ------------
max_retries = 5