mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 18:32:58 +00:00
## Critical Agent Creation Fix
- Railway PostgreSQL requires access_url_name and display_url_name fields
- ae303c2 agent creation commands were missing these required fields
- Added empty string defaults to all 5 agent creation commands
## Commands Updated
✅ create_social_ads_agent.py - Added access_url_name/display_url_name
✅ create_job_posting_agent.py - Added access_url_name/display_url_name
✅ create_pdf_summarizer_agent.py - Added access_url_name/display_url_name
✅ create_five_whys_agent.py - Added access_url_name/display_url_name
✅ create_cybersec_career_agent.py - Added access_url_name/display_url_name
## Error Fixed
❌ Was: null value in column 'access_url_name' violates not-null constraint
✅ Now: All agent creation commands provide required fields
## Result
- populate_agents will succeed on Railway deployment
- All 5 agents will be created successfully
- Railway marketplace will show working agents
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
71 lines
3.2 KiB
Python
71 lines
3.2 KiB
Python
from django.core.management.base import BaseCommand
|
|
from agents.models import AgentCategory, Agent
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Create the 5 Whys chat-based analysis agent'
|
|
|
|
def handle(self, *args, **options):
|
|
# Create or get the Analysis category
|
|
category, created = AgentCategory.objects.get_or_create(
|
|
slug='analysis',
|
|
defaults={
|
|
'name': 'Analysis & Problem Solving',
|
|
'description': 'Advanced analytical tools for problem-solving and decision making',
|
|
'icon': '🧠',
|
|
'is_active': True
|
|
}
|
|
)
|
|
|
|
if created:
|
|
self.stdout.write(f'✅ Created category: {category.name}')
|
|
else:
|
|
self.stdout.write(f'📂 Using existing category: {category.name}')
|
|
|
|
# Create the 5 Whys agent
|
|
agent, created = Agent.objects.get_or_create(
|
|
slug='five-whys-analysis',
|
|
defaults={
|
|
'name': '5 Whys Analysis',
|
|
'short_description': 'Interactive problem-solving using the proven 5 Whys methodology',
|
|
'description': '''Systematically find root causes through guided 5 Whys methodology. Perfect for troubleshooting operational problems, understanding failures, and identifying systemic issues.''',
|
|
'category': category,
|
|
'price': 15.00,
|
|
'agent_type': 'chat', # This is a chat-based agent
|
|
'message_limit': 20, # Limit messages per session
|
|
'form_schema': None, # Chat agents don't use form schemas
|
|
'webhook_url': 'http://localhost:5678/webhook/5-whys-web', # N8N webhook URL
|
|
'is_active': True,
|
|
'access_url_name': '',
|
|
'display_url_name': ''
|
|
}
|
|
)
|
|
|
|
if created:
|
|
self.stdout.write(
|
|
self.style.SUCCESS(f'🎉 Successfully created 5 Whys Analysis agent!')
|
|
)
|
|
self.stdout.write(f' 💬 Agent Type: {agent.agent_type}')
|
|
self.stdout.write(f' 💰 Price: {agent.price} AED')
|
|
self.stdout.write(f' 🔗 Webhook: {agent.webhook_url}')
|
|
self.stdout.write(f' 📂 Category: {agent.category.name}')
|
|
else:
|
|
self.stdout.write(
|
|
self.style.WARNING(f'⚠️ 5 Whys Analysis agent already exists')
|
|
)
|
|
|
|
# Update existing agent to ensure it's chat-based
|
|
if agent.agent_type != 'chat':
|
|
agent.agent_type = 'chat'
|
|
agent.form_schema = None
|
|
agent.save()
|
|
self.stdout.write(
|
|
self.style.SUCCESS(f'✅ Updated existing agent to chat-based')
|
|
)
|
|
|
|
self.stdout.write('')
|
|
self.stdout.write('🚀 Next steps:')
|
|
self.stdout.write(' 1. Ensure N8N webhook is running on localhost:5678')
|
|
self.stdout.write(' 2. Visit /agents/five-whys-analysis/ to test the chat interface')
|
|
self.stdout.write(' 3. Start a conversation to test the 5 Whys methodology')
|
|
self.stdout.write('')
|
|
self.stdout.write('💡 The agent is now ready for interactive problem-solving!') |