Skip to content

Commit

Permalink
Added Vector Store File List properties that allow for pagination (#891)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattDavisRV authored Nov 8, 2024
1 parent d10f1b8 commit f5e6e0e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vector_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit f5e6e0e

Please sign in to comment.