From d003d746427b5ba74f06a0d8c6b1f83e97e172b7 Mon Sep 17 00:00:00 2001 From: "hyperlint-ai[bot]" <154288675+hyperlint-ai[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 10:19:51 +0000 Subject: [PATCH 1/2] Fix issue: WorkspaceTaskSubType.META_DESCRIPTION --- .../docs/workers-ai/function-calling/embedded/examples/fetch.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/docs/workers-ai/function-calling/embedded/examples/fetch.mdx b/src/content/docs/workers-ai/function-calling/embedded/examples/fetch.mdx index a90a6dc1dbc4f2..29753293f23a81 100644 --- a/src/content/docs/workers-ai/function-calling/embedded/examples/fetch.mdx +++ b/src/content/docs/workers-ai/function-calling/embedded/examples/fetch.mdx @@ -5,6 +5,7 @@ tags: - AI sidebar: order: 4 +description: Learn how to use the fetch() handler in Cloudflare Workers AI to enable LLMs to perform API calls, like retrieving a 5-day weather forecast using function calling. --- From e11123932e9615fa101bc93ec70907f491efede9 Mon Sep 17 00:00:00 2001 From: "hyperlint-ai[bot]" <154288675+hyperlint-ai[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 10:19:52 +0000 Subject: [PATCH 2/2] Fix issue: WorkspaceTaskSubType.META_DESCRIPTION --- .../docs/workers-ai/function-calling/embedded/examples/kv.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers-ai/function-calling/embedded/examples/kv.mdx b/src/content/docs/workers-ai/function-calling/embedded/examples/kv.mdx index af0b96b9d03336..fb9a86f19d0e0b 100644 --- a/src/content/docs/workers-ai/function-calling/embedded/examples/kv.mdx +++ b/src/content/docs/workers-ai/function-calling/embedded/examples/kv.mdx @@ -7,12 +7,12 @@ tags: - AI sidebar: order: 6 +description: Learn how to use Cloudflare Workers AI to interact with KV storage, enabling persistent data handling with embedded function calling in a few lines of code. --- Interact with persistent storage to retrieve or store information enables for powerful use cases. In this example we show how embedded function calling can interact with other resources on the Cloudflare Developer Platform with a few lines of code. - ## Pre-Requisites For this example to work, you need to provision a [KV](/kv/) namespace first. To do so, follow the [KV - Get started ](/kv/get-started/) guide.