Remove 07e anthropic

This commit is contained in:
Mark Backman
2026-03-25 10:34:44 -04:00
parent 9af5c482c6
commit 2872d76896
6 changed files with 4 additions and 147 deletions

View File

@@ -93,7 +93,6 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
params=PipelineParams(
enable_metrics=True,
enable_usage_metrics=True,
audio_out_sample_rate=8000,
),
idle_timeout_secs=runner_args.pipeline_idle_timeout_secs,
)
@@ -103,7 +102,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
logger.info(f"Client connected")
# Kick off the conversation.
context.add_message(
{"role": "user", "content": "Please introduce yourself to the user."}
{"role": "developer", "content": "Please introduce yourself to the user."}
)
await task.queue_frames([LLMRunFrame()])