Class VectorStoreRequest
public class VectorStoreRequest : AIRequest
- Inheritance
-
objectVectorStoreRequest
- Inherited Members
Properties
ChunkingStrategy
The chunking strategy used to chunk the file(s). If not set, will use the auto strategy. Only applicable if file_ids is non-empty.
public ChunkingStrategy ChunkingStrategy { get; set; }
Property Value
ExpiresAfter
The expiration policy for a vector store.
public ExpiresAfter ExpiresAfter { get; set; }
Property Value
FileIds
A list of File IDs that the vector store should use. Useful for tools like file_search that can access files.
public string[] FileIds { get; set; }
Property Value
- string[]
Name
The name of the vector store.
public string Name { get; set; }
Property Value
- string