mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 20:52:59 +00:00
- Fixed URL conflicts between legacy and unified workflows system
- Data analyzer: Fixed button ID mismatch and added file display elements
- Job posting generator: Connected to real N8N webhook, added prefilled test data
- Social ads generator: Direct N8N integration, added prefilled test data
- Quick agents panel: Fixed URLs to use /agents/ prefix
- Pricing: Synced config with database (data-analyzer: 8 AED, job-posting: 10 AED, social-ads: 6 AED)
- Removed Django fallbacks for cleaner direct N8N processing
- All agents accessible via /agents/{slug}/ with consistent architecture
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
91 lines
2.9 KiB
Python
91 lines
2.9 KiB
Python
"""
|
|
Simplified agent configuration system for unified workflows app.
|
|
Each agent is defined by essential metadata only - forms are handled in individual templates.
|
|
"""
|
|
|
|
AGENT_CONFIGS = {
|
|
'social-ads-generator': {
|
|
'name': 'Social Ads Generator',
|
|
'description': 'Create engaging social media advertisements with AI-powered content generation',
|
|
'category': 'marketing',
|
|
'price': 6.0,
|
|
'icon': '📱',
|
|
'webhook_url': 'http://localhost:5678/webhook/2dc234d8-7217-454a-83e9-81afe5b4fe2d',
|
|
},
|
|
|
|
'job-posting-generator': {
|
|
'name': 'Job Posting Generator',
|
|
'description': 'Create professional job postings that attract top talent',
|
|
'category': 'content',
|
|
'price': 10.0,
|
|
'icon': '💼',
|
|
'webhook_url': 'http://localhost:5678/webhook/43f84411-eaaa-488c-9b1f-856e90d0aaf6',
|
|
},
|
|
|
|
'five-whys-analyzer': {
|
|
'name': 'Five Whys Analyzer',
|
|
'description': 'Perform root cause analysis using the Five Whys methodology',
|
|
'category': 'analytics',
|
|
'price': 2.5,
|
|
'icon': '🔍',
|
|
'webhook_url': 'http://localhost:5678/webhook/five-whys-webhook-id',
|
|
},
|
|
|
|
'weather-reporter': {
|
|
'name': 'Weather Reporter',
|
|
'description': 'Get detailed weather reports and forecasts for any location',
|
|
'category': 'utilities',
|
|
'price': 1.0,
|
|
'icon': '🌤️',
|
|
'webhook_url': 'http://localhost:5678/webhook/weather-webhook-id',
|
|
},
|
|
'template-demo': {
|
|
'name': 'Template Demo',
|
|
'description': 'Demo of the fixed agent template starter with all enhancements',
|
|
'category': 'demo',
|
|
'price': 0.5,
|
|
'icon': '🎯',
|
|
'webhook_url': 'http://localhost:5678/webhook/template-demo',
|
|
},
|
|
|
|
'data-analyzer': {
|
|
'name': 'Data Analyzer',
|
|
'description': 'AI-powered analysis of your data files with comprehensive insights',
|
|
'category': 'analytics',
|
|
'price': 8.0,
|
|
'icon': '📊',
|
|
'webhook_url': 'http://localhost:5678/webhook/simple-pdf-processor',
|
|
}
|
|
}
|
|
|
|
|
|
def get_agent_config(agent_slug):
|
|
"""Get agent configuration by slug"""
|
|
return AGENT_CONFIGS.get(agent_slug)
|
|
|
|
|
|
def get_all_agents():
|
|
"""Get all available agent configurations"""
|
|
return AGENT_CONFIGS
|
|
|
|
|
|
def get_available_agents():
|
|
"""Get all agents formatted for navigation components"""
|
|
return {
|
|
slug: {
|
|
'name': config['name'],
|
|
'icon': config['icon'],
|
|
'description': config['description']
|
|
}
|
|
for slug, config in AGENT_CONFIGS.items()
|
|
}
|
|
|
|
|
|
def format_message_for_n8n(agent_slug, form_data):
|
|
"""Format form data into message for N8N webhook"""
|
|
config = get_agent_config(agent_slug)
|
|
if not config:
|
|
return None
|
|
|
|
# Simple format - just send the form data as is
|
|
return f"Process {config['name']} request: {str(form_data)}" |