Skip to content

Commit 2e7d50d

Browse files
Workers AI glossary (#20030)
* Workers AI glossary * minor fixes * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> * Update src/content/glossary/workers-ai.yaml Co-authored-by: marciocloudflare <[email protected]> --------- Co-authored-by: marciocloudflare <[email protected]>
1 parent 0200225 commit 2e7d50d

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: glossary
3+
pcx_content_type: glossary
4+
sidebar:
5+
order: 19
6+
---
7+
8+
import { Glossary } from "~/components";
9+
10+
Review the definitions for terms used across Cloudflare's Workers AI documentation.
11+
12+
<Glossary product="workers-ai" />
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
productName: Workers AI
3+
entries:
4+
- term: Workers AI
5+
general_definition: |-
6+
[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.
7+
- term: Serverless GPUs
8+
general_definition: |-
9+
[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.
10+
- term: Wrangler CLI
11+
general_definition: |-
12+
[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.
13+
- term: REST API
14+
general_definition: |-
15+
[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.
16+
- term: API Tokens
17+
general_definition: |-
18+
[API Tokens](/workers-ai/get-started/rest-api/) are authentication credentials used to securely access and manage Workers AI resources via the REST API.
19+
- term: Cloudflare Dashboard
20+
general_definition: |-
21+
[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.
22+
- term: Prompt Engineering
23+
general_definition: |-
24+
[Prompt Engineering](/workers-ai/guides/prompting/) is the practice of designing and refining input prompts to effectively elicit desired responses from AI models.
25+
- term: Prompt Templates
26+
general_definition: |-
27+
[Prompt Templates](/workers-ai/guides/prompting/) are predefined structures that guide the input provided to AI models, enhancing consistency and effectiveness in responses.
28+
- term: Worker Bindings
29+
general_definition: |-
30+
[Worker Bindings](/workers-ai/configuration/bindings/) are configurations that connect Workers scripts to external resources, such as AI models, enabling seamless integration and functionality.
31+
- term: Environment Variables
32+
general_definition: |-
33+
[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.
34+
- term: Model Catalog
35+
general_definition: |-
36+
[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.
37+
- term: Fine-Tuning
38+
general_definition: |-
39+
[Fine-Tuning](/workers-ai/fine-tunes/) is a general term for modifying an AI model by continuing to train it with additional data.
40+
- term: LoRA Adapters
41+
general_definition: |-
42+
[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.
43+
- term: Function Calling
44+
general_definition: |-
45+
[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.
46+
- term: AI models
47+
general_definition: |-
48+
[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.
49+
- term: Workers KV
50+
general_definition: |-
51+
[Workers KV](/kv/)is a data storage that allows you to store and retrieve data globally.
52+
- term: D1
53+
general_definition: |-
54+
[D1](/d1/) is Cloudflare's managed, serverless database with SQLite's SQL semantics, built-in disaster recovery, and Worker and HTTP API access.
55+
- term: Inference
56+
general_definition: |-
57+
[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.

0 commit comments

Comments
 (0)