From 55d194e35767af1ab8799f3c211803e5d279698e Mon Sep 17 00:00:00 2001 From: Nachiket Date: Tue, 19 May 2026 17:47:01 -0700 Subject: [PATCH] docs: fix helper example links --- helpers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers.md b/helpers.md index b33eec3476..ece4c0d2fc 100644 --- a/helpers.md +++ b/helpers.md @@ -389,7 +389,7 @@ adjusting `maxChatCompletions` in the request options object. Note that `max_tok chat completion request, not for the entire call run. See an example of automated function calls in action in -[`examples/function-call-helpers.ts`](examples/function-call-helpers.ts). +[`examples/tool-call-helpers.ts`](examples/tool-call-helpers.ts). Note, `runFunctions` was also previously available, but has been deprecated in favor of `runTools`. @@ -680,7 +680,7 @@ async function getWeather(args: z.infer) { main(); ``` -See a more fully-fledged example in [`examples/function-call-helpers-zod.ts`](examples/function-call-helpers-zod.ts). +See a more fully-fledged example in [`examples/tool-call-helpers-zod.ts`](examples/tool-call-helpers-zod.ts). #### Integrate with Next.JS