mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 22:21:33 +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
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"id": "lmstudio",
|
|
"icon": "https://cdn.simpleicons.org/lmstudio",
|
|
"activation": {
|
|
"onStartup": false
|
|
},
|
|
"enabledByDefault": true,
|
|
"providers": ["lmstudio"],
|
|
"modelCatalog": {
|
|
"discovery": {
|
|
"lmstudio": "refreshable"
|
|
}
|
|
},
|
|
"providerRequest": {
|
|
"providers": {
|
|
"lmstudio": {
|
|
"family": "lmstudio",
|
|
"openAICompletions": {
|
|
"supportsStreamingUsage": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"modelPricing": {
|
|
"providers": {
|
|
"lmstudio": {
|
|
"external": false
|
|
}
|
|
}
|
|
},
|
|
"nonSecretAuthMarkers": ["lmstudio-local"],
|
|
"syntheticAuthRefs": ["lmstudio"],
|
|
"setup": {
|
|
"providers": [
|
|
{
|
|
"id": "lmstudio",
|
|
"envVars": ["LM_API_TOKEN"]
|
|
}
|
|
]
|
|
},
|
|
"providerAuthChoices": [
|
|
{
|
|
"provider": "lmstudio",
|
|
"method": "custom",
|
|
"choiceId": "lmstudio",
|
|
"appGuidedDiscovery": true,
|
|
"appGuidedSecret": true,
|
|
"choiceLabel": "LM Studio",
|
|
"choiceHint": "Local/self-hosted LM Studio server",
|
|
"icon": "https://cdn.simpleicons.org/lmstudio",
|
|
"website": "https://lmstudio.ai/download",
|
|
"optionKey": "lmstudioApiKey",
|
|
"cliFlag": "--lmstudio-api-key",
|
|
"cliOption": "--lmstudio-api-key <key>",
|
|
"cliDescription": "LM Studio API key",
|
|
"groupId": "lmstudio",
|
|
"groupLabel": "LM Studio",
|
|
"groupHint": "Self-hosted open-weight models"
|
|
}
|
|
],
|
|
"contracts": {
|
|
"memoryEmbeddingProviders": ["lmstudio"]
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {}
|
|
}
|
|
}
|