Table of Contents

Class VectorStoreFileObject

public class VectorStoreFileObject : BaseResponse, IEquatable<ObjectBaseResponse>, IEquatable<BaseResponse>, IEquatable<VectorStoreFileObject>
Inheritance
System.Object
VectorStoreFileObject
Implements
System.IEquatable<ObjectBaseResponse>
System.IEquatable<BaseResponse>
System.IEquatable<VectorStoreFileObject>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()

Properties

CreatedAt

The Unix timestamp (in seconds) for when the vector store file was created.

[JsonPropertyName("created_at")]
public int CreatedAt { get; set; }

Property Value

System.Int32

Id

The identifier, which can be referenced in API endpoints.

[JsonPropertyName("id")]
public string Id { get; set; }

Property Value

System.String

LastError

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

[JsonPropertyName("last_error")]
public Error LastError { get; set; }

Property Value

Error

Status

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.

[JsonPropertyName("status")]
public string Status { get; set; }

Property Value

System.String

UsageBytes

The total vector store usage in bytes. Note that this may be different from the original file size.

[JsonPropertyName("usage_bytes")]
public int UsageBytes { get; set; }

Property Value

System.Int32

VectorStoreId

The ID of the vector store that the File is attached to.

[JsonPropertyName("vector_store_id")]
public string VectorStoreId { get; set; }

Property Value

System.String