mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- 100 registry files: transport + models co-located per provider (Mongoose-style) - providers/shared.js: shared Claude headers + OS/arch helpers (deduped) - providers/models/helpers.js: withCodexReviewModels (kept dynamic) - providers/index.js builds PROVIDERS + PROVIDER_MODELS = old API (content byte-for-byte) - config/providers.js + providerModels.js → barrel re-export, keep accessors + runtime helpers - Verified: PROVIDERS/MODELS/OAuth/alias byte-for-byte, golden translator tests pass, 0 new regression Co-authored-by: Cursor <cursoragent@cursor.com>
59 lines
1.1 KiB
JavaScript
59 lines
1.1 KiB
JavaScript
export default {
|
|
"id": "groq",
|
|
"alias": "groq",
|
|
"transport": {
|
|
"baseUrl": "https://api.groq.com/openai/v1/chat/completions"
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "llama-3.3-70b-versatile",
|
|
"name": "Llama 3.3 70B"
|
|
},
|
|
{
|
|
"id": "meta-llama/llama-4-maverick-17b-128e-instruct",
|
|
"name": "Llama 4 Maverick"
|
|
},
|
|
{
|
|
"id": "qwen/qwen3-32b",
|
|
"name": "Qwen3 32B"
|
|
},
|
|
{
|
|
"id": "openai/gpt-oss-120b",
|
|
"name": "GPT-OSS 120B"
|
|
},
|
|
{
|
|
"id": "whisper-large-v3",
|
|
"name": "Whisper Large v3",
|
|
"type": "stt",
|
|
"params": [
|
|
"language",
|
|
"response_format",
|
|
"temperature",
|
|
"prompt"
|
|
]
|
|
},
|
|
{
|
|
"id": "whisper-large-v3-turbo",
|
|
"name": "Whisper Large v3 Turbo",
|
|
"type": "stt",
|
|
"params": [
|
|
"language",
|
|
"response_format",
|
|
"temperature",
|
|
"prompt"
|
|
]
|
|
},
|
|
{
|
|
"id": "distil-whisper-large-v3-en",
|
|
"name": "Distil Whisper Large v3 EN",
|
|
"type": "stt",
|
|
"params": [
|
|
"language",
|
|
"response_format",
|
|
"temperature",
|
|
"prompt"
|
|
]
|
|
}
|
|
]
|
|
};
|