/** * @fileoverview Static metadata for well-known LLM model families (Claude, ChatGPT, * Gemini, Llama, etc.) used for display purposes such as provider/maker attribution, * flagship model naming, and open vs. closed licensing status. */ export interface LanguageModelFamily { model_family: string; imgur: string; flagship: string; maker: string; providers: string[]; open: boolean; } export declare const LANGUAGE_MODEL_FAMILIES: LanguageModelFamily[];