
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
nestjs-generative-ai
Advanced tools
A selection of useful one-liner decorators, pipes and services to boost your NestJS APIs with Generative AI sweetness
A selection of useful one-liner decorators, pipes and services to boost your NestJS APIs with Generative AI sweetness
Explore the docs »
View Demos
·
Report Bug
·
Request Feature
@AISpecifications
@AIFeedback
AISummarizeDocumentPipe
... and more to come!
This lib was tested only on and thus require Node.js >=21.6.1, NestJS ^10.3.3
You will also need both the library and class-transformer
and @nestjs/config
to make the magic happen
# with npm
npm install nestjs-generative-ai
# with yarn
yarn add nestjs-generative-ai
# with pnpm
pnpm add nestjs-generative-ai
Configure the library in the module you want to use it in. If you want to use it globally, configure it in the main app module.
The library currently only works with OpenAI so you will need to set the OPENAI_API_KEY
which you will find on OpenAI's website and set in your environment variables.
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { GenerativeAIModule } from 'nestjs-generative-ai';
@Module({
imports: [
ConfigModule.forRoot(),
GenerativeAIModule.forRootAsync({
imports: [ConfigModule],
useFactory: async (configService: ConfigService) => ({
modelApiKey: configService.get('OPENAI_API_KEY') as string,
}),
inject: [ConfigService],
}),
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
If you also want to enable validation globally, you should configure the ValidationPipe
in your main.ts
file
import { ValidationPipe } from '@nestjs/common';
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.useGlobalPipes(new ValidationPipe({ transform: true }));
await app.listen(3000);
}
bootstrap();
No FAQ at the moment
We are just getting started on this project and would highly appreciate contributions
Distributed under the MIT License. See LICENSE for more information.
FAQs
A selection of useful one-liner decorators, pipes and services to boost your NestJS APIs with Generative AI sweetness
We found that nestjs-generative-ai demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.