@nomyx/assistant
Version:
A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)
11 lines (10 loc) • 324 B
TypeScript
import { ILogger } from '../../../types/common';
import { AnthropicProviderConfig } from './types';
export declare class AnthropicConfig {
private config;
private logger;
constructor(config: AnthropicProviderConfig, logger: ILogger);
get apiKey(): string;
get model(): string;
getApiUrl(): string;
}