From 3456f18b000a9893a47bbde12c37544e270dc0e3 Mon Sep 17 00:00:00 2001 From: mich-elle-luna Date: Wed, 12 Nov 2025 11:00:17 -0800 Subject: [PATCH] Replace 'Redis AI Agent Builder' with 'AI Agent Builder' and 'Redis AI agent' with 'AI agent' --- assets/css/index.css | 2 +- content/develop/ai/agent-builder/_index.md | 6 +++--- layouts/shortcodes/agent-builder.html | 6 +++--- static/js/agent-builder.js | 16 ++++++++-------- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/assets/css/index.css b/assets/css/index.css index 7978ee7063..f8500f64f2 100644 --- a/assets/css/index.css +++ b/assets/css/index.css @@ -1074,7 +1074,7 @@ a[href*="#no-click"], img[src*="#no-click"] { background-color: #ddd; } -/* Redis AI Agent Builder Styles */ +/* AI Agent Builder Styles */ .agent-builder-container { @apply max-w-4xl mx-auto p-6 bg-white rounded-lg border border-redis-pen-800 shadow-lg; diff --git a/content/develop/ai/agent-builder/_index.md b/content/develop/ai/agent-builder/_index.md index 5633a46c13..8b27ce90fa 100644 --- a/content/develop/ai/agent-builder/_index.md +++ b/content/develop/ai/agent-builder/_index.md @@ -1,18 +1,18 @@ --- -Title: Redis AI Agent Builder +Title: AI agent builder alwaysopen: false categories: - docs - develop - ai description: Build custom AI agents powered by Redis with our interactive code generator -linkTitle: Agent Builder +linkTitle: Agent builder hideListLinks: true weight: 50 --- -Agents use Redis for data storage, vector search, and conversation memory. The interactive builder generates production-ready code in your preferred programming language. +Agents use Redis for data storage, vector search, and conversation memory. The interactive builder generates code in your preferred programming language with your choice of model. ## Get started diff --git a/layouts/shortcodes/agent-builder.html b/layouts/shortcodes/agent-builder.html index 2c0ec21ee2..8adeffb96b 100644 --- a/layouts/shortcodes/agent-builder.html +++ b/layouts/shortcodes/agent-builder.html @@ -2,10 +2,10 @@ - +
-

Build Your Redis AI Agent

+

Build Your AI Agent

Tell us what you want to build and we'll generate the code for you

@@ -20,7 +20,7 @@

Build Your Redis AI A

-

Hi! I'll help you build a Redis AI agent. Let's start with what type of agent you want to create.

+

Hi! I'll help you build an AI agent. Let's start with what type of agent you want to create.

diff --git a/static/js/agent-builder.js b/static/js/agent-builder.js index 0acef66039..91f37ebee3 100644 --- a/static/js/agent-builder.js +++ b/static/js/agent-builder.js @@ -1,5 +1,5 @@ /** - * Redis AI Agent Builder JavaScript + * AI Agent Builder JavaScript * Handles chat interface and code generation */ @@ -410,7 +410,7 @@ // Handle special responses from coming soon message if (input === 'wait') { - addMessage('Thanks for checking out the Redis AI Agent Builder. Come back when your preferred language is supported!', 'bot'); + addMessage('Thanks for checking out the AI Agent Builder. Come back when your preferred language is supported!', 'bot'); return; } @@ -480,7 +480,7 @@ const config = CONFIG.models[selectedModel]; addMessage(`Perfect! ${config.description}`, 'bot'); - addMessage('🎉 I have everything I need! Generating your Redis AI agent code...', 'bot'); + addMessage('🎉 I have everything I need! Generating your AI agent code...', 'bot'); // Generate code setTimeout(() => { @@ -498,7 +498,7 @@ function generateAndDisplayCode() { const code = generateAgentCode(conversationState.selections); - addMessage('✅ Your Redis AI agent code is ready! You can copy or download it below.', 'bot'); + addMessage('✅ Your AI agent code is ready! You can copy or download it below.', 'bot'); // Show code section displayGeneratedCode(code, conversationState.selections); @@ -560,7 +560,7 @@ } function getGenericPythonCode(formData) { - return `# ${formData.agentName} - Redis AI Agent + return `# ${formData.agentName} - AI Agent # Generated for ${CONFIG.agentTypes[formData.agentType].description} import redis @@ -597,7 +597,7 @@ if __name__ == "__main__": } function getGenericJavaScriptCode(formData) { - return `// ${formData.agentName} - Redis AI Agent + return `// ${formData.agentName} - AI Agent // Generated for ${CONFIG.agentTypes[formData.agentType].description} const redis = require('redis'); @@ -640,7 +640,7 @@ module.exports = ${formData.agentName.replace(/\s+/g, '')};`; } function getGenericJavaCode(formData) { - return `// ${formData.agentName} - Redis AI Agent + return `// ${formData.agentName} - AI Agent // Generated for ${CONFIG.agentTypes[formData.agentType].description} import redis.clients.jedis.Jedis; @@ -680,7 +680,7 @@ public class ${formData.agentName.replace(/\s+/g, '')} { } function getGenericCSharpCode(formData) { - return `// ${formData.agentName} - Redis AI Agent + return `// ${formData.agentName} - AI Agent // Generated for ${CONFIG.agentTypes[formData.agentType].description} using StackExchange.Redis;