/** * Browser-safe exports of model constants and types. * This file contains only pure data and types with no Node.js dependencies. */ export { modelByProvider, type SupportedProvider, type AllSupportedModels, } from "./core/provider-and-models"; export type AppGenerationModel = "claude-opus-4-6" | "claude-opus-4-5" | "gemini-3.1-pro-preview" | "gemini-3-flash-preview" | "gemini-3.1-flash-lite-preview"; export declare const APP_GENERATION_MODELS: AppGenerationModel[]; //# sourceMappingURL=models.d.ts.map