/**
 * Shared AI Provider Singleton
 * Single source of truth for AI client configuration.
 * Used by ai_response.ts, character_memory.ts, and any other modules needing AI access.
 */
import OpenAI from 'openai';
export interface AIProvider {
    client: OpenAI;
    model: string;
    name: string;
}
export declare const aiProvider: AIProvider;
//# sourceMappingURL=ai_provider.d.ts.map