nodeboot-starter-openai
Installation
SKILL.md
@nodeboot/starter-openai
Use this starter for one default OpenAI-compatible client loaded from config. If the app needs multiple named AI clients, the package README shows the custom @Configuration() + @Bean("name") pattern instead of @EnableOpenAI().
Enable
@EnableDI(Container)
@EnableOpenAI()
@EnableComponentScan()
@NodeBootApplication()
export class MyApplication implements NodeBootApp {
start(): Promise<NodeBootAppView> {
return NodeBoot.run(ExpressServer);
}
}