Features: - Image generation (OpenAI, Gemini, Leonardo, Bria, Stability, Flux) - Nano Banana iterative editing - Video generation and upscaling - Audio TTS, STT, sound effects (ElevenLabs) - Text prompt studio and alt text - User authentication with JWT/cookies - Admin panel with voice management - Job queue with Celery - PostgreSQL + Redis backend - Next.js 15 + FastAPI architecture 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
10 lines
351 B
Python
10 lines
351 B
Python
"""Pydantic Schemas"""
|
|
from app.schemas.user import UserCreate, UserResponse, UserUpdate
|
|
from app.schemas.job import JobCreate, JobResponse, JobUpdate
|
|
from app.schemas.asset import AssetCreate, AssetResponse
|
|
|
|
__all__ = [
|
|
"UserCreate", "UserResponse", "UserUpdate",
|
|
"JobCreate", "JobResponse", "JobUpdate",
|
|
"AssetCreate", "AssetResponse"
|
|
]
|