UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

14 lines (13 loc) 374 B
import { OpenAIProviderConfig } from './types'; import { ILogger } from '../../../types/common'; export declare class OpenAIConfig { private apiKey; private model; private type; private logger; constructor(config: OpenAIProviderConfig, logger: ILogger); getApiKey(): string; getModel(): string; getType(): string; getLogger(): ILogger; }