Skip to content

VectorSearchResultContent

Content item in a search result.

Example Usage

typescript
import { VectorSearchResultContent } from "@meetkai/mka1/models/components";

let value: VectorSearchResultContent = {
  type: "text",
  text: "<value>",
};

Fields

FieldTypeRequiredDescription
type"text"✔️The content type identifier for text content.
textstring✔️The text content of the search result.