Skip to content

Commit 45e0f2d

Browse files
authored
make first_id and last_id in ListVectorStoresResponse optional (64bit#270)
1 parent 1e66487 commit 45e0f2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

async-openai/src/types/vector_store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ pub struct VectorStoreFileCounts {
105105
pub struct ListVectorStoresResponse {
106106
pub object: String,
107107
pub data: Vec<VectorStoreObject>,
108-
pub first_id: String,
109-
pub last_id: String,
108+
pub first_id: Option<String>,
109+
pub last_id: Option<String>,
110110
pub has_more: bool,
111111
}
112112

0 commit comments

Comments
 (0)