AxAIProfileSummary
type AxAIProfileSummary = Readonly<{
aliases: readonly string[];
authentication: Readonly<AxAIProfileAuthentication>;
baseURL?: string;
capabilities: Readonly<AxAIProfileCapabilities>;
defaultEmbedModel?: string;
defaultModel?: string;
endpoint?: Readonly<AxAIProfileEndpoint>;
id: AxAIProfileId;
modelRules: readonly Readonly<AxAIProfileModelRule>[];
name: string;
operations: Readonly<Record<string, Readonly<AxAIProfileOperation>>>;
requiresApiURL: boolean;
reviewedAt: string;
sources: readonly string[];
transport: AxAIProfileTransport;
}>;
Defined in: https://github.com/ax-llm/ax/blob/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/provider_profiles.ts#L161