CreateVectorStoreRequest
Request body for creating a vector store.
Example Usage
typescript
import { CreateVectorStoreRequest } from "@meetkai/mka1/models/components";
let value: CreateVectorStoreRequest = {};Fields
| Field | Type | Required | Description |
|---|---|---|---|
name | string | ➖ | The name of the vector store. |
description | string | ➖ | A description for the vector store. Can be used to describe the vector store's purpose. |
fileIds | string[] | ➖ | A list of File IDs that the vector store should use. Useful for tools like file_search that can access files. |
expiresAfter | components.ExpiresAfter | ➖ | The expiration policy for a vector store. |
chunkingStrategy | components.CreateVectorStoreRequestChunkingStrategy | ➖ | The chunking strategy used to chunk the file(s). If not set, will use the auto strategy. Only applicable if file_ids is non-empty. |
metadata | Record<string, string> | ➖ | Set of 16 key-value pairs that can be attached to an object. Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters. |