Class VectorStoreFile
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: .dll
Syntax
public class VectorStoreFile : ModelResponse
Properties
ChunkingStrategy
The strategy used to chunk the file.
Declaration
public ChunkingStrategy ChunkingStrategy { get; set; }
Property Value
Type | Description |
---|---|
ChunkingStrategy |
LastError
The last error associated with this vector store file. Will be null if there are no errors.
Declaration
public ErrorResponse LastError { get; set; }
Property Value
Type | Description |
---|---|
ErrorResponse |
Status
The status of the vector store files batch, which can be either in_progress, completed, cancelled or failed.
Declaration
public string Status { get; set; }
Property Value
Type | Description |
---|---|
string |
UsageBytes
The total number of bytes used by the files in the vector store.
Declaration
public long UsageBytes { get; set; }
Property Value
Type | Description |
---|---|
long |
VectorStoreId
The ID of the vector store that the File is attached to.
Declaration
public string VectorStoreId { get; set; }
Property Value
Type | Description |
---|---|
string |