File size: 587 Bytes
e3b75a7 b199f98 e3b75a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import re
def optimize_content(content: str):
"""Optimize the generated content for SEO."""
# Example: Simple SEO enhancements (can be customized for more complex logic)
title = "SEO Optimized Title: " + content[:100] + "..."
description = "SEO Optimized Description: " + content[:550] + "..."
tags = re.findall(r'\b\w+\b', content.lower())[:10] # Extract the first 10 words as tags
return {
"content": content,
"metadata": {
"title": title,
"description": description,
"tags": tags
}
}
|