/**
 * Enum representing available OpenAI models
 */
export declare enum EOpenAIModel {
    GPT_35_TURBO = "gpt-3.5-turbo",// Latest
    GPT_35_TURBO_0125 = "gpt-3.5-turbo-0125",
    GPT_35_TURBO_1106 = "gpt-3.5-turbo-1106",
    GPT_4 = "gpt-4",
    GPT_4_1 = "gpt-4.1",
    GPT_4_1_MINI = "gpt-4.1-mini",
    GPT_4_1_NANO = "gpt-4.1-nano",// Fastest 4.1 model
    GPT_4_32K = "gpt-4-32k",
    GPT_4_TURBO = "gpt-4-turbo",
    GPT_4_TURBO_PREVIEW = "gpt-4-turbo-preview",
    GPT_4O = "gpt-4o-2024-11-20",// Latest with enhanced creative writing
    GPT_4O_AUGUST = "gpt-4o-2024-08-06",
    GPT_4O_MAY = "gpt-4o",
    GPT_4O_MINI = "gpt-4o-mini",
    O1 = "o1",// Enhanced reasoning with image processing
    O1_MINI = "o1-mini",// Faster, cost-efficient reasoning
    O1_PREVIEW = "o1-preview",
    O3 = "o3",// Enhanced reasoning model
    O3_MINI = "o3-mini",
    O4_MINI = "o4-mini"
}
