Class VectorStoreFileResponse

VectorStoreFileResponse class

A vector store file response.

public class VectorStoreFileResponse : BaseResponse, IStatus

Constructors

NameDescription
VectorStoreFileResponse()The default constructor.

Properties

NameDescription
CreatedAt { get; set; }Gets or sets the Unix timestamp (in seconds) for when the vector store file was created.
Detail { get; set; }Gets or sets the response detail.
Error { get; set; }Gets or sets the HTTP response error.
ErrorMessage { get; }Gets or sets the error information.
HttpResponseHeaders { get; set; }Gets or sets the HTTP response headers.
HttpStatusCode { get; set; }Gets or sets the HTTP status code.
Id { get; set; }Gets or sets the identifier, which can be referenced in API endpoints. ///
IsSuccessful { get; }Indicates if the response was successful.
LastError { get; set; }Gets or sets the last error associated with this vector store file. Will be null if there are no errors.
Object { get; set; }Gets or sets the object type, which is always vector_store.file.
ReasonPhrase { get; }Gets the error reason phrase.
Status { get; set; }Gets or sets 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.
UsageBytes { get; set; }Gets or sets the total vector store usage in bytes. Note that this may be different from the original file size.
VectorStoreId { get; set; }Gets or sets the ID of the vector store that the File is attached to.

See Also