import uuid from django.conf import settings from django.db import models class ChatConversation(models.Model): id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) user = models.ForeignKey( settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name="chat_conversations", ) title = models.CharField(max_length=255, blank=True, default="") created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) class Meta: ordering = ["-updated_at"] def __str__(self): return f"{self.title or 'Untitled'} ({self.user.username})" class ChatMessage(models.Model): ROLE_CHOICES = [ ("user", "User"), ("assistant", "Assistant"), ("system", "System"), ("tool", "Tool"), ] id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) conversation = models.ForeignKey( ChatConversation, on_delete=models.CASCADE, related_name="messages", ) role = models.CharField(max_length=20, choices=ROLE_CHOICES) content = models.TextField(blank=True, default="") tool_calls = models.JSONField(null=True, blank=True) tool_call_id = models.CharField(max_length=255, blank=True, null=True) name = models.CharField(max_length=255, blank=True, null=True) created_at = models.DateTimeField(auto_now_add=True) class Meta: ordering = ["created_at"]