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. --- 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.