Search Results for

    Show / Hide Table of Contents

    Class VectorStoreFile

    Inheritance
    object
    OpenAIObject
    VectorStoreFile
    Implements
    IDeletionStatus
    Inherited Members
    OpenAIObject.Id
    OpenAIObject.Object
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.OpenAI
    Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
    Syntax
    public class VectorStoreFile : OpenAIObject, IDeletionStatus

    Properties

    | Edit this page View Source

    ChunkingStrategy

    The strategy used to chunk the file.

    Declaration
    [JsonProperty("chunking_strategy")]
    public ChunkingStrategy ChunkingStrategy { get; set; }
    Property Value
    Type Description
    ChunkingStrategy
    | Edit this page View Source

    CreatedAt

    The Unix timestamp (in seconds) of when this object was created.

    Declaration
    [JsonProperty("created_at")]
    public UnixTime? CreatedAt { get; set; }
    Property Value
    Type Description
    UnixTime?
    | Edit this page View Source

    LastError

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

    Declaration
    [JsonProperty("last_error")]
    public BackendException LastError { get; set; }
    Property Value
    Type Description
    BackendException
    | Edit this page View Source

    Status

    The status of the vector store files batch, which can be either in_progress, completed, cancelled or failed.

    Declaration
    [JsonProperty("status")]
    public string Status { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    UsageBytes

    The total number of bytes used by the files in the vector store.

    Declaration
    [JsonProperty("usage_bytes")]
    public long UsageBytes { get; set; }
    Property Value
    Type Description
    long
    | Edit this page View Source

    VectorStoreId

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

    Declaration
    [JsonProperty("vector_store_id")]
    public string VectorStoreId { get; set; }
    Property Value
    Type Description
    string

    Methods

    | Edit this page View Source

    IsDeleted()

    Declaration
    public bool IsDeleted()
    Returns
    Type Description
    bool

    Implements

    IDeletionStatus

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation