Skip to content

FileContentItem

A content item from a vector store file.

Example Usage

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

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

Fields

FieldTypeRequiredDescription
type"text"✔️The content type.
textstring✔️The text content.