// SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 // // Based on https://github.com/64bit/async-openai/ by Himanshu Neema // Original Copyright (c) 2022 Himanshu Neema // Licensed under MIT License (see ATTRIBUTIONS-Rust.md) // // Modifications Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. // Licensed under Apache 2.0 use serde::Serialize; use crate::{ Client, VectorStoreFiles, config::Config, error::OpenAIError, types::{ CreateVectorStoreRequest, DeleteVectorStoreResponse, ListVectorStoresResponse, UpdateVectorStoreRequest, VectorStoreObject, VectorStoreSearchRequest, VectorStoreSearchResultsPage, }, vector_store_file_batches::VectorStoreFileBatches, }; pub struct VectorStores<'c, C: Config> { client: &'c Client, } impl<'c, C: Config> VectorStores<'c, C> { pub fn new(client: &'c Client) -> Self { Self { client } } /// [VectorStoreFiles] API group pub fn files(&self, vector_store_id: &str) -> VectorStoreFiles { VectorStoreFiles::new(self.client, vector_store_id) } /// [VectorStoreFileBatches] API group pub fn file_batches(&self, vector_store_id: &str) -> VectorStoreFileBatches { VectorStoreFileBatches::new(self.client, vector_store_id) } /// Create a vector store. #[crate::byot(T0 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn create( &self, request: CreateVectorStoreRequest, ) -> Result { self.client.post("/vector_stores", request).await } /// Retrieves a vector store. #[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)] pub async fn retrieve(&self, vector_store_id: &str) -> Result { self.client .get(&format!("/vector_stores/{vector_store_id}")) .await } /// Returns a list of vector stores. #[crate::byot(T0 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn list(&self, query: &Q) -> Result where Q: Serialize + ?Sized, { self.client.get_with_query("/vector_stores", &query).await } /// Delete a vector store. #[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)] pub async fn delete( &self, vector_store_id: &str, ) -> Result { self.client .delete(&format!("/vector_stores/{vector_store_id}")) .await } /// Modifies a vector store. #[crate::byot(T0 = std::fmt::Display, T1 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn update( &self, vector_store_id: &str, request: UpdateVectorStoreRequest, ) -> Result { self.client .post(&format!("/vector_stores/{vector_store_id}"), request) .await } /// Searches a vector store. #[crate::byot(T0 = std::fmt::Display, T1 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn search( &self, vector_store_id: &str, request: VectorStoreSearchRequest, ) -> Result { self.client .post(&format!("/vector_stores/{vector_store_id}/search"), request) .await } }