[PR #259] [CLOSED] feat: Enhanced Facebook Writer with enterprise UI and image generation #275

Closed
opened 2026-03-02 23:34:55 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AJaySi/ALwrity/pull/259
Author: @Om-Singh1808
Created: 9/24/2025
Status: Closed

Base: mainHead: feature/facebook-writer-enhancements


📝 Commits (1)

  • 7690a77 feat: Enhanced Facebook Writer with enterprise UI and image generation

📊 Changes

28 files changed (+5373 additions, -425 deletions)

View changed files

backend/api/facebook_data_deletion.py (+175 -0)
backend/api/facebook_social/__init__.py (+1 -0)
backend/api/facebook_social/auth.py (+71 -0)
backend/api/facebook_social/facebook_client.py (+244 -0)
backend/api/facebook_social/models.py (+32 -0)
backend/api/facebook_social/router.py (+328 -0)
backend/api/facebook_social/token_store.py (+130 -0)
📝 backend/api/facebook_writer/routers/facebook_router.py (+880 -2)
📝 backend/api/facebook_writer/services/remaining_services.py (+182 -2)
📝 backend/api/facebook_writer/services/story_service.py (+3 -0)
📝 backend/app.py (+13 -0)
📝 backend/requirements.txt (+5 -1)
backend/services/facebook/__init__.py (+10 -0)
backend/services/facebook/image_generation/__init__.py (+10 -0)
backend/services/facebook/image_generation/facebook_image_generator.py (+430 -0)
backend/services/llm_providers/text_to_image_generation/alternative_image_generators.py (+264 -0)
📝 backend/services/llm_providers/text_to_image_generation/gen_gemini_images.py (+120 -35)
backend/services/llm_providers/text_to_image_generation/imagen_service.py (+207 -0)
📝 backend/start_alwrity_backend.py (+17 -3)
frontend/build/favicon.ico (+0 -1)

...and 8 more files

📄 Description

  • Redesigned Facebook Writer with professional enterprise-level UI
  • Added ContentGenerationProgress component with real-time polling messages
  • Enhanced CopilotKit integration with improved content synchronization
  • Added Facebook data deletion endpoint for compliance
  • Integrated Facebook social authentication and page management
  • Added Stability AI image generation support(will add one more PR for this does not work everytime)
  • Improved error handling and user experience

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AJaySi/ALwrity/pull/259 **Author:** [@Om-Singh1808](https://github.com/Om-Singh1808) **Created:** 9/24/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/facebook-writer-enhancements` --- ### 📝 Commits (1) - [`7690a77`](https://github.com/AJaySi/ALwrity/commit/7690a779b462256f6f24bc0d190d92e638038cce) feat: Enhanced Facebook Writer with enterprise UI and image generation ### 📊 Changes **28 files changed** (+5373 additions, -425 deletions) <details> <summary>View changed files</summary> ➕ `backend/api/facebook_data_deletion.py` (+175 -0) ➕ `backend/api/facebook_social/__init__.py` (+1 -0) ➕ `backend/api/facebook_social/auth.py` (+71 -0) ➕ `backend/api/facebook_social/facebook_client.py` (+244 -0) ➕ `backend/api/facebook_social/models.py` (+32 -0) ➕ `backend/api/facebook_social/router.py` (+328 -0) ➕ `backend/api/facebook_social/token_store.py` (+130 -0) 📝 `backend/api/facebook_writer/routers/facebook_router.py` (+880 -2) 📝 `backend/api/facebook_writer/services/remaining_services.py` (+182 -2) 📝 `backend/api/facebook_writer/services/story_service.py` (+3 -0) 📝 `backend/app.py` (+13 -0) 📝 `backend/requirements.txt` (+5 -1) ➕ `backend/services/facebook/__init__.py` (+10 -0) ➕ `backend/services/facebook/image_generation/__init__.py` (+10 -0) ➕ `backend/services/facebook/image_generation/facebook_image_generator.py` (+430 -0) ➕ `backend/services/llm_providers/text_to_image_generation/alternative_image_generators.py` (+264 -0) 📝 `backend/services/llm_providers/text_to_image_generation/gen_gemini_images.py` (+120 -35) ➕ `backend/services/llm_providers/text_to_image_generation/imagen_service.py` (+207 -0) 📝 `backend/start_alwrity_backend.py` (+17 -3) ➖ `frontend/build/favicon.ico` (+0 -1) _...and 8 more files_ </details> ### 📄 Description - Redesigned Facebook Writer with professional enterprise-level UI - Added ContentGenerationProgress component with real-time polling messages - Enhanced CopilotKit integration with improved content synchronization - Added Facebook data deletion endpoint for compliance - Integrated Facebook social authentication and page management - Added Stability AI image generation support(will add one more PR for this does not work everytime) - Improved error handling and user experience --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 23:34:55 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ALwrity#275
No description provided.