forge/backend/app/services/__init__.py
DJP 7a804e896d Initial commit - FORGE AI unified platform
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>
2025-12-09 20:39:00 -05:00

32 lines
631 B
Python

"""Services Package"""
from app.services import (
image_generator,
image_upscaler,
background_remover,
video_generator,
video_upscaler,
subtitle_processor,
voice_to_text,
text_to_speech,
alt_text_generator,
prompt_studio,
job_processor,
markdown_tools,
sound_effects
)
__all__ = [
"image_generator",
"image_upscaler",
"background_remover",
"video_generator",
"video_upscaler",
"subtitle_processor",
"voice_to_text",
"text_to_speech",
"alt_text_generator",
"prompt_studio",
"job_processor",
"markdown_tools",
"sound_effects"
]