SearchResult type
검색 쿼리에서 찾은 문서와 연결된 메타데이터를 포함합니다.
type SearchResult<TModel, TFields> = {
captions?: QueryCaptionResult[]
document: NarrowedModel<TModel, TFields>
highlights?: { [k in SelectFields<TModel>]?: string[] }
rerankerScore?: number
score: number
}