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);
    }
}

Key config

Installs
1
GitHub Stars
10
First Seen
Aug 11, 2026
nodeboot-starter-openai — nodejs-boot/node-boot