From c2de9434edde86b38443b89690c9910a67cfa25c Mon Sep 17 00:00:00 2001 From: Pawel Kosiec Date: Fri, 14 Jun 2024 15:30:19 +0200 Subject: [PATCH] Add missing pagination for vector store --- vector_store.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vector_store.go b/vector_store.go index 5c364362a..318abea24 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 }