Skip to content
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
5 changes: 3 additions & 2 deletions content/develop/ai/agent-builder/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@ Redis powers these capabilities with fast, reliable data storage and retrieval t

## What you can build

Choose from two types of intelligent agents:
Choose from three types of intelligent agents:

- **Recommendation engines**: Personalized product and content recommendations
- **Conversational assistants**: Chatbots with memory and context awareness
- **Knowledge assistants**: RAG agents that ingest documents, answer questions with citations, and use semantic caching

The agent builder will generate complete, working code examples for your chosen agent type.

## Features

- **Multiple programming languages**: Generate code in Python, with JavaScript (Node.js), Java, and C# coming soon
- **Multiple programming languages**: Generate code in Python and JavaScript (Node.js), with Java and C# coming soon
- **LLM integration**: Support for OpenAI, Anthropic Claude, and Llama 2
- **Redis optimized**: Uses Redis data structures for optimal performance

Expand Down
3 changes: 3 additions & 0 deletions layouts/shortcodes/agent-builder.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ <h3 class="text-2xl font-semibold text-redis-ink-900 mb-2">Build Your AI Agent</
<div class="suggestion-chips">
<button class="suggestion-chip" data-suggestion="recommendation">🛍️ Recommendation Engine</button>
<button class="suggestion-chip" data-suggestion="conversational">💬 Conversational Assistant</button>
<button class="suggestion-chip" data-suggestion="rag">🔍 Knowledge Assistant</button>
</div>
</div>
</div>
Expand Down Expand Up @@ -90,5 +91,7 @@ <h4 class="text-lg font-medium text-redis-ink-900 mb-4">Generated Agent Code</h4

</div>

<!-- Inject the Hugo-resolved base path for template file fetches -->
<script>window.AGENT_TEMPLATE_BASE = "{{ "code/agent-templates" | relURL }}";</script>
<!-- Load the agent builder JavaScript -->
<script src="{{ "js/agent-builder.js" | relURL }}"></script>
Loading
Loading