export interface RerankResponseDataItem { /** The index of the document in the input list. */ index?: number; /** The relevance score of the document with respect to the query. */ relevanceScore?: number; /** The document string. Only returned when return_documents is set to true. */ document?: string; }