-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Hyperlint Automation: Broken Link Fixes #19857
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 all 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 |
|---|---|---|
|
|
@@ -32,7 +32,7 @@ In the context of Retrieval-Augmented Generation (RAG), knowledge seeding involv | |
| 1. **Client upload**: Send POST request with documents to API endpoint. | ||
| 2. **Input processing**: Process incoming request using [Workers](/workers/) and send messages to [Queues](/queues/) to add processing backlog. | ||
| 3. **Batch processing**: Use [Queues](/queues/) to trigger a [consumer](/queues/reference/how-queues-works/#consumers) that process input documents in batches to prevent downstream overload. | ||
| 4. **Embedding generation**: Generate embedding vectors by calling [Workers AI](/workers-ai/) [text embedding models](/workers-ai/models/#text-embeddings) for the documents. | ||
| 4. **Embedding generation**: Generate embedding vectors by calling [Workers AI](/workers-ai/) [text embedding models](/workers-ai/models/) for the documents. | ||
|
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. This page: http://localhost:1111/reference-architecture/diagrams/ai/ai-rag/ By looking at the page: http://localhost:1111/workers-ai/models/ |
||
| 5. **Vector storage**: Insert the embedding vectors to [Vectorize](/vectorize/). | ||
| 6. **Document storage**: Insert documents to [D1](/d1/) for persistent storage. | ||
| 7. **Ack/Retry mechanism**: Signal success/error by using the [Queues Runtime API](/queues/configuration/javascript-apis/#message) in the consumer for each document. [Queues](/queues/) will schedule retries, if needed. | ||
|
|
@@ -42,13 +42,13 @@ In the context of Retrieval-Augmented Generation (RAG), knowledge seeding involv | |
|  | ||
|
|
||
| 1. **Client query**: Send GET request with query to API endpoint. | ||
| 2. **Embedding generation**: Generate embedding vectors by calling [Workers AI](/workers-ai/) [text embedding models](/workers-ai/models/#text-embeddings) for the incoming query. | ||
| 2. **Embedding generation**: Generate embedding vectors by calling [Workers AI](/workers-ai/) [text embedding models](/workers-ai/models/) for the incoming query. | ||
|
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. This page: http://localhost:1111/reference-architecture/diagrams/ai/ai-rag/ By looking at the page: http://localhost:1111/workers-ai/models/ |
||
| 3. **Vector search**: Query [Vectorize](/vectorize/) using the vector representation of the query to retrieve related vectors. | ||
| 4. **Document lookup**: Retrieve related documents from [D1](/d1/) based on search results from [Vectorize](/vectorize/). | ||
| 5. **Text generation**: Pass both the original query and the retrieved documents as context to [Workers AI](/workers-ai/) [text generation models](/workers-ai/models/#text-generation) to generate a response. | ||
|
|
||
| ## Related resources | ||
|
|
||
| - [Tutorial: Build a RAG AI](/workers-ai/tutorials/build-a-retrieval-augmented-generation-ai/) | ||
| - [Workers AI: Text embedding models](/workers-ai/models/#text-embeddings) | ||
| - [Workers AI: Text embedding models](/workers-ai/models/) | ||
|
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. This page: http://localhost:1111/reference-architecture/diagrams/ai/ai-rag/ By looking at the page: http://localhost:1111/workers-ai/models/ |
||
| - [Workers AI: Text generation models](/workers-ai/models/#text-generation) | ||
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.
This page: http://localhost:1111/reference-architecture/diagrams/ai/ai-asset-creation/
has a broken internal link to: http://localhost:1111/workers-ai/models/.
The fragment
text-classificationdoes not exist.By looking at the page: http://localhost:1111/workers-ai/models/
There was no ideal replacement found and so we removed the header link.