Merge PR #226: Writing Persona System with platform-specific adaptations

This commit is contained in:
ajaysi
2025-09-04 14:10:00 +05:30
49 changed files with 4763 additions and 247 deletions

View File

@@ -386,6 +386,10 @@ app.include_router(content_planning_router)
app.include_router(user_data_router)
app.include_router(strategy_copilot_router)
# Include persona router
from api.persona_routes import router as persona_router
app.include_router(persona_router)
# SEO Dashboard endpoints
@app.get("/api/seo-dashboard/data")
async def seo_dashboard_data():