Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.84 KB

vectorstorefileobjectlasterror.md

File metadata and controls

21 lines (15 loc) · 1.84 KB

VectorStoreFileObjectLastError

The last error associated with this vector store file. Will be null if there are no errors.

Example Usage

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

let value: VectorStoreFileObjectLastError = {
  code: "invalid_file",
  message: "<value>",
};

Fields

Field Type Required Description
code components.VectorStoreFileObjectCode ✔️ One of server_error or rate_limit_exceeded.
message string ✔️ A human-readable description of the error.