@nomyx/assistant
Version:
A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)
13 lines (12 loc) • 391 B
TypeScript
import { ILogger } from '../../../types/common';
import { AzureProviderConfig } from './types';
export declare class AzureConfig {
private config;
private logger;
constructor(config: AzureProviderConfig, logger: ILogger);
get apiKey(): string;
get endpoint(): string;
get deployment(): string;
get subscriptionId(): string;
getApiUrl(path: string): string;
}