ListVectorStoreFilesInBatchRequest
Example Usage
typescript
import { ListVectorStoreFilesInBatchRequest } from "@meetkai/mka1/models/operations";
let value: ListVectorStoreFilesInBatchRequest = {
vectorStoreId: "vs_abc123",
batchId: "vsfb_abc123",
after: "file-abc123",
filter: "completed",
};Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
vectorStoreId | string | ✔️ | N/A | vs_abc123 |
batchId | string | ✔️ | N/A | vsfb_abc123 |
limit | number | ➖ | N/A | 20 |
order | operations.ListVectorStoreFilesInBatchQueryParamOrder | ➖ | Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. | desc |
after | string | ➖ | N/A | file-abc123 |
before | string | ➖ | N/A | |
filter | operations.QueryParamFilter | ➖ | Filter by file status. One of in_progress, completed, failed, cancelled. | completed |