Udostępnij za pośrednictwem


SearchResult type

Zawiera dokument znaleziony przez zapytanie wyszukiwania oraz skojarzone metadane.

type SearchResult<TModel, TFields> = {
  captions?: QueryCaptionResult[]
  document: NarrowedModel<TModel, TFields>
  highlights?: { [k in SelectFields<TModel>]?: string[] }
  rerankerScore?: number
  score: number
}