From 03b8f5ec6ed986c7dcb57913ceaf1879de9d558e Mon Sep 17 00:00:00 2001 From: Swifty Date: Wed, 25 Sep 2024 01:19:50 +0200 Subject: [PATCH] feat(marketplace): Added a list of keywords to describe agents (#8146) * Added more keywords * formatting --- .../src/app/marketplace/submit/page.tsx | 54 ++++++++++++++++--- 1 file changed, 48 insertions(+), 6 deletions(-) diff --git a/autogpt_platform/frontend/src/app/marketplace/submit/page.tsx b/autogpt_platform/frontend/src/app/marketplace/submit/page.tsx index b6fdeae9a1db..a489e9087ba3 100644 --- a/autogpt_platform/frontend/src/app/marketplace/submit/page.tsx +++ b/autogpt_platform/frontend/src/app/marketplace/submit/page.tsx @@ -37,6 +37,49 @@ type FormData = { selectedAgentId: string; }; +const keywords = [ + "Automation", + "AI Workflows", + "Integration", + "Task Automation", + "Data Processing", + "Workflow Management", + "Real-time Analytics", + "Custom Triggers", + "Event-driven", + "API Integration", + "Data Transformation", + "Multi-step Workflows", + "Collaboration Tools", + "Business Process Automation", + "No-code Solutions", + "AI-Powered", + "Smart Notifications", + "Data Syncing", + "User Engagement", + "Reporting Automation", + "Lead Generation", + "Customer Support Automation", + "E-commerce Automation", + "Social Media Management", + "Email Marketing Automation", + "Document Management", + "Data Enrichment", + "Performance Tracking", + "Predictive Analytics", + "Resource Allocation", + "Chatbot", + "Virtual Assistant", + "Workflow Automation", + "Social Media Manager", + "Email Optimizer", + "Content Generator", + "Data Analyzer", + "Task Scheduler", + "Customer Service Bot", + "Personalization Engine", +]; + const SubmitPage: React.FC = () => { const router = useRouter(); const { @@ -292,12 +335,11 @@ const SubmitPage: React.FC = () => { - - Keyword 1 - - - Keyword 2 - + {keywords.map((keyword) => ( + + {keyword} + + ))} {/* Add more predefined keywords as needed */}