/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Minimal serializer for LLMModelRegistry in fallback configs. */ export type LLMModelRegistryMinimal = { readonly id: number; /** * Model identifier (e.g., 'gpt-4o', 'gemini-2.5-pro') */ readonly llm_name: string; /** * Human-readable model name */ readonly display_name: string; readonly provider_name: string; };