config.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.pluginConfigSchematics = void 0;
const sdk_1 = require("@lmstudio/sdk");
exports.pluginConfigSchematics = (0, sdk_1.createConfigSchematics)()
.field("dataPath", "string", {
displayName: "Data Path",
subtitle: "Directory for founder data JSON. Defaults to ~/founder-data/.",
}, "")
.field("searxngUrl", "string", {
displayName: "SearXNG URL",
subtitle: "Self-hosted SearXNG base URL (e.g. http://localhost:8080). Falls back to DDG/Bing if blank.",
}, "")
.build();