AI functins complete

This commit is contained in:
IGNY8 VPS (Salman)
2025-11-26 20:55:03 +00:00
parent 94a8aee0e2
commit 9b9352b9d2
4 changed files with 68 additions and 23 deletions

View File

@@ -174,6 +174,13 @@ class Content(SiteSectorBaseModel):
default=0,
help_text="Actual word count of content (calculated from HTML)"
)
# SEO fields
meta_title = models.CharField(max_length=255, blank=True, null=True, help_text="SEO meta title")
meta_description = models.TextField(blank=True, null=True, help_text="SEO meta description")
primary_keyword = models.CharField(max_length=255, blank=True, null=True, help_text="Primary SEO keyword")
secondary_keywords = models.JSONField(default=list, blank=True, help_text="Secondary SEO keywords")
cluster = models.ForeignKey(
'planner.Clusters',
on_delete=models.SET_NULL,