mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 18:32:58 +00:00
ISSUE: Agent pages were not opening due to URL pattern conflict between agent_base/urls.py and individual agent app URLs. SOLUTION: - Remove conflicting 'agents/<slug:agent_slug>/' pattern from agent_base URLs - Add get_absolute_url() method to BaseAgent model for clean URL generation - Update marketplace template to use agent.get_absolute_url instead of URL reversal - Remove redundant agent_detail_view that was causing redirect loops RESULT: - Individual agent pages now load correctly (/agents/data-analyzer/, etc.) - Marketplace correctly links to individual agent pages - Authentication flow works as expected (login required for agent access) - No more URL conflicts or redirect loops 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
90 lines
3.2 KiB
Python
90 lines
3.2 KiB
Python
from django.db import models
|
|
from django.contrib.auth import get_user_model
|
|
from decimal import Decimal
|
|
import uuid
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
class BaseAgent(models.Model):
|
|
"""Base model for all agents - used for catalog and marketplace"""
|
|
CATEGORIES = [
|
|
('analytics', 'Analytics'),
|
|
('utilities', 'Utilities'),
|
|
('content', 'Content'),
|
|
('marketing', 'Marketing'),
|
|
('customer-service', 'Customer Service'),
|
|
]
|
|
|
|
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
name = models.CharField(max_length=200)
|
|
slug = models.SlugField(unique=True)
|
|
description = models.TextField()
|
|
category = models.CharField(max_length=50, choices=CATEGORIES)
|
|
price = models.DecimalField(max_digits=10, decimal_places=2)
|
|
icon = models.CharField(max_length=100, default='🤖')
|
|
is_active = models.BooleanField(default=True)
|
|
rating = models.DecimalField(max_digits=3, decimal_places=1, default=Decimal('4.5'))
|
|
review_count = models.IntegerField(default=0)
|
|
agent_type = models.CharField(max_length=20, choices=[
|
|
('webhook', 'Webhook'),
|
|
('api', 'API'),
|
|
], default='webhook')
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
updated_at = models.DateTimeField(auto_now=True)
|
|
|
|
class Meta:
|
|
ordering = ['name']
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
@property
|
|
def price_display(self):
|
|
return f"{self.price} AED"
|
|
|
|
def get_gradient_class(self):
|
|
gradient_map = {
|
|
'analytics': 'from-indigo-500 to-purple-600',
|
|
'utilities': 'from-sky-400 to-blue-500',
|
|
'content': 'from-purple-500 to-indigo-600',
|
|
'marketing': 'from-pink-500 to-rose-600',
|
|
'customer-service': 'from-blue-500 to-blue-600',
|
|
}
|
|
return gradient_map.get(self.category, 'from-gray-500 to-gray-600')
|
|
|
|
def get_absolute_url(self):
|
|
"""Get the URL for this agent's detail page"""
|
|
return f'/agents/{self.slug}/'
|
|
|
|
|
|
class BaseAgentRequest(models.Model):
|
|
"""Base model for agent requests"""
|
|
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
user = models.ForeignKey(User, on_delete=models.CASCADE)
|
|
agent = models.ForeignKey(BaseAgent, on_delete=models.CASCADE)
|
|
status = models.CharField(max_length=20, choices=[
|
|
('pending', 'Pending'),
|
|
('processing', 'Processing'),
|
|
('completed', 'Completed'),
|
|
('failed', 'Failed'),
|
|
], default='pending')
|
|
cost = models.DecimalField(max_digits=10, decimal_places=2)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
processed_at = models.DateTimeField(null=True, blank=True)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
ordering = ['-created_at']
|
|
|
|
|
|
class BaseAgentResponse(models.Model):
|
|
"""Base model for agent responses"""
|
|
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
success = models.BooleanField(default=False)
|
|
error_message = models.TextField(blank=True)
|
|
processing_time = models.DecimalField(max_digits=10, decimal_places=2, null=True, blank=True)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
class Meta:
|
|
abstract = True |