Files
openclaw/extensions/lmstudio/openclaw.plugin.json
T
Peter Steinberger 6aa27d6ecd refactor: retire August compat windows (embedding API, pi aliases, target parser, spawning hook, setup exports, WhatsApp inbound aliases) (#124416)
* refactor(plugin-sdk): retire embedded Pi aliases

* refactor(channels): retire explicit target compatibility

* refactor(plugins): retire subagent spawning hook

* refactor(plugin-sdk): retire shipped channel setup exports

* refactor(whatsapp): retire inbound callback aliases

Proof: focused build and WhatsApp E2E green; broad WhatsApp suite 188/189 files green. extensions/whatsapp/src/monitor-inbox.policy.test.ts flakes only in the parallel batch and passes isolated (10/10).

* refactor(plugin-sdk): retire memory embedding registrar

Migrate every bundled provider and manifest to registerEmbeddingProvider and contracts.embeddingProviders. Preserve memory-specific batching, local-service acquisition, index identity, and auto-selection through the canonical generic registry adapter, then remove the parallel registrar, registry, diagnostics, contracts, tests, and docs.

* chore(plugin-sdk): tighten retired surface budgets

Pin the post-retirement public SDK surface to 144 entrypoints, 4,312 exports, 2,564 callable exports, and 1,133 deprecated exports; agent-harness-runtime now permits exactly nine deprecated exports.
2026-08-15 22:43:47 -07:00

71 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,
"appGuidedActionLabel": "Connect server",
"appGuidedSecret": true,
"choiceLabel": "LM Studio",
"choiceHint": "Connect to a running LM Studio server and use an already loaded model",
"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": {
"embeddingProviders": ["lmstudio"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}