Skip to content

Commit 18d0a49

Browse files
aninibreadToriLindsaykodster28
authored
Apply suggestions from code review
Co-authored-by: ToriLindsay <[email protected]> Co-authored-by: Kody Jackson <[email protected]>
1 parent ef10ff9 commit 18d0a49

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/content/docs/autorag/configuration/system-prompt.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A system prompt is a special instruction sent to a large language model (LLM) th
1717
System prompts are particularly useful for:
1818

1919
- Enforcing specific response formats
20-
- Constraining behavior (e.g., only respond based on provided content)
20+
- Constraining behavior (for example, it only responds based on the provided content)
2121
- Applying domain-specific tone or terminology
2222
- Encouraging consistent, high-quality output
2323

src/content/docs/autorag/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ AutoRAG lets you create fully-managed, retrieval-augmented generation (RAG) pipe
2626

2727
<Plan type="all" />
2828

29+
<Plan type="all" />
30+
2931
You can use AutoRAG to build:
3032

3133
- **Chatbots:** Improve chatbot accuracy by providing relevant up-to-date information.

src/content/docs/autorag/usage/workers-binding.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
Type,
1717
} from "~/components";
1818

19-
Cloudflare’s serverless platform allows you to run code at the edge to build full-stack applications with Workers. A binding enables your Worker or Pages Function to interact with resources on the Cloudflare Developer Platform.
19+
Cloudflare’s serverless platform allows you to run code at the edge to build full-stack applications with [Workers](/workers/). A [binding](/workers/runtime-apis/bindings/) enables your Worker or Pages Function to interact with resources on the Cloudflare Developer Platform.
2020

2121
To use your AutoRAG with Workers or Pages, create an AI binding either in the Cloudflare dashboard (refer to [AI bindings](/pages/functions/bindings/#workers-ai) for instructions), or you can update your [Wrangler file](/workers/wrangler/configuration/). To bind AutoRAG to your Worker, add the following to your Wrangler file:
2222

src/content/docs/reference-architecture/diagrams/ai/ai-rag.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Examples for application of these technique includes for instance customer servi
2727
In the context of Retrieval-Augmented Generation (RAG), knowledge seeding involves incorporating external information from pre-existing sources into the generative process, while querying refers to the mechanism of retrieving relevant knowledge from these sources to inform the generation of coherent and contextually accurate text. Both are shown below.
2828

2929
:::note[Looking for a managed option?]
30-
[AutoRAG](/autorag) offers a fully managed way to build RAG pipelines on Cloudflare, handling ingestion, indexing, and querying out of the box. [Get started](/autorag/get-started/).
30+
[AutoRAG](/autorag) offers a fully managed way to build RAG pipelines on Cloudflare, handling ingestion, indexing, and querying out of the box. [Get started with AutoRAG](/autorag/get-started/).
3131
:::
3232

3333
## Knowledge Seeding

src/content/docs/vectorize/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Learn how to use Vectorize to generate vector embeddings using Workers AI.
5050

5151
</Feature>
5252

53-
<Feature header="Search using Vectorize and AutoRAG" href="/autorag" cta="Build a RAG with Vectorize">
53+
<Feature header="Search using Vectorize and AutoRAG" href="/autorag/" cta="Build a RAG with Vectorize">
5454

5555
Learn how to automatically index your data and store it in Vectorize, then query it to generate context-aware responses using AutoRAG.
5656

src/content/docs/vectorize/reference/what-is-a-vector-database.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ When a user initiates a prompt, instead of passing it (without additional contex
5555
3. These vectors are used to look up the content they relate to (if not embedded directly alongside the vectors as metadata).
5656
4. This content is provided as context alongside the original user prompt, providing additional context to the LLM and allowing it to return an answer that is likely to be far more contextual than the standalone prompt.
5757

58-
Create a RAG today with [AutoRAG](/autorag) to deploy a fully managed RAG pipeline in just a few clicks. It automatically sets up Vectorize, handles continuous indexing, and serves responses through a single API.
58+
Create a RAG today with [AutoRAG](/autorag) to deploy a fully managed RAG pipeline in just a few clicks. AutoRAG automatically sets up Vectorize, handles continuous indexing, and serves responses through a single API.
5959

6060
<sup>1</sup> You can learn more about the theory behind RAG by reading the [RAG
6161
paper](https://arxiv.org/abs/2005.11401).

src/content/products/autorag.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ meta:
1313
author: '@cloudflare'
1414

1515
resources:
16-
community:
17-
dashboard_link:
1816
discord: https://discord.gg/cloudflaredev

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const topCards = [
7272
{
7373
title: "AI Products",
7474
links: [
75-
{ text: "AutoRAG", href: "/autorag" },
75+
{ text: "AutoRAG", href: "/autorag/" },
7676
{ text: "Workers AI", href: "/workers-ai/" },
7777
{ text: "Vectorize", href: "/vectorize/" },
7878
{ text: "AI Gateway", href: "/ai-gateway/" },

0 commit comments

Comments
 (0)