mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 11:11:35 +00:00
* feat: discover models from live provider catalogs * fix(provider-catalog): satisfy current catalog contracts * fix(deps): update fast-uri past new advisory * fix(deps): refresh fast-uri shrinkwraps * fix(openrouter): satisfy provider catalog lint * fix(agents): preserve refreshable catalog metadata * test(agents): keep catalog fallback proof within lint budget * fix(provider-catalog): honor live model contracts * fix(minimax): type discovery headers explicitly * docs(plugin-sdk): define live model discovery contract
56 lines
1.0 KiB
JSON
56 lines
1.0 KiB
JSON
{
|
|
"id": "vllm",
|
|
"activation": {
|
|
"onStartup": false
|
|
},
|
|
"enabledByDefault": true,
|
|
"providers": ["vllm"],
|
|
"modelCatalog": {
|
|
"discovery": {
|
|
"vllm": "refreshable"
|
|
}
|
|
},
|
|
"providerRequest": {
|
|
"providers": {
|
|
"vllm": {
|
|
"family": "vllm",
|
|
"openAICompletions": {
|
|
"supportsStreamingUsage": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"modelPricing": {
|
|
"providers": {
|
|
"vllm": {
|
|
"external": false
|
|
}
|
|
}
|
|
},
|
|
"setup": {
|
|
"providers": [
|
|
{
|
|
"id": "vllm",
|
|
"envVars": ["VLLM_API_KEY"]
|
|
}
|
|
]
|
|
},
|
|
"providerAuthChoices": [
|
|
{
|
|
"provider": "vllm",
|
|
"method": "custom",
|
|
"choiceId": "vllm",
|
|
"choiceLabel": "vLLM",
|
|
"choiceHint": "Local/self-hosted OpenAI-compatible server",
|
|
"groupId": "vllm",
|
|
"groupLabel": "vLLM",
|
|
"groupHint": "Local/self-hosted OpenAI-compatible"
|
|
}
|
|
],
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {}
|
|
}
|
|
}
|