Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/content/docs/workers-ai/glossary.mdx
Original file line number Diff line number Diff line change
@@ -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.

<Glossary product="workers-ai" />
62 changes: 62 additions & 0 deletions src/content/glossary/workers-ai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
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 Cloudflare API.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

via a REST API maybe instead of CF?


- 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmmm do you mean like the messages array here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No I mean the predifined templates here https://developers.cloudflare.com/workers-ai/guides/prompting/

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might want to add other things like KV and D1?


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

- term: Public LoRA Adapters
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you combine this in the LoRA adapters one with an additional link to the public page?

general_definition: |-
[Public LoRA Adapters](https://developers.cloudflare.com/workers-ai/fine-tunes/public-loras/) are pre-trained Low-Rank Adaptation adapters available for public use, enabling developers to fine-tune AI models without extensive computational resources.

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