mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 20:32:20 +03:00
* feat(providers): add Segmind image+video provider (#6656) Segmind exposes 200+ hosted image/video models under a single `POST https://api.segmind.com/v1/{model}` REST shape: x-api-key auth, JSON request body, raw media bytes response (no JSON envelope). - New IMAGE_PROVIDERS + VIDEO_PROVIDERS registry entries (format: "segmind") with a curated starter model list (Flux, SDXL, SD3.5, Kandinsky for image; Wan, Hunyuan, LTX, Kling for video). - New connection-metadata entry in specialty-media.ts; segmind added to IMAGE_ONLY_PROVIDER_IDS and VIDEO_PROVIDER_IDS. - Dedicated handlers (imageGeneration/providers/segmind.ts, videoGeneration/providers/segmind.ts) built on a shared REST client (utils/segmindClient.ts) that centralizes the fetch/error/log path so both stay under the complexity/max-lines ratchets. - Extracted the pre-existing Alibaba DashScope video handler out of the frozen videoGeneration.ts into videoGeneration/providers/ dashscope.ts (no behavior change) to make room for the new Segmind dispatch branch under the frozen file-size baseline. - Error responses route through sanitizeErrorMessage() (Hard Rule #12) — verified by dedicated no-leak tests. - Regenerated docs/reference/PROVIDER_REFERENCE.md (250 -> 251 providers) and synced the plain-text provider counts in README.md/ AGENTS.md/CLAUDE.md (anchors/badges left untouched). Tests: tests/unit/segmind-image-video-provider-6656.test.ts (11 cases — registry shape, connection metadata, IMAGE_ONLY/VIDEO_ PROVIDER_IDS membership, mocked-fetch request mapping for both image and video, and sanitized-error-path assertions for both upstream error bodies and network exceptions). No live Segmind key required; response shape (raw media bytes, x-api-key auth) is sourced from https://docs.segmind.com/ and corroborated against https://www.segmind.com/models/flux-schnell/api, https://www.segmind.com/models/sdxl1.0-txt2img/api, and https://www.segmind.com/models/wan2.1-t2v/api. Gates run clean: check-file-size, check:complexity-ratchets (2055/889, both under baseline), typecheck:core, typecheck:noimplicit:core (no new errors), lint (targeted files), check:cycles, check:docs-counts (STRICT provider-count drift resolved), check:docs-sync, check:any-budget:t11, check:tracked-artifacts, check:provider-consistency, check:known-symbols. * test(providers): align APIKEY_PROVIDERS count 167→168 for the new segmind provider (#6656) Adding segmind to specialty-media.ts grows APIKEY_PROVIDERS by one; providers-constants-split.test.ts hardcodes the family-partition total. Legitimate count alignment, not a weakened assertion — all 4 partition/ dedup checks still enforced.