Skip to content

Commit 3dbfd62

Browse files
Revise agent builder callouts to Google technical style
Drop the rhetorical "Want.../Prefer..." hooks and marketing phrasing, lead with the task/goal, and use direct present-tense imperative. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent c6eff08 commit 3dbfd62

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

content/develop/ai/search-and-query/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Here are the next steps to get you started:
4646
1. Learn how to [create an index]({{< relref "/develop/ai/search-and-query/indexing/" >}}).
4747
1. Learn how to [query your data]({{< relref "/develop/ai/search-and-query/query/" >}}).
4848
1. [Install Redis Insight]({{< relref "/operate/redisinsight" >}}), connect it to your Redis database, and then use [Redis Copilot]({{< relref "/develop/tools/insight" >}}#redis-copilot) to help you learn how to execute complex queries against your own data using simple, plain language prompts.
49-
1. Want working code to start from? Open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template to generate a complete RAG agent built on Redis vector search.
49+
1. Open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template to generate a working RAG agent built on Redis vector search.
5050

5151
{{< alert title="Try it out" >}}
5252
Experiment with Redis Search interactively in the [Redis playground](https://redis.io/try/sandbox) — no installation required.

content/develop/ai/search-and-query/query/vector-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This article gives you a good overview of how to perform vector search queries w
2222
A vector search query on a vector field allows you to find all vectors in a vector space that are close to a given vector. You can query for the k-nearest neighbors or vectors within a given radius.
2323

2424
{{< tip >}}
25-
Want a working example instead of building from scratch? Open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template to generate a complete RAG agent that uses the vector search queries described here.
25+
To generate a complete RAG agent that uses the vector search queries described here, open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template.
2626
{{< /tip >}}
2727

2828
The examples in this article use a schema with the following fields:

content/develop/ai/search-and-query/vectors/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ weight: 8
2222

2323
Redis includes a [high-performance vector database](https://redis.io/blog/benchmarking-results-for-vector-databases/) that lets you perform semantic searches over vector embeddings. You can augment these searches with filtering over text, numerical, geospatial, and tag metadata.
2424

25-
To quickly get started, check out the [Redis vector quickstart guide]({{< relref "develop/get-started/search-tutorial/vector-search" >}}) and the [Redis AI Resources](https://github.com/redis-developer/redis-ai-resources) Github repo. For a ready-to-run example, open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template.
25+
To quickly get started, check out the [Redis vector quickstart guide]({{< relref "develop/get-started/search-tutorial/vector-search" >}}) and the [Redis AI Resources](https://github.com/redis-developer/redis-ai-resources) Github repo. To generate a working example, open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template.
2626

2727
{{< alert title="See vector search in action" >}}
2828
[Redis Repo Memory](https://github.com/marketplace/actions/redis-repo-memory) is a GitHub Action that gives your repository a memory: on every pull request it embeds the change and uses Redis KNN vector search to surface semantically related past PRs, issues, and commits — a concise, real-world example of the concepts on this page. See the [source on GitHub](https://github.com/redis-learn/redis-repo-memory).

content/develop/get-started/rag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RAG enables LLMs to use real-time information, improving the accuracy and releva
3030
Redis is ideal for RAG due to its speed, versatility, and familiarity.
3131

3232
{{< tip >}}
33-
Prefer to start from working code? Open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template — it generates a complete RAG agent with document ingestion, hybrid retrieval, and citations.
33+
To generate a complete RAG agent with document ingestion, hybrid retrieval, and citations, open the [AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) and choose the **Knowledge Assistant** template.
3434
{{< /tip >}}
3535

3636
### The role of Redis in RAG

0 commit comments

Comments
 (0)