export type OpenAiApiKeyPublicConfig = Readonly<{ baseUrl?: string; }>; export type OpenAiApiKeyMaterial = Readonly<{ apiKey?: string; }>; export type OpenAiApiKeySession = Readonly<{ apiKey: string; baseUrl?: string; }>;