SRC / config.ts
import { createConfigSchematics } from "@lmstudio/sdk";
export const configSchematics = createConfigSchematics()
.field(
"memoryPath",
"string",
{
displayName: "Memory File Path",
subtitle: "Full path to your memory.md file. Example: C:\\Users\\YourName\\.lmstudio\\memory\\memory.md",
},
"C:\\\\Users\\\\nikki\\\\Documents\\\\brain\\\\memory\\\\memory.md"
)
.build();