src / config.ts
import { createConfigSchematics } from "@lmstudio/sdk";
export const configSchematics = createConfigSchematics()
.field(
"currentTime",
"boolean",
{
displayName: "Current Time",
subtitle: "Add the current time, date and timezone to the metadata",
},
false,
)
.field(
"osInfo",
"boolean",
{
displayName: "OS Info",
subtitle: "Add basic operating system info to the metadata",
},
false,
)
.build();