Added Vector Store File List properties that allow for pagination (#891)

This commit is contained in:
Matt Davis
2024-11-08 08:53:02 -05:00
committed by GitHub
parent d10f1b8199
commit f5e6e0e4fe

View File

@@ -83,6 +83,9 @@ type VectorStoreFileRequest struct {
type VectorStoreFilesList struct {
VectorStoreFiles []VectorStoreFile `json:"data"`
FirstID *string `json:"first_id"`
LastID *string `json:"last_id"`
HasMore bool `json:"has_more"`
httpHeader
}