/** * This file was auto-generated by Fern from our API Definition. */ /** * A LLM can be used to enhance query results with a response, and be used as * the responder during a chat. */ export interface Llm { /** The ID of the LLM. */ id?: string; /** Name of the LLM. */ name?: string; /** The description of the LLM. */ description?: string; /** Indicates whether the LLM is enabled. */ enabled?: boolean; /** * If this is the default LLM, it is used in queries when the generator * is not specified. */ default?: boolean; prompts?: unknown; }