dist / config.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.configSchematics = void 0;
const sdk_1 = require("@lmstudio/sdk");
exports.configSchematics = (0, sdk_1.createConfigSchematics)()
.field("apiBase", "string", {
displayName: "LM Studio API Base URL",
subtitle: "Base URL for LM Studio REST API. Example: http://127.0.0.1:1234",
}, "")
.field("apiToken", "string", {
displayName: "API Token",
subtitle: "Optional. Set if authentication is enabled in LM Studio Developer settings.",
}, "")
.field("handoffDir", "string", {
displayName: "Handoff Directory",
subtitle: "Directory where handoff documents are written. Example: C:\\Users\\YourName\\.lmstudio\\handoff",
}, "")
.build();