Fix Cerebras function calling example

This commit is contained in:
Paul Kompfner
2025-09-02 12:20:40 -04:00
parent d45fbd5455
commit 2dbd17da4d

View File

@@ -72,9 +72,13 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
# sent to the same callback with an additional function_name parameter. # sent to the same callback with an additional function_name parameter.
llm.register_function("get_current_weather", fetch_weather_from_api) llm.register_function("get_current_weather", fetch_weather_from_api)
@llm.event_handler("on_function_calls_started") # Disabling for now, as we end up in an infinite inference loop with the
async def on_function_calls_started(service, function_calls): # model in this example ("let me check on that" ends up at the end of the
await tts.queue_frame(TTSSpeakFrame("Let me check on that.")) # context, which the model erroneously treats as a nudge to call the tool
# again).
# @llm.event_handler("on_function_calls_started")
# async def on_function_calls_started(service, function_calls):
# await tts.queue_frame(TTSSpeakFrame("Let me check on that."))
weather_function = FunctionSchema( weather_function = FunctionSchema(
name="get_current_weather", name="get_current_weather",