diff --git a/vector_store.go b/vector_store.go index 0a0a59662..6d4a441e2 100644 --- a/vector_store.go +++ b/vector_store.go @@ -84,6 +84,10 @@ 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 }