From a100552b37d80ab95424a1d878d88c63eb887a3a Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 17:11:05 +0000 Subject: [PATCH 01/20] Workers AI glossary --- src/content/docs/workers-ai/glossary.mdx | 12 +++++ src/content/glossary/workers-ai.yaml | 57 ++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 src/content/docs/workers-ai/glossary.mdx create mode 100644 src/content/glossary/workers-ai.yaml diff --git a/src/content/docs/workers-ai/glossary.mdx b/src/content/docs/workers-ai/glossary.mdx new file mode 100644 index 000000000000000..667037e0f889a9f --- /dev/null +++ b/src/content/docs/workers-ai/glossary.mdx @@ -0,0 +1,12 @@ +--- +title: Glossary +pcx_content_type: glossary +sidebar: + order: 19 +--- + +import { Glossary } from "~/components"; + +Review the definitions for terms used across Cloudflare's Workers AI documentation. + + diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml new file mode 100644 index 000000000000000..501866c54d2f531 --- /dev/null +++ b/src/content/glossary/workers-ai.yaml @@ -0,0 +1,57 @@ +--- +productName: Workers AI +entries: + - term: Workers AI + general_definition: |- + [Workers AI](https://developers.cloudflare.com/workers-ai/) is a Cloudflare service that enables running machine learning models on Cloudflare's global network, utilizing serverless GPUs. It allows developers to integrate AI capabilities into their applications using Workers, Pages, or via the REST API. + - term: Serverless GPUs + general_definition: |- + [Serverless GPUs](https://developers.cloudflare.com/workers-ai/) are Graphics Processing Units provided by Cloudflare in a serverless environment, enabling scalable and efficient execution of machine learning models without the need for managing underlying hardware. + - term: Wrangler CLI + general_definition: |- + [Wrangler CLI](https://developers.cloudflare.com/workers-ai/get-started/workers-wrangler/) is a command-line tool for building and deploying Cloudflare Workers, facilitating the integration of AI models into applications. + - term: REST API + general_definition: |- + [REST API](https://developers.cloudflare.com/workers-ai/get-started/rest-api/) is an application programming interface that allows developers to interact with Workers AI services over HTTP, enabling model management and inference requests. + - term: API Tokens + general_definition: |- + [API Tokens](https://developers.cloudflare.com/workers-ai/get-started/rest-api/) are authentication credentials used to securely access and manage Workers AI resources via the REST API. + - term: Cloudflare Dashboard + general_definition: |- + [Cloudflare Dashboard](https://developers.cloudflare.com/workers-ai/get-started/dashboard/) is a web-based interface that allows users to manage Workers AI services, including model deployment and monitoring. + - term: Prompt Engineering + general_definition: |- + [Prompt Engineering](https://developers.cloudflare.com/workers-ai/guides/prompting/) is the practice of designing and refining input prompts to effectively elicit desired responses from AI models. + - term: Prompt Templates + general_definition: |- + [Prompt Templates](https://developers.cloudflare.com/workers-ai/guides/prompting/) are predefined structures that guide the input provided to AI models, enhancing consistency and effectiveness in responses. + - term: Worker Bindings + general_definition: |- + [Worker Bindings](https://developers.cloudflare.com/workers-ai/configuration/bindings/) are configurations that connect Workers scripts to external resources, such as AI models, enabling seamless integration and functionality. + - term: Environment Variables + general_definition: |- + [Environment Variables](https://developers.cloudflare.com/workers-ai/configuration/bindings/) are dynamic values that can be used within Workers to manage configuration settings, including those related to AI integrations. + - term: Model Catalog + general_definition: |- + [Model Catalog](https://developers.cloudflare.com/workers-ai/models/) is a curated collection of AI models available within Workers AI, providing developers with a variety of pre-trained models for different tasks. + - term: Fine-Tuning + general_definition: |- + [Fine-Tuning](https://developers.cloudflare.com/workers-ai/fine-tunes/) is a general term for modifying an AI model by continuing to train it with additional data. + - term: LoRA Adapters + general_definition: |- + [LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/loras/) (Low-Rank Adaptation adapters) are used in machine learning to fine-tune models efficiently by adjusting a small number of parameters, allowing for customization of AI models in Workers AI.[Public LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/) are pre-trained Low-Rank Adaptation adapters available for public use. + - term: Function Calling + general_definition: |- + [Function Calling](https://developers.cloudflare.com/workers-ai/function-calling/)enables people to take Large Language Models (LLMs) and use the model response to execute functions or interact with external APIs. + - term: AI models + general_definition: |- + [An AI model](https://developers.cloudflare.com/workers-ai/models) is a trained system that processes input data to generate predictions, decisions, or outputs based on patterns it has learned. + - term: Workers KV + general_definition: |- + [Workers KV](https://developers.cloudflare.com/kv/)is a data storage that allows you to store and retrieve data globally. + - term: D1 + general_definition: |- + [D1](https://developers.cloudflare.com/d1/) is Cloudflare's managed, serverless database with SQLite's SQL semantics, built-in disaster recovery, and Worker and HTTP API access. + - term: Inference + general_definition: |- + [Inference](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/#running-inference-with-public-loras) refers to the process of using a trained machine learning model to make predictions or generate outputs based on new data. From 24e576ba7e9a413030dd469a19efcebbc7636f0a Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 17:45:49 +0000 Subject: [PATCH 02/20] minor fixes --- src/content/docs/workers-ai/glossary.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers-ai/glossary.mdx b/src/content/docs/workers-ai/glossary.mdx index 667037e0f889a9f..91459ca5ea2d147 100644 --- a/src/content/docs/workers-ai/glossary.mdx +++ b/src/content/docs/workers-ai/glossary.mdx @@ -1,5 +1,5 @@ --- -title: Glossary +title: glossary pcx_content_type: glossary sidebar: order: 19 From 6f0244733af8d4c7431ff3f7a6850c20cff739af Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:41:09 +0000 Subject: [PATCH 03/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 501866c54d2f531..62cfba93b1941b9 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -3,7 +3,7 @@ productName: Workers AI entries: - term: Workers AI general_definition: |- - [Workers AI](https://developers.cloudflare.com/workers-ai/) is a Cloudflare service that enables running machine learning models on Cloudflare's global network, utilizing serverless GPUs. It allows developers to integrate AI capabilities into their applications using Workers, Pages, or via the REST API. + [Workers AI](/workers-ai/) is a Cloudflare service that enables running machine learning models on Cloudflare's global network, utilizing serverless GPUs. It allows developers to integrate AI capabilities into their applications using Workers, Pages, or via the REST API. - term: Serverless GPUs general_definition: |- [Serverless GPUs](https://developers.cloudflare.com/workers-ai/) are Graphics Processing Units provided by Cloudflare in a serverless environment, enabling scalable and efficient execution of machine learning models without the need for managing underlying hardware. From 252cea423eb239a7ab675b22ef30ba91b95e160c Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:41:26 +0000 Subject: [PATCH 04/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 62cfba93b1941b9..40096bd33ef2c16 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -6,7 +6,7 @@ entries: [Workers AI](/workers-ai/) is a Cloudflare service that enables running machine learning models on Cloudflare's global network, utilizing serverless GPUs. It allows developers to integrate AI capabilities into their applications using Workers, Pages, or via the REST API. - term: Serverless GPUs general_definition: |- - [Serverless GPUs](https://developers.cloudflare.com/workers-ai/) are Graphics Processing Units provided by Cloudflare in a serverless environment, enabling scalable and efficient execution of machine learning models without the need for managing underlying hardware. + [Serverless GPUs](/workers-ai/) are graphics processing units provided by Cloudflare in a serverless environment, enabling scalable and efficient execution of machine learning models without the need for managing underlying hardware. - term: Wrangler CLI general_definition: |- [Wrangler CLI](https://developers.cloudflare.com/workers-ai/get-started/workers-wrangler/) is a command-line tool for building and deploying Cloudflare Workers, facilitating the integration of AI models into applications. From eeab378e18a0cab4097d34dc0dfba954edeef8f6 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:41:33 +0000 Subject: [PATCH 05/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 40096bd33ef2c16..cc1cbdb6e0bc029 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -12,7 +12,7 @@ entries: [Wrangler CLI](https://developers.cloudflare.com/workers-ai/get-started/workers-wrangler/) is a command-line tool for building and deploying Cloudflare Workers, facilitating the integration of AI models into applications. - term: REST API general_definition: |- - [REST API](https://developers.cloudflare.com/workers-ai/get-started/rest-api/) is an application programming interface that allows developers to interact with Workers AI services over HTTP, enabling model management and inference requests. + [REST API](/workers-ai/get-started/rest-api/) is an application programming interface that allows developers to interact with Workers AI services over HTTP, enabling model management and inference requests. - term: API Tokens general_definition: |- [API Tokens](https://developers.cloudflare.com/workers-ai/get-started/rest-api/) are authentication credentials used to securely access and manage Workers AI resources via the REST API. From 285bc9ea7ccd140392d046604151d835741b266f Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:41:40 +0000 Subject: [PATCH 06/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index cc1cbdb6e0bc029..3b3c38f550e1d8c 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -9,7 +9,7 @@ entries: [Serverless GPUs](/workers-ai/) are graphics processing units provided by Cloudflare in a serverless environment, enabling scalable and efficient execution of machine learning models without the need for managing underlying hardware. - term: Wrangler CLI general_definition: |- - [Wrangler CLI](https://developers.cloudflare.com/workers-ai/get-started/workers-wrangler/) is a command-line tool for building and deploying Cloudflare Workers, facilitating the integration of AI models into applications. + [Wrangler CLI](/workers-ai/get-started/workers-wrangler/) is a command-line tool for building and deploying Cloudflare Workers, facilitating the integration of AI models into applications. - term: REST API general_definition: |- [REST API](/workers-ai/get-started/rest-api/) is an application programming interface that allows developers to interact with Workers AI services over HTTP, enabling model management and inference requests. From ae8798627f232de6ad82f733efcdabc23f6ad269 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:41:48 +0000 Subject: [PATCH 07/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 3b3c38f550e1d8c..d87f1d6f1ff36ae 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -15,7 +15,7 @@ entries: [REST API](/workers-ai/get-started/rest-api/) is an application programming interface that allows developers to interact with Workers AI services over HTTP, enabling model management and inference requests. - term: API Tokens general_definition: |- - [API Tokens](https://developers.cloudflare.com/workers-ai/get-started/rest-api/) are authentication credentials used to securely access and manage Workers AI resources via the REST API. + [API Tokens](/workers-ai/get-started/rest-api/) are authentication credentials used to securely access and manage Workers AI resources via the REST API. - term: Cloudflare Dashboard general_definition: |- [Cloudflare Dashboard](https://developers.cloudflare.com/workers-ai/get-started/dashboard/) is a web-based interface that allows users to manage Workers AI services, including model deployment and monitoring. From 54a7fa45cab1ec63142755130227f2e698bd195e Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:41:56 +0000 Subject: [PATCH 08/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index d87f1d6f1ff36ae..b136e36bc4c692a 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -42,7 +42,7 @@ entries: [LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/loras/) (Low-Rank Adaptation adapters) are used in machine learning to fine-tune models efficiently by adjusting a small number of parameters, allowing for customization of AI models in Workers AI.[Public LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/) are pre-trained Low-Rank Adaptation adapters available for public use. - term: Function Calling general_definition: |- - [Function Calling](https://developers.cloudflare.com/workers-ai/function-calling/)enables people to take Large Language Models (LLMs) and use the model response to execute functions or interact with external APIs. + [Function Calling](/workers-ai/function-calling/) enables people to take Large Language Models (LLMs) and use the model response to execute functions or interact with external APIs. - term: AI models general_definition: |- [An AI model](https://developers.cloudflare.com/workers-ai/models) is a trained system that processes input data to generate predictions, decisions, or outputs based on patterns it has learned. From ba5fc4baca4f09943190d21dc84b20d62e164198 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:42:05 +0000 Subject: [PATCH 09/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index b136e36bc4c692a..707491447343eec 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -45,7 +45,7 @@ entries: [Function Calling](/workers-ai/function-calling/) enables people to take Large Language Models (LLMs) and use the model response to execute functions or interact with external APIs. - term: AI models general_definition: |- - [An AI model](https://developers.cloudflare.com/workers-ai/models) is a trained system that processes input data to generate predictions, decisions, or outputs based on patterns it has learned. + [An AI model](/workers-ai/models) is a trained system that processes input data to generate predictions, decisions, or outputs based on patterns it has learned. - term: Workers KV general_definition: |- [Workers KV](https://developers.cloudflare.com/kv/)is a data storage that allows you to store and retrieve data globally. From 6d5f3743c8d1c92ffbdb699b012a0082feb5af28 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:42:18 +0000 Subject: [PATCH 10/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 707491447343eec..0e631755ab04953 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -48,7 +48,7 @@ entries: [An AI model](/workers-ai/models) is a trained system that processes input data to generate predictions, decisions, or outputs based on patterns it has learned. - term: Workers KV general_definition: |- - [Workers KV](https://developers.cloudflare.com/kv/)is a data storage that allows you to store and retrieve data globally. + [Workers KV](/kv/)is a data storage that allows you to store and retrieve data globally. - term: D1 general_definition: |- [D1](https://developers.cloudflare.com/d1/) is Cloudflare's managed, serverless database with SQLite's SQL semantics, built-in disaster recovery, and Worker and HTTP API access. From f9e3503affd025a45ce174e4f98dad10e7aa9d79 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:42:26 +0000 Subject: [PATCH 11/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 0e631755ab04953..b15f8e7c186339f 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -51,7 +51,7 @@ entries: [Workers KV](/kv/)is a data storage that allows you to store and retrieve data globally. - term: D1 general_definition: |- - [D1](https://developers.cloudflare.com/d1/) is Cloudflare's managed, serverless database with SQLite's SQL semantics, built-in disaster recovery, and Worker and HTTP API access. + [D1](/d1/) is Cloudflare's managed, serverless database with SQLite's SQL semantics, built-in disaster recovery, and Worker and HTTP API access. - term: Inference general_definition: |- [Inference](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/#running-inference-with-public-loras) refers to the process of using a trained machine learning model to make predictions or generate outputs based on new data. From e7a0536ebea117fb4504c4979e41e8558f2329ac Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:42:39 +0000 Subject: [PATCH 12/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index b15f8e7c186339f..82a332ec94b9582 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -54,4 +54,4 @@ entries: [D1](/d1/) is Cloudflare's managed, serverless database with SQLite's SQL semantics, built-in disaster recovery, and Worker and HTTP API access. - term: Inference general_definition: |- - [Inference](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/#running-inference-with-public-loras) refers to the process of using a trained machine learning model to make predictions or generate outputs based on new data. + [Inference](/workers-ai/fine-tunes/public-loras/#running-inference-with-public-loras) refers to the process of using a trained machine learning model to make predictions or generate outputs based on new data. From 596b6c49b2c96b74b3e29917601597bc8388a8e9 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:42:56 +0000 Subject: [PATCH 13/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 82a332ec94b9582..7dadc7539ed1ac4 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -18,7 +18,7 @@ entries: [API Tokens](/workers-ai/get-started/rest-api/) are authentication credentials used to securely access and manage Workers AI resources via the REST API. - term: Cloudflare Dashboard general_definition: |- - [Cloudflare Dashboard](https://developers.cloudflare.com/workers-ai/get-started/dashboard/) is a web-based interface that allows users to manage Workers AI services, including model deployment and monitoring. + [Cloudflare Dashboard](/workers-ai/get-started/dashboard/) is a web-based interface that allows users to manage Workers AI services, including model deployment and monitoring. - term: Prompt Engineering general_definition: |- [Prompt Engineering](https://developers.cloudflare.com/workers-ai/guides/prompting/) is the practice of designing and refining input prompts to effectively elicit desired responses from AI models. From d5213f42c3666a7329db3792792ea364b82ab325 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:03 +0000 Subject: [PATCH 14/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 7dadc7539ed1ac4..a173604e593a43e 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -24,7 +24,7 @@ entries: [Prompt Engineering](https://developers.cloudflare.com/workers-ai/guides/prompting/) is the practice of designing and refining input prompts to effectively elicit desired responses from AI models. - term: Prompt Templates general_definition: |- - [Prompt Templates](https://developers.cloudflare.com/workers-ai/guides/prompting/) are predefined structures that guide the input provided to AI models, enhancing consistency and effectiveness in responses. + [Prompt Templates](/workers-ai/guides/prompting/) are predefined structures that guide the input provided to AI models, enhancing consistency and effectiveness in responses. - term: Worker Bindings general_definition: |- [Worker Bindings](https://developers.cloudflare.com/workers-ai/configuration/bindings/) are configurations that connect Workers scripts to external resources, such as AI models, enabling seamless integration and functionality. From 9a1147e7aac58a0e90f3680654508e0c8117ee89 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:14 +0000 Subject: [PATCH 15/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index a173604e593a43e..b783f4b6bdb0991 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -30,7 +30,7 @@ entries: [Worker Bindings](https://developers.cloudflare.com/workers-ai/configuration/bindings/) are configurations that connect Workers scripts to external resources, such as AI models, enabling seamless integration and functionality. - term: Environment Variables general_definition: |- - [Environment Variables](https://developers.cloudflare.com/workers-ai/configuration/bindings/) are dynamic values that can be used within Workers to manage configuration settings, including those related to AI integrations. + [Environment Variables](/workers-ai/configuration/bindings/) are dynamic values that can be used within Workers to manage configuration settings, including those related to AI integrations. - term: Model Catalog general_definition: |- [Model Catalog](https://developers.cloudflare.com/workers-ai/models/) is a curated collection of AI models available within Workers AI, providing developers with a variety of pre-trained models for different tasks. From 8a1c37da6001f3250e6d02f506d6eb68ef9046ca Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:23 +0000 Subject: [PATCH 16/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index b783f4b6bdb0991..d1392afb2b8075a 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -39,7 +39,7 @@ entries: [Fine-Tuning](https://developers.cloudflare.com/workers-ai/fine-tunes/) is a general term for modifying an AI model by continuing to train it with additional data. - term: LoRA Adapters general_definition: |- - [LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/loras/) (Low-Rank Adaptation adapters) are used in machine learning to fine-tune models efficiently by adjusting a small number of parameters, allowing for customization of AI models in Workers AI.[Public LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/) are pre-trained Low-Rank Adaptation adapters available for public use. + [LoRA Adapters](/workers-ai/fine-tunes/loras/) (Low-Rank Adaptation adapters) are used in machine learning to fine-tune models efficiently by adjusting a small number of parameters, allowing for customization of AI models in Workers AI.[Public LoRA Adapters](/workers-ai/fine-tunes/public-loras/) are pre-trained Low-Rank Adaptation adapters available for public use. - term: Function Calling general_definition: |- [Function Calling](/workers-ai/function-calling/) enables people to take Large Language Models (LLMs) and use the model response to execute functions or interact with external APIs. From 4ff44a43734d06c1372105ccabb811f06497060f Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:30 +0000 Subject: [PATCH 17/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index d1392afb2b8075a..d5fcb4b2101550b 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -36,7 +36,7 @@ entries: [Model Catalog](https://developers.cloudflare.com/workers-ai/models/) is a curated collection of AI models available within Workers AI, providing developers with a variety of pre-trained models for different tasks. - term: Fine-Tuning general_definition: |- - [Fine-Tuning](https://developers.cloudflare.com/workers-ai/fine-tunes/) is a general term for modifying an AI model by continuing to train it with additional data. + [Fine-Tuning](/workers-ai/fine-tunes/) is a general term for modifying an AI model by continuing to train it with additional data. - term: LoRA Adapters general_definition: |- [LoRA Adapters](/workers-ai/fine-tunes/loras/) (Low-Rank Adaptation adapters) are used in machine learning to fine-tune models efficiently by adjusting a small number of parameters, allowing for customization of AI models in Workers AI.[Public LoRA Adapters](/workers-ai/fine-tunes/public-loras/) are pre-trained Low-Rank Adaptation adapters available for public use. From 980059a5b27d0992c54c01c8e8054564ff6a10a1 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:37 +0000 Subject: [PATCH 18/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index d5fcb4b2101550b..e34650913722681 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -21,7 +21,7 @@ entries: [Cloudflare Dashboard](/workers-ai/get-started/dashboard/) is a web-based interface that allows users to manage Workers AI services, including model deployment and monitoring. - term: Prompt Engineering general_definition: |- - [Prompt Engineering](https://developers.cloudflare.com/workers-ai/guides/prompting/) is the practice of designing and refining input prompts to effectively elicit desired responses from AI models. + [Prompt Engineering](/workers-ai/guides/prompting/) is the practice of designing and refining input prompts to effectively elicit desired responses from AI models. - term: Prompt Templates general_definition: |- [Prompt Templates](/workers-ai/guides/prompting/) are predefined structures that guide the input provided to AI models, enhancing consistency and effectiveness in responses. From bc8c42ab6d8dc5b4a13d71f6e73840cf2506733c Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:43 +0000 Subject: [PATCH 19/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index e34650913722681..709c003f5eb53b0 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -27,7 +27,7 @@ entries: [Prompt Templates](/workers-ai/guides/prompting/) are predefined structures that guide the input provided to AI models, enhancing consistency and effectiveness in responses. - term: Worker Bindings general_definition: |- - [Worker Bindings](https://developers.cloudflare.com/workers-ai/configuration/bindings/) are configurations that connect Workers scripts to external resources, such as AI models, enabling seamless integration and functionality. + [Worker Bindings](/workers-ai/configuration/bindings/) are configurations that connect Workers scripts to external resources, such as AI models, enabling seamless integration and functionality. - term: Environment Variables general_definition: |- [Environment Variables](/workers-ai/configuration/bindings/) are dynamic values that can be used within Workers to manage configuration settings, including those related to AI integrations. From 2dca203ede971f05b79a2563afdbb3ff3e14e292 Mon Sep 17 00:00:00 2001 From: daisyfaithauma Date: Mon, 17 Feb 2025 23:43:51 +0000 Subject: [PATCH 20/20] Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <83226960+marciocloudflare@users.noreply.github.com> --- src/content/glossary/workers-ai.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/glossary/workers-ai.yaml b/src/content/glossary/workers-ai.yaml index 709c003f5eb53b0..69f93d77264db2b 100644 --- a/src/content/glossary/workers-ai.yaml +++ b/src/content/glossary/workers-ai.yaml @@ -33,7 +33,7 @@ entries: [Environment Variables](/workers-ai/configuration/bindings/) are dynamic values that can be used within Workers to manage configuration settings, including those related to AI integrations. - term: Model Catalog general_definition: |- - [Model Catalog](https://developers.cloudflare.com/workers-ai/models/) is a curated collection of AI models available within Workers AI, providing developers with a variety of pre-trained models for different tasks. + [Model Catalog](/workers-ai/models/) is a curated collection of AI models available within Workers AI, providing developers with a variety of pre-trained models for different tasks. - term: Fine-Tuning general_definition: |- [Fine-Tuning](/workers-ai/fine-tunes/) is a general term for modifying an AI model by continuing to train it with additional data.