/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * context: ["context"], * document: "document" * } */ export interface CreateGuidanceRequest { /** The context of the guidance document, as a list of strings, that will be indexed. Each string will be vectorized separately to generate a separate record. */ context: string[]; /** The content of the guidance document that will be returned to Ask Fern during Ask Fern retrieval. */ document: string; }