mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-11 09:42:15 +03:00
feat(providers): add Zylo UnoRouter and Poolside registries (#9585)
Co-authored-by: diegosouzapw <diegosouzapw@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
0481246bf4
commit
bb5b68d7bd
11
open-sse/config/providers/registry/poolside/index.ts
Normal file
11
open-sse/config/providers/registry/poolside/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import type { RegistryEntry } from "../../shared.ts";
|
||||
import { buildOpenAiCompatibleRegistryEntry } from "../../shared.ts";
|
||||
|
||||
export const poolsideProvider: RegistryEntry = buildOpenAiCompatibleRegistryEntry({
|
||||
id: "poolside",
|
||||
alias: "poolside",
|
||||
baseUrl: "https://inference.poolside.ai/v1/chat/completions",
|
||||
modelsUrl: "https://inference.poolside.ai/v1/models",
|
||||
models: [],
|
||||
passthroughModels: true,
|
||||
});
|
||||
11
open-sse/config/providers/registry/zylo-api/index.ts
Normal file
11
open-sse/config/providers/registry/zylo-api/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import type { RegistryEntry } from "../../shared.ts";
|
||||
import { buildOpenAiCompatibleRegistryEntry } from "../../shared.ts";
|
||||
|
||||
export const zyloApiProvider: RegistryEntry = buildOpenAiCompatibleRegistryEntry({
|
||||
id: "zylo-api",
|
||||
alias: "zylo",
|
||||
baseUrl: "https://api.zyloai.net/v1/chat/completions",
|
||||
modelsUrl: "https://api.zyloai.net/v1/models",
|
||||
models: [],
|
||||
passthroughModels: true,
|
||||
});
|
||||
55
tests/unit/free-tier-providers-wave1-a.test.ts
Normal file
55
tests/unit/free-tier-providers-wave1-a.test.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import assert from "node:assert/strict";
|
||||
import test from "node:test";
|
||||
|
||||
import { poolsideProvider } from "../../open-sse/config/providers/registry/poolside/index.ts";
|
||||
import { unorouterProvider } from "../../open-sse/config/providers/registry/unorouter/index.ts";
|
||||
import { zyloApiProvider } from "../../open-sse/config/providers/registry/zylo-api/index.ts";
|
||||
import type { RegistryEntry } from "../../open-sse/config/providers/shared.ts";
|
||||
|
||||
const providers: Array<{
|
||||
entry: RegistryEntry;
|
||||
id: string;
|
||||
alias: string;
|
||||
chatUrl: string;
|
||||
modelsUrl: string;
|
||||
}> = [
|
||||
{
|
||||
entry: zyloApiProvider,
|
||||
id: "zylo-api",
|
||||
alias: "zylo",
|
||||
chatUrl: "https://api.zyloai.net/v1/chat/completions",
|
||||
modelsUrl: "https://api.zyloai.net/v1/models",
|
||||
},
|
||||
{
|
||||
entry: unorouterProvider,
|
||||
id: "unorouter",
|
||||
alias: "unorouter",
|
||||
chatUrl: "https://api.unorouter.com/v1/chat/completions",
|
||||
modelsUrl: "https://api.unorouter.com/v1/models",
|
||||
},
|
||||
{
|
||||
entry: poolsideProvider,
|
||||
id: "poolside",
|
||||
alias: "poolside",
|
||||
chatUrl: "https://inference.poolside.ai/v1/chat/completions",
|
||||
modelsUrl: "https://inference.poolside.ai/v1/models",
|
||||
},
|
||||
];
|
||||
|
||||
for (const { entry, id, alias, chatUrl, modelsUrl } of providers) {
|
||||
test(`${id} uses the standard OpenAI-compatible API-key registry shape`, () => {
|
||||
assert.equal(entry.id, id);
|
||||
assert.equal(entry.alias, alias);
|
||||
assert.equal(entry.format, "openai");
|
||||
assert.equal(entry.executor, "default");
|
||||
assert.equal(entry.authType, "apikey");
|
||||
assert.equal(entry.authHeader, "bearer");
|
||||
assert.equal(entry.baseUrl, chatUrl);
|
||||
assert.equal(entry.modelsUrl, modelsUrl);
|
||||
assert.equal(entry.passthroughModels, true);
|
||||
});
|
||||
|
||||
test(`${id} relies on its live catalog without invented static model ids`, () => {
|
||||
assert.deepEqual(entry.models, []);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user