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

interface LastError {
    code: "server_error" | "unsupported_file" | "invalid_file";
    message: string;
}

Properties

Properties

code: "server_error" | "unsupported_file" | "invalid_file"

One of server_error or rate_limit_exceeded.

message: string

A human-readable description of the error.