Project Files
src / config / config-schematics.ts
import { createConfigSchematics } from "@lmstudio/sdk"
import { AUTO_CONFIG_VALUE } from "./auto-sentinel"
/**
* Plugin configuration schematics registered with LM Studio.
* Exposes the settings shown in the plugin UI.
*/
export const configSchematics = createConfigSchematics()
.field(
"defaultTimezone",
"string",
{
displayName: "Default Timezone",
subtitle:
"IANA timezone name (e.g. America/New_York, Europe/London, UTC). Leave as 'auto' to use the host system timezone.",
},
AUTO_CONFIG_VALUE
)
.build()