import { createConfigSchematics } from "@lmstudio/sdk";
export const configSchematics = createConfigSchematics()
.field(
"operatingSystem",
"select",
{
displayName: "Operating System",
description: "Selects the command syntax hints for the AI.",
options: [
{ displayName: "Windows (CMD Default)", value: "windows" },
{ displayName: "Linux / macOS", value: "linux" },
],
},
"windows"
)
.field(
"defaultTimeout",
"numeric",
{
displayName: "Timeout (ms)",
description: "Max execution time.",
},
15000
)
.build();