mirror of
https://github.com/AJaySi/ALwrity.git
synced 2026-04-25 08:55:58 +03:00
[PR #341] [MERGED] Image Studio: fix route parity, accurate create status, async transform jobs, and cost catalog #643
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#643
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/341
Author: @AJaySi
Created: 2/11/2026
Status: ✅ Merged
Merged: 2/11/2026
Merged by: @AJaySi
Base:
main← Head:codex/review-image-studio-feature-and-suggest-improvements📝 Commits (1)
d9b2807Implement Image Studio P0/P1 improvements and async transform jobs📊 Changes
16 files changed (+534 additions, -48 deletions)
View changed files
➕
IMAGE_STUDIO_REVIEW.md(+80 -0)📝
backend/routers/image_studio_modules/advanced.py(+190 -1)📝
backend/routers/image_studio_modules/generation.py(+16 -1)📝
backend/routers/image_studio_modules/models/__init__.py(+6 -0)📝
backend/routers/image_studio_modules/models/transform.py(+31 -1)📝
backend/services/image_studio/create_service.py(+14 -4)📝
backend/services/image_studio/studio_manager.py(+19 -0)📝
frontend/src/App.tsx(+3 -2)📝
frontend/src/components/ImageStudio/ImageProcessingStudio.tsx(+3 -3)📝
frontend/src/components/ImageStudio/ImageStudioDashboard.tsx(+48 -11)📝
frontend/src/components/ImageStudio/TransformStudio.tsx(+26 -0)📝
frontend/src/components/ImageStudio/dashboard/ModuleInfoCard.tsx(+6 -0)📝
frontend/src/components/ImageStudio/dashboard/modules.tsx(+3 -4)📝
frontend/src/components/ImageStudio/dashboard/types.ts(+2 -0)📝
frontend/src/hooks/useImageStudio.ts(+1 -0)📝
frontend/src/hooks/useTransformStudio.ts(+86 -21)📄 Description
Motivation
Description
TransformStudioimport and mounted the/image-transformroute infrontend/src/App.tsx.backend/services/image_studio/create_service.pyso the response now returnssuccess: falsewhen all variations fail andstatusset tosuccess/partial_success/failedaccordingly.backend/routers/image_studio_modules/advanced.pywithPOST /transform/image-to-video/async,POST /transform/talking-avatar/async,GET /transform/jobs/{job_id}, andPOST /transform/jobs/{job_id}/cancel, plus new Pydantic models inbackend/routers/image_studio_modules/models/transform.py.frontend/src/hooks/useTransformStudio.tsandfrontend/src/components/ImageStudio/TransformStudio.tsxto use the async job endpoints with polling, progress UI, and a cancel action, and added actionable error mapping (timeouts, credit/limit hints, audio/image validation).ImageStudioManager.get_cost_catalog()andGET /cost-cataloginbackend/routers/image_studio_modules/generation.py, and dashboard wiring infrontend/src/components/ImageStudio/ImageStudioDashboard.tsxto overlay backend-driven pricing withconfidence/updatedAtshown inModuleInfoCard.frontend/src/components/ImageStudio/ImageProcessingStudio.tsxandfrontend/src/components/ImageStudio/dashboard/modules.tsx).Testing
python -m py_compile ...which succeeded for the updated backend files.cd frontend && npm run -s buildwhich failed in this environment due to missingcross-env(environment dependency, not code syntax).cd frontend && npx tsc --noEmitwhich surfaced missing frontend dependencies/types in the sandbox (errors are environmental and not caused by the targeted code changes).http://localhost:3000/image-studio) which failed because the local dev server was not reachable (ERR_EMPTY_RESPONSE).Codex Task
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.