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
| Field | Type | Required | Description |
|---|---|---|---|
fileId | string | ✔️ | The ID of the file. |
filename | string | ✔️ | The name of the file. |
attributes | Record<string, components.VectorStoreFileContentAttributes> | ➖ | File attributes. |
content | components.FileContentItem[] | ✔️ | Array of parsed content items from the file. |