Table of Contents

Class VectorStores

Namespace
OpenAI.ObjectModels.RequestModels
Assembly
AntRunnerLib.dll
public class VectorStores : IOpenAiModels.IFileIds, IOpenAiModels.IMetaData
Inheritance
System.Object
VectorStores
Implements
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

FileIds

A list of file IDs to add to the vector store. There can be a maximum of 10000 files in a vector store.

[JsonPropertyName("file_ids")]
public List<string>? FileIds { get; set; }

Property Value

System.Nullable<List<System.String>>

Metadata

Set of 16 key-value pairs that can be attached to a vector store. This can be useful for storing additional information about the vector store in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.

[JsonPropertyName("metadata")]
public Dictionary<string, string>? Metadata { get; set; }

Property Value

System.Nullable<Dictionary<System.String, System.String>>