Skip to content

[AutoRAG] SEO: RAG application #22209

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

Open
wants to merge 1 commit into
base: production
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion src/content/docs/autorag/configuration/cache.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ The similarity threshold decides how close two prompts need to be to reuse a cac
| Broad | Moderate match, more hits | "What’s the weather like today?" matches with "Tell me today’s weather" |
| Loose | Low similarity, max reuse | "What’s the weather like today?" matches with "Give me the forecast" |

Test these values to see which works best with your application.
Test these values to see which works best with your [RAG application](/autorag/).
2 changes: 1 addition & 1 deletion src/content/docs/autorag/configuration/models.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ If you choose **Smart Default** in your model selection, then AutoRAG will selec

### Per-request generation model override

While the generation model can be set globally at the AutoRAG instance level, you can also override it on a per-request basis in the [AI Search API](/autorag/usage/rest-api/#ai-search). This is useful if your application requires dynamic selection of generation models based on context or user preferences.
While the generation model can be set globally at the AutoRAG instance level, you can also override it on a per-request basis in the [AI Search API](/autorag/usage/rest-api/#ai-search). This is useful if your [RAG application](/autorag/) requires dynamic selection of generation models based on context or user preferences.
4 changes: 2 additions & 2 deletions src/content/docs/autorag/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar:
head:
- tag: title
content: Get started with AutoRAG
Description: Get started creating fully-managed, retrieval-augmented generation pipelines with Cloudflare AutoRAG.
Description: Get started creating fully-managed, retrieval-augmented generation pipelines with Cloudflare AutoRAG.
---

AutoRAG allows developers to create fully managed retrieval-augmented generation (RAG) pipelines to power AI applications with accurate and up-to-date information without needing to manage infrastructure.
Expand Down Expand Up @@ -55,7 +55,7 @@ Once indexing is complete, you can run your first query:

## 5. Add to your application

There are multiple ways you can add AutoRAG to your applications:
There are multiple ways you can create [RAG applications](/autorag/) with Cloudflare AutoRAG:

- [Workers Binding](/autorag/usage/workers-binding/)
- [REST API](/autorag/usage/rest-api/)
6 changes: 3 additions & 3 deletions src/content/docs/autorag/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
pcx_content_type: overview
title: Overview
type: overview
description: Build scalable, fully-managed RAG applications with Cloudflare AutoRAG. Create retrieval-augmented generation pipelines to deliver accurate, context-aware AI without managing infrastructure.
sidebar:
order: 1
head:
Expand All @@ -20,13 +21,12 @@ import {
} from "~/components";

<Description>
Create fully-managed RAG pipelines to power your AI applications with accurate
and up-to-date information.
Create fully-managed RAG applications that continuously update and scale on Cloudflare.
</Description>

<Plan type="all" />

AutoRAG lets you create fully-managed, retrieval-augmented generation (RAG) pipelines that continuously updates and scales on Cloudflare. With AutoRAG, you can integrate context-aware AI into your applications without managing infrastructure.
AutoRAG lets you create retrieval-augmented generation (RAG) pipelines that power your AI applications with accurate and up-to-date information. Create RAG applications that integrate context-aware AI without managing infrastructure.

You can use AutoRAG to build:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ You can view the progress of your indexing job in the Overview page of your Auto

Once AutoRAG finishes indexing your content, you’re ready to start asking it questions. You can open up your AutoRAG instance, navigate to the Playground tab, and ask a question based on your uploaded content, like “What is AutoRAG?”.

Once you’re happy with the results in the Playground, you can integrate AutoRAG directly into the application that you are building. If you are using a Worker to build your application, then you can use the AI binding to directly call your AutoRAG:
Once you’re happy with the results in the Playground, you can integrate AutoRAG directly into the application that you are building. If you are using a Worker to build your [RAG application](/autorag/), then you can use the AI binding to directly call your AutoRAG:

```jsonc
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ When a user initiates a prompt, instead of passing it (without additional contex
3. These vectors are used to look up the content they relate to (if not embedded directly alongside the vectors as metadata).
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.

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.
[Create a RAG application 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.

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