Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 470 Bytes

vectorstorefileobjectstatus.md

File metadata and controls

17 lines (11 loc) · 470 Bytes

VectorStoreFileObjectStatus

The status of the vector store file, which can be either in_progress, completed, cancelled, or failed. The status completed indicates that the vector store file is ready for use.

Example Usage

import { VectorStoreFileObjectStatus } from "argot-open-ai/models/components";

let value: VectorStoreFileObjectStatus = "failed";

Values

"in_progress" | "completed" | "cancelled" | "failed"