Full-stack Amazon AI Transcreation Platform with: - FastAPI backend (async, PostgreSQL, Redis, Celery) with 11 DB tables - JWT auth (SSO-ready abstract provider pattern) - 6-agent pipeline orchestrator with deterministic modules - Next.js 14 frontend with Amazon branding (Ember fonts, orange/dark theme) - Job wizard, monitoring HUD, output review, admin screens - 154 TM/reference files imported, 12 locales configured - Docker Compose for all services Agents 2-5 (TM retrieval, ranker, transcreator, compliance) are stubs pending Phase 3 LLM integration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
613 B
Python
11 lines
613 B
Python
"""SQLAlchemy models - import all models so Alembic can discover them."""
|
|
|
|
from app.models.base import Base, TimestampMixin # noqa: F401
|
|
from app.models.client import Client # noqa: F401
|
|
from app.models.user import User, UserClient # noqa: F401
|
|
from app.models.job import Job, LocaleInstance # noqa: F401
|
|
from app.models.source import SourceLine # noqa: F401
|
|
from app.models.output import OutputRow # noqa: F401
|
|
from app.models.feedback import Feedback # noqa: F401
|
|
from app.models.files import TMFileRegistry, ReferenceFile # noqa: F401
|
|
from app.models.audit import AuditLog, TokenUsageLog # noqa: F401
|