Files
9router/open-sse/providers/registry/chutes.js
T
decoluaandCursor dd1e0f9bcc refactor(registry): B2 migrate to LiteLLM-style schema — unified models[] with kind field
- 71 registry files: flat `media.*Config.models` → `models[]` with `kind` field
- `media` wrapper removed → serviceKinds, *Config fields promoted top-level
- `type` field renamed to `kind` (llm/image/tts/stt/embedding/embedding/video/music)
- providers/index.js: PROVIDER_MEDIA now built from flat top-level media fields
- shared/constants/providers.js: buildProviderEntry reads flat top-level media fields
- route /v1/models: modelKind() uses kind||type; removed subConfig merge block
- models/info route: removed sub-config fallback lookup (all models in PROVIDER_MODELS)
- ttsProviders/index.js: synthesizeViaConfig reads tts models from PROVIDER_MODELS
- test-models route, helpers.js, validate route: kind||type compat
- Baselines: PROVIDERS 62/62 , Alias 90/90 

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-14 14:32:59 +07:00

24 lines
462 B
JavaScript

export default {
id: "chutes",
alias: "chutes",
aliases: [
"ch",
],
uiAlias: "ch",
display: {
name: "Chutes AI",
icon: "water_drop",
color: "#ffffffff",
textIcon: "CH",
website: "https://chutes.ai",
notice: {
apiKeyUrl: "https://chutes.ai/app/api",
},
},
category: "apikey",
transport: {
baseUrl: "https://llm.chutes.ai/v1/chat/completions",
validateUrl: "https://llm.chutes.ai/v1/models",
},
};