Forked from tupik/summary-chat
src / index.ts
import { type PluginContext } from "@lmstudio/sdk";
import { configSchematics } from "./config";
import { generate } from "./generator"; //test ./genera---
// You do not need to modify this file unless you want to add more components to the plugin
export async function main(context: PluginContext) {
context.withConfigSchematics(configSchematics);
//context.withGlobalConfigSchematics(globalConfigSchematics);
context.withGenerator(generate);
// Register the tools provider.
//context.withToolsProvider(toolsProvider);
}