UNPKG

@webeleon/nestjs-openai

Version:
11 lines (10 loc) 311 B
export declare const CONFIG_OPTIONS = "CONFIG_OPTIONS"; export interface OpenAIModuleOptions { apiKey: string; model: string; } export interface OpenAIModuleAsyncOptions { imports?: any[]; inject?: any[]; useFactory: (...args: any[]) => Promise<OpenAIModuleOptions> | OpenAIModuleOptions; }