Class VectorStoreFile
public class VectorStoreFile : OpenAIObject
- Inheritance
-
objectVectorStoreFile
- Inherited Members
Properties
ChunkingStrategy
The strategy used to chunk the file.
public ChunkingStrategy ChunkingStrategy { get; set; }
Property Value
CreatedAt
The Unix timestamp (in seconds) of when this object was created.
public UnixTime? CreatedAt { get; set; }
Property Value
- UnixTime?
LastError
The last error associated with this vector store file. Will be null if there are no errors.
public ErrorInfo LastError { get; set; }
Property Value
- ErrorInfo
Status
The status of the vector store files batch, which can be either in_progress, completed, cancelled or failed.
public string Status { get; set; }
Property Value
- string
UsageBytes
The total number of bytes used by the files in the vector store.
public long UsageBytes { get; set; }
Property Value
- long
VectorStoreId
The ID of the vector store that the File is attached to.
public string VectorStoreId { get; set; }
Property Value
- string