Skip to content

VectorStoreFileContent

The parsed contents of a vector store file.

Example Usage

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

let value: VectorStoreFileContent = {
  fileId: "<id>",
  filename: "example.file",
  content: [],
};

Fields

FieldTypeRequiredDescription
fileIdstring✔️The ID of the file.
filenamestring✔️The name of the file.
attributesRecord<string, components.VectorStoreFileContentAttributes>File attributes.
contentcomponents.FileContentItem[]✔️Array of parsed content items from the file.