mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 04:12:10 +03:00
* feat(providers): add FreeTheAi as an OpenAI-compatible gateway provider (#6670) FreeTheAi is a free-tier, Discord-signup gateway aggregator — same shape as hackclub/chutes: OpenAI-compatible chat/completions + /v1/models discovery, no custom executor/translator needed. - Registry entry: open-sse/config/providers/registry/freetheai/index.ts (format: openai, executor: default, apikey/bearer auth, passthroughModels) - Provider metadata: src/shared/constants/providers/apikey/gateways.ts - Listed in AGGREGATOR_PROVIDER_IDS (src/shared/constants/providers.ts) - Unit test verifying registry entry, getExecutor() resolution, aggregator classification, and provider metadata (tests/unit/provider-registry-freetheai.test.ts) * chore(providers): sync counts (APIKEY 170, providers 253) after rebase onto advanced release (#6670) The release advanced heavily since this branch was cut; realign the family-partition count to the true post-rebase value (170) and the doc provider totals to 253. freetheai adds exactly one gateway; the rest of the delta is pre-existing release drift. All partition/dedup checks enforced.