From f8f39a4c6e649a20a6f51b59b1f1a107f502d0d6 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 21 May 2026 14:55:03 -0400 Subject: [PATCH] chore: use low reasoning_effort in Inception function-calling example --- examples/function-calling/function-calling-inception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/function-calling/function-calling-inception.py b/examples/function-calling/function-calling-inception.py index 416e39a25..4655c5b35 100644 --- a/examples/function-calling/function-calling-inception.py +++ b/examples/function-calling/function-calling-inception.py @@ -76,7 +76,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments): llm = InceptionLLMService( api_key=os.environ["INCEPTION_API_KEY"], settings=InceptionLLMService.Settings( - reasoning_effort="instant", + reasoning_effort="low", system_instruction="You are a helpful assistant in a voice conversation. Your responses will be spoken aloud, so avoid emojis, bullet points, or other formatting that can't be spoken. Respond to what the user said in a creative, helpful, and brief way.", ), )