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
| Field | Type | Required | Description |
|---|---|---|---|
type | "text" | ✔️ | The content type. |
text | string | ✔️ | The text content. |