All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 2m20s
Translation quality & format preservation: - Word: merge adjacent same-format runs into one unit (sentence-level coherence like inline-tag handling); translate comments/balloons; dedupe textbox collection (was translated twice); RTL no longer overrides center/justify alignment; CJK/Arabic font hints (eastAsia/cs) - PPTX: chart translations now actually reach the output file (ChartPart.blob is read-only — rewrite chart XML in the saved ZIP); CJK typeface hints (a:ea) - Excel: sheet renames no longer break references — rewrite cell formulas (3D/quoted), defined names, data validations, cond. formats - PDF: bold/italic honored (hebo/heit/hebi); table cells never merge; unchanged blocks left untouched (typography preserved, fixes duplicate hyperlinks); attempted/changed stats + route gate now cover PDF; CJK font paths; scanned PDFs via Mistral OCR (detection + admin settings) Features: - formality param (formal/informal) + automatic regional-variant prompts - output_mode=bilingual docx (source above translation) - per-user translation memory on Redis (falls back to LRU), context-hashed - QA report + 0-100 confidence score in job status; L0 on by default - OpenAI-compatible providers: whole chunk in ONE numbered-JSON request (~15x fewer calls) with per-item fallback; base prompt always present (custom prompt no longer replaces translation instructions) Infra & marketing alignment: - plan-based engine gating + vision gating (closes paid-engine leak); /providers/available filtered per plan; 107 languages exposed - zh-CN/zh-TW validation fixed; libmagic disabled on Windows (native crash) - admin: Mistral OCR settings + engine status dashboard; httpx<0.28 pin (TestClient breakage); Prometheus test fixture fixed - marketing docs aligned with code (PDF+OCR, retention, engines, pricing) - security: .env.ionos/.env.production/provider_settings.json removed Tests: 1173 passed / 0 failed (6 network tests deselected: free Google endpoint temporarily blocked from this machine)
28 lines
1.1 KiB
Python
28 lines
1.1 KiB
Python
"""
|
|
Main API v1 Router
|
|
Aggregates all v1 sub-routers under /api/v1 prefix
|
|
Story 3.5: API Versioning
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter(tags=["API v1"])
|
|
|
|
from routes.translate_routes import router_v1 as translate_router
|
|
from routes.auth_routes import router_v1 as auth_router
|
|
from routes.api_key_routes import router as api_key_router
|
|
from routes.admin_routes import router as admin_router
|
|
from routes.legacy_routes import router as legacy_router
|
|
from routes.glossary_routes import router as glossary_router
|
|
from routes.prompt_routes import router as prompt_router
|
|
from routes.waitlist_routes import router as waitlist_router
|
|
|
|
router.include_router(translate_router, tags=["Translation"])
|
|
router.include_router(auth_router, tags=["Authentication"])
|
|
router.include_router(api_key_router, tags=["API Keys"])
|
|
router.include_router(admin_router, tags=["Admin"])
|
|
router.include_router(legacy_router, tags=["Legacy"])
|
|
router.include_router(glossary_router, tags=["Glossaries"])
|
|
router.include_router(prompt_router, tags=["Prompts"])
|
|
router.include_router(waitlist_router, tags=["Waitlist"])
|