Forked from will-lms/openai-compat-endpoint
src / index.ts
// src/index.ts
import { configSchematics, globalConfigSchematics } from './config';
import { generate } from './generator';
export async function main(context: any) {
context.withConfigSchematics(configSchematics);
context.withGlobalConfigSchematics(globalConfigSchematics);
context.withGenerator(generate);
}