import type { GptHistoryProfile, GptRenderStyle } from './gpt-model-profiles.js'; /** * Shared defaults for the built-in profile tables. * * These live outside gpt-model-profiles.ts so per-provider profile files * (claude-model-profiles.ts, gemini-model-profiles.ts) can reuse them: those * files are imported BY gpt-model-profiles.ts, so importing the constants back * out of it would be a cycle, and the profiles are top-level consts, so the * cycle would be a load-time TDZ crash rather than a lint warning. */ /** * Conservative list-price ratios for families pxpipe has not priced explicitly. * Deliberately mid-range: an unknown model must not be reported at the most * favourable (gpt-5) cache discount, and must not be priced at Anthropic's. */ export declare const BASE_PRICING: { /** cached input ÷ uncached input */ cacheReadRate: number; /** output ÷ uncached input */ outputRate: number; }; export declare const BASE_STYLE: GptRenderStyle; export declare const BASE_HISTORY: GptHistoryProfile; //# sourceMappingURL=profile-base.d.ts.map