/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; export interface SearchResultRequest { /** The text of the chunk that matched the search query. */ text: string; /** A score representing how well the chunk matches the search query. */ score: number; keywords: string[]; /** The document that contains the chunk that matched the search query. */ document: Vellum.SearchResultDocumentRequest; /** Additional information about the search result. */ meta?: Vellum.SearchResultMetaRequest | null; }