
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
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
The npm package nestjs-generative-ai receives a total of 9 weekly downloads. As such, nestjs-generative-ai popularity was classified as not popular.
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.