Skip to content

Commit

Permalink
make first_id and last_id in ListVectorStoresResponse optional (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
64bit authored Sep 26, 2024
1 parent 1e66487 commit 45e0f2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions async-openai/src/types/vector_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ pub struct VectorStoreFileCounts {
pub struct ListVectorStoresResponse {
pub object: String,
pub data: Vec<VectorStoreObject>,
pub first_id: String,
pub last_id: String,
pub first_id: Option<String>,
pub last_id: Option<String>,
pub has_more: bool,
}

Expand Down

0 comments on commit 45e0f2d

Please sign in to comment.