mirror of
https://github.com/AJaySi/ALwrity.git
synced 2026-04-25 17:05:56 +03:00
[PR #228] [CLOSED] Migrate AI story generators to FastAPI with enhanced logging #602
Labels
No labels
AI Content Agents
AI Content Strategy
AI Content planning
AI Marketing Tools
AI SEO
AI personalization
AI writer
ALwrity Copi-lot
Alwrity web search
Anthropic
DeepSeek
Gemini AI
Integration
LLM
OnBoarding
OnBoarding
RAG knowledgebase Memory
bug
documentation
enhancement
good first issue
help wanted
invalid
openai
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ALwrity#602
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/AJaySi/ALwrity/pull/228
Author: @AJaySi
Created: 9/1/2025
Status: ❌ Closed
Base:
main← Head:cursor/migrate-ai-story-generators-to-fastapi-with-enhanced-logging-79ff📝 Commits (1)
3142deeAdd story generators API with writer, illustrator, and video modules📊 Changes
23 files changed (+4067 additions, -1 deletions)
View changed files
📝
backend/api/__pycache__/__init__.cpython-313.pyc(+0 -0)📝
backend/api/__pycache__/onboarding.cpython-313.pyc(+0 -0)➕
backend/api/story_generators/README.md(+268 -0)➕
backend/api/story_generators/__init__.py(+16 -0)➕
backend/api/story_generators/core/__init__.py(+3 -0)➕
backend/api/story_generators/core/exceptions.py(+132 -0)➕
backend/api/story_generators/core/logging.py(+173 -0)➕
backend/api/story_generators/main.py(+139 -0)➕
backend/api/story_generators/routers/__init__.py(+5 -0)➕
backend/api/story_generators/routers/story_illustrator.py(+507 -0)➕
backend/api/story_generators/routers/story_video_generator.py(+422 -0)➕
backend/api/story_generators/routers/story_writer.py(+353 -0)➕
backend/api/story_generators/schemas/__init__.py(+78 -0)➕
backend/api/story_generators/schemas/story_illustrator_schemas.py(+117 -0)➕
backend/api/story_generators/schemas/story_video_schemas.py(+134 -0)➕
backend/api/story_generators/schemas/story_writer_schemas.py(+119 -0)➕
backend/api/story_generators/services/__init__.py(+17 -0)➕
backend/api/story_generators/services/gemini_image_service.py(+375 -0)➕
backend/api/story_generators/services/story_illustrator_service.py(+428 -0)➕
backend/api/story_generators/services/story_video_service.py(+363 -0)...and 3 more files
📄 Description
Migrated the three Streamlit-based story generators to new FastAPI endpoints.
This migration modernizes the API, improves scalability, introduces robust logging and exception handling, establishes an independent backend structure, and updates the Gemini image generation module, all while preserving existing functionality.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.