- Single-source registry: oauth clientId/tokenUrl, usage URLs, image/embed configs, search defaultModel, codex fixedPort, google token url derive. - Remove 29 unused OmniRoute providers (registry 100→71); media intact. - De-adhoc: codex literals → registry format/oauth flags; reasoningInject, image/embed openrouter headers + xai bodyFields config-driven. - Add REGISTRY_TEMPLATE.js + expand PROVIDER_DEFAULTS/schema JSDoc. - Baselines updated; PROVIDERS 62 + alias 90 byte-for-byte, golden snapshots. Co-authored-by: Cursor <cursoragent@cursor.com>
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
|
|
export default {
|
|
"id": "assemblyai",
|
|
"alias": "assemblyai",
|
|
display: {
|
|
"name": "AssemblyAI",
|
|
"icon": "record_voice_over",
|
|
"color": "#0062FF",
|
|
"textIcon": "AA",
|
|
"website": "https://assemblyai.com",
|
|
"notice": {
|
|
"apiKeyUrl": "https://www.assemblyai.com/app/api-keys"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
uiAlias: "aai",
|
|
authType: "apikey",
|
|
aliases: ["aai"],
|
|
"transport": {
|
|
"baseUrl": "https://api.assemblyai.com/v1/audio/transcriptions",
|
|
"validateUrl": "https://api.assemblyai.com/v1/account"
|
|
},
|
|
media: {
|
|
serviceKinds: ["stt"],
|
|
sttConfig: { baseUrl: "https://api.assemblyai.com/v2/transcript", authType: "apikey", authHeader: "authorization", format: "assemblyai", models: [{ id: "best", name: "Best (Nano + Universal)" }, { id: "nano", name: "Nano (Fast)" }] }
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "universal-3-pro",
|
|
"name": "Universal 3 Pro",
|
|
"type": "stt",
|
|
"params": [
|
|
"language"
|
|
]
|
|
},
|
|
{
|
|
"id": "universal-2",
|
|
"name": "Universal 2",
|
|
"type": "stt",
|
|
"params": [
|
|
"language"
|
|
]
|
|
}
|
|
]
|
|
};
|