import { ChatAdapter } from './ChatPanel'; export type OpenAIConfig = { apiKey: string; model: string; baseURL?: string; }; export declare function createOpenAIAdapter(cfg: OpenAIConfig, seedSystem?: string): ChatAdapter; //# sourceMappingURL=OpenAIAdapter.d.ts.map