You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add tutorials, blog posts, and video links to AI index and video collection
Update the Redis for AI index with context engine how-tos, tutorial links for agent memory and Redis Iris, blog posts on agents and context engineering, and video collection updates for agent memory and vector search content.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: content/develop/ai/_index.md
+35-6Lines changed: 35 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ categories:
6
6
- operate
7
7
- rs
8
8
- rc
9
-
description: An overview of Redis for AI and search documentation
9
+
description: An overview of Redis for AI and search documentation, including vector search, AI agents, and the Context Engine (Redis Iris) managed services.
10
10
linkTitle: Redis for AI and search
11
11
weight: 40
12
12
hideListLinks: true
@@ -29,11 +29,11 @@ AI agents are autonomous systems that combine LLMs with memory, tools, and plann
29
29
30
30
-[AI agent builder]({{< relref "/develop/ai/agent-builder" >}}) — Use the interactive code generator to create a working agent in your preferred language with your choice of LLM.
31
31
-[How agents work]({{< relref "/develop/ai/agent-builder/agent-concepts" >}}) — Learn the agent processing cycle, memory architecture, and why Redis is the foundation for production agents.
32
-
-[Redis Context Engine]({{< relref "/develop/ai/context-engine" >}}) — The managed service suite that gives agents what they need: semantic caching, persistent memory, structured data access, and live data integration.
32
+
-[Context Engine]({{< relref "/develop/ai/context-engine" >}}) — The managed service suite that gives agents what they need: semantic caching, persistent memory, structured data access, and live data integration.
33
33
34
34
### Context Engine services
35
35
36
-
The [Redis Context Engine]({{< relref "/develop/ai/context-engine" >}}) (Redis Iris) includes four fully-managed services available on Redis Cloud:
36
+
The [Context Engine]({{< relref "/develop/ai/context-engine" >}}) (Redis Iris) includes four fully-managed services available on Redis Cloud:
37
37
38
38
-[LangCache]({{< relref "/develop/ai/context-engine/langcache" >}}) — Semantic caching that reduces LLM API costs and improves response times by reusing cached responses for similar queries.
39
39
-[Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory" >}}) — Two-tier persistent memory (session and long-term) for agents, available as a REST API and Python SDK.
@@ -49,6 +49,8 @@ The [Redis Context Engine]({{< relref "/develop/ai/context-engine" >}}) (Redis I
49
49
1.[**Build an AI agent**]({{< relref "/develop/ai/agent-builder" >}}): Use the interactive agent builder to generate complete working code for conversational assistants and recommendation engines.
50
50
1.[**Add semantic caching**]({{< relref "/develop/ai/context-engine/langcache" >}}): Reduce LLM API calls by caching and reusing responses for semantically similar queries.
51
51
1.[**Add agent memory**]({{< relref "/develop/ai/context-engine/agent-memory" >}}): Give your agent persistent session and long-term memory using the Agent Memory REST API.
52
+
1.[**Access structured business data**]({{< relref "/develop/ai/context-engine/context-retriever" >}}): Use Context Retriever to define your business data as governed tools that any agent can query reliably.
53
+
1.[**Sync live data to Redis**]({{< relref "/develop/ai/context-engine/data-integration" >}}): Use Data Integration to keep your Redis Cloud database in sync with your primary relational database using Change Data Capture.
52
54
53
55
#### Learn how to index and query vector embeddings
@@ -100,10 +102,11 @@ AI agents can act autonomously to plan and execute tasks for the user.
100
102
*[Redis Notebooks for LangGraph](https://github.com/redis-developer/langgraph-redis/tree/main/examples) — End-to-end agent examples using LangGraph and Redis.
101
103
102
104
#### Context Engine
103
-
The Redis Context Engine provides managed services for agent memory and data access.
105
+
The Context Engine provides managed services for agent memory and data access.
104
106
105
107
*[Get started with LangCache]({{< relref "/develop/ai/context-engine/langcache" >}}) — Add semantic caching to reduce LLM costs in minutes.
106
108
*[Get started with Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory" >}}) — Add persistent two-tier memory to any agent using the REST API.
109
+
*[Get started with Context Retriever]({{< relref "/develop/ai/context-engine/context-retriever" >}}) — Expose your business data as governed tools that agents can reliably query.
107
110
*[Get started with Data Integration]({{< relref "/develop/ai/context-engine/data-integration" >}}) — Keep Redis in sync with your primary database so agents always have fresh data.
108
111
109
112
## Tutorials
@@ -112,6 +115,13 @@ Need a deeper-dive through different use cases and topics?
112
115
#### Agents
113
116
*[Agentic RAG](https://github.com/redis-developer/agentic-rag) - A tutorial focused on agentic RAG with LlamaIndex and Amazon Bedrock
114
117
*[Redis Notebooks for LangGraph](https://github.com/redis-developer/langgraph-redis/tree/main/examples) - Working with LangGraph agents and Redis memory
118
+
*[Build a LangGraph travel agent with Redis Agent Memory](https://redis.io/tutorials/redis-agent-memory-with-langgraph/) - Build a LangGraph agent with short-term session memory and long-term persistent memory using Redis Agent Memory
119
+
*[Build a real-time AI agent with Redis Iris](https://redis.io/tutorials/redis-iris-call-agent/) - Combine Redis Agent Memory and Context Retriever to build a wealth advisor agent with persistent memory and structured data access
120
+
*[Build a car dealership agent with Google ADK and Redis Agent Memory](https://redis.io/tutorials/build-a-car-dealership-agent-with-google-adk-and-redis-agent-memory/) - Build a persistent AI agent using Google ADK and Redis Agent Memory Server with working and long-term memory
121
+
*[Build Google ADK agents with persistent, real-time memory on Redis](https://redis.io/en/blog/build-google-adk-agents-with-persistent-real-time-memory-on-redis/) - Use the `adk-redis` package to integrate Google ADK with Redis for persistent memory, sessions, and semantic caching in production agents
122
+
123
+
#### Context Engine
124
+
*[Semantic caching with Redis LangCache](https://redis.io/tutorials/semantic-caching-with-redis-langcache/) - Build a FastAPI app with semantic caching using LangCache to reduce LLM costs and improve response times
115
125
116
126
#### RAG
117
127
*[RAG on Vertex AI](https://github.com/redis-developer/gcp-redis-llm-stack/tree/main) - A RAG tutorial featuring Redis with Vertex AI
@@ -123,6 +133,10 @@ Need a deeper-dive through different use cases and topics?
123
133
*[Redis product search](https://github.com/redis-developer/redis-product-search) - Build a real-time product search engine using features like full-text search, vector similarity, and real-time data updates
124
134
*[ArXiv Search](https://github.com/redis-developer/redis-arxiv-search) - Full stack implementation of Redis with React FE
125
135
136
+
#### Vector sets
137
+
*[Getting started with vector sets](https://redis.io/tutorials/howtos/vector-sets-basics/) - Learn the fundamentals of Redis vector sets for similarity search using the `VADD` and `VSIM` commands
138
+
*[Face similarity search with Redis vector sets](https://redis.io/tutorials/face-similarity-search-with-redis-vector-sets/) - Build a celebrity lookalike app using Redis vector sets and a Vision Transformer model for face embedding and similarity search
139
+
126
140
## Ecosystem integrations
127
141
128
142
Explore our comprehensive [ecosystem integrations page]({{< relref "/develop/ai/ecosystem-integrations" >}}) to discover how Redis works with popular AI frameworks, platforms, and tools including:
@@ -149,10 +163,25 @@ See how we stack up against the competition.
149
163
150
164
## Best practices
151
165
See how leaders in the industry are building their AI apps.
152
-
*[Get better RAG responses with Ragas](https://redis.io/blog/get-better-rag-responses-with-ragas/)
153
-
*[What is semantic caching](https://redis.io/blog/what-is-semantic-caching) — When and how to apply semantic caching in your AI applications.
166
+
167
+
#### Agents and architecture
168
+
*[AI Agent vs Chatbot: Key Differences Explained](https://redis.io/en/blog/ai-agent-vs-chatbot/) — Understand the architectural differences between chatbots and agents and when to use each based on task complexity, cost, and latency.
169
+
*[Agentic AI Architecture: 5 Patterns Explained](https://redis.io/en/blog/agentic-ai-architecture-examples/) — Learn five production agentic patterns and the data layer requirements needed to support them.
170
+
*[AI Agents vs Workflows: When to Use Each](https://redis.io/en/blog/agents-vs-workflows/) — Understand the distinction between deterministic workflows and autonomous agents and how to combine them in production.
154
171
*[How agents work]({{< relref "/develop/ai/agent-builder/agent-concepts" >}}) — Agent memory patterns, data structure selection, and production deployment considerations.
155
172
173
+
#### Memory and context
174
+
*[Context Engineering for AI: What It Is & How to Build It](https://redis.io/en/blog/context-engineering-ai/) — Learn the discipline of designing what an LLM receives at inference time, including the four core operations and how Redis provides the infrastructure.
175
+
*[Long-Term Memory Architectures for AI Agents](https://redis.io/en/blog/long-term-memory-architectures-ai-agents/) — Design persistent memory systems that retain information across sessions, with guidance on memory types and design tradeoffs.
176
+
*[Context Pruning: Cut LLM Tokens Without Losing Quality](https://redis.io/en/blog/context-pruning-llm-tokens/) — Selectively remove low-value tokens from LLM input to reduce costs and improve quality, with benchmarks and failure modes.
177
+
178
+
#### Performance
179
+
*[What is semantic caching](https://redis.io/blog/what-is-semantic-caching) — When and how to apply semantic caching in your AI applications.
180
+
*[Streaming LLM Responses: Make Your AI App Feel Fast](https://redis.io/en/blog/streaming-llm-responses/) — Deliver tokens incrementally via Server-Sent Events and combine streaming with caching and context optimization in production.
181
+
182
+
#### RAG
183
+
*[Get better RAG responses with Ragas](https://redis.io/blog/get-better-rag-responses-with-ragas/)
184
+
156
185
## Continue learning with Redis University
157
186
158
187
*[Context Engineering with Redis & LangChain](https://university.redis.io/course/vsgabnbkd3f5cd?tab=details)
Copy file name to clipboardExpand all lines: content/develop/ai/ai-videos.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,17 @@ Explore our collection of video tutorials and demonstrations showcasing how Redi
22
22
| The ins and outs of AI agents: understand their role in breaking down tasks into manageable components for better performance. Learn how to architect AI agents using AWS, LlamaIndex, and Redis. | This series of videos dives into the integration between LangChain and Redis to power AI applications that need runtime speed, scalability, and intelligent data management. | This video shows which resources you can use to learn AI with Redis and build powerful AI applications. |
23
23
|[**What Is RAG? Retrieval-Augmented Generation Explained Simply**](https://www.youtube.com/watch?v=xPMQ2cVbUTI)|[**Chunking Strategies Explained**](https://www.youtube.com/watch?v=ZTOtxiWb2bE)|[**What is an embedding model?**](https://www.youtube.com/watch?v=0U1S0WSsPuE)|
24
24
| Retrieval-Augmented Generation (RAG) is one of the most powerful architectural patterns in GenAI today—combining the strengths of large language models (LLMs) with real-time, external context from your own data. In this session, learn why it matters and how each component—from query rewriting to dense retrieval to semantic chunking—works behind the scenes to power more accurate, grounded, and up-to-date responses. | Are you interested in building LLM applications that actually work? Your chunking strategy makes all the difference. In this video, get a break down of the science of text chunking so your embeddings can start answering the right questions to your users. | Everyone’s talking about embedding models lately—but what do they actually do, and why does it matter? This video breaks it down in simple terms and shows how embeddings power search, recommendations, and AI features behind the scenes. |
25
+
|[**Exact vs Approximate (HNSW) Nearest Neighbors in Vector Databases**](https://www.youtube.com/watch?v=9NvO-VdjY80)|[**What is Hybrid Search?**](https://www.youtube.com/watch?v=ZcZGwS1Pgq0)|[**Vector Database Search: HNSW Algorithm Explained**](https://www.youtube.com/watch?v=cZyTZ-EMskI)|
26
+
| Explore the trade-offs between exact and approximate nearest neighbor search using the HNSW algorithm, with a focus on precision vs. performance in vector databases. | Learn how hybrid search combines vector (semantic) search with traditional keyword search to improve retrieval quality in AI applications. | A deep-dive into the HNSW (Hierarchical Navigable Small World) algorithm and how it powers efficient similarity search in vector databases. |
27
+
28
+
### AI Agents and Context Engine
29
+
30
+
||||
31
+
|---|---|---|
32
+
|[**Redis Agent Memory Basics**](https://www.youtube.com/watch?v=OWsCEs8_Wt4)|[**Build with Rowan: The real-time context engine**](https://www.youtube.com/watch?v=7JOnwT1v2Do)|[**Redis LangCache Setup**](https://www.youtube.com/watch?v=UOGhMZlZLko)|
33
+
| Learn the fundamentals of agent memory using Redis as a memory layer, covering how to give AI agents the ability to store and retrieve information. | A hands-on build session demonstrating how to construct applications that use the Redis Context Engine for real-time agent context. | Walk through how to configure Redis LangCache for semantic caching of LLM responses to reduce latency and cost. |
34
+
|[**Getting Started with the MCP Server for Redis Cloud using Docker**](https://www.youtube.com/watch?v=ziPu9TZD8hg)|||
35
+
| Learn how to set up and run the MCP Server for Redis Cloud inside a Docker container to connect AI agents to your Redis data. |||
0 commit comments