-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[Workers AI] Workers AI glossary #18988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" /> |
| 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. | ||
|
|
||
| - 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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmmm do you mean like the messages array here?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
There was a problem hiding this comment.
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?