Class VectorStoreRequest
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: .dll
Syntax
public class VectorStoreRequest : ModelRequest
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.
Declaration
public ChunkingStrategy ChunkingStrategy { get; set; }
Property Value
Type | Description |
---|---|
ChunkingStrategy |
ExpiresAfter
The expiration policy for a vector store.
Declaration
public Expiration ExpiresAfter { get; set; }
Property Value
Type | Description |
---|---|
Expiration |
FileIds
A list of File IDs that the vector store should use. Useful for tools like file_search that can access files.
Declaration
public string[] FileIds { get; set; }
Property Value
Type | Description |
---|---|
string[] |
Name
The name of the vector store.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |