Files
clawdbot/apps/macos/Sources/Clawdis/Resources/WebChat/lmstudio-sdk-stub.js
2025-12-07 17:44:37 +01:00

20 lines
383 B
JavaScript

// Minimal stub to satisfy @lmstudio/sdk imports in the bundled web chat.
export class LMStudioClient {
constructor() {
this.system = {
async listDownloadedModels() {
return [];
},
};
}
}
export function connect() {
throw new Error("LM Studio is not available in the embedded web chat bundle.");
}
export default {
LMStudioClient,
connect,
};