pub struct VectorSystemConfig {
pub storage: StorageConfig,
pub embedding: Option<EmbeddingConfig>,
pub search: SearchConfig,
pub options: HashMap<String, MetadataValue>,
}Expand description
Complete vector storage system configuration
Fields§
§storage: StorageConfigStorage backend configuration
embedding: Option<EmbeddingConfig>Embedding model configuration (optional)
search: SearchConfigDefault search configuration
options: HashMap<String, MetadataValue>System-wide options
Implementations§
Source§impl VectorSystemConfig
impl VectorSystemConfig
Sourcepub fn sqlite(database_path: impl Into<String>) -> Self
pub fn sqlite(database_path: impl Into<String>) -> Self
Create a new configuration with SQLite storage
Sourcepub fn qdrant(url: impl Into<String>, collection: impl Into<String>) -> Self
pub fn qdrant(url: impl Into<String>, collection: impl Into<String>) -> Self
Create a new configuration with Qdrant storage
Sourcepub fn with_embedding(self, embedding: EmbeddingConfig) -> Self
pub fn with_embedding(self, embedding: EmbeddingConfig) -> Self
Set the embedding configuration
Sourcepub fn with_search_config(self, search: SearchConfig) -> Self
pub fn with_search_config(self, search: SearchConfig) -> Self
Set the search configuration
Sourcepub fn with_option(
self,
key: impl Into<String>,
value: impl Into<MetadataValue>,
) -> Self
pub fn with_option( self, key: impl Into<String>, value: impl Into<MetadataValue>, ) -> Self
Add a system option
Trait Implementations§
Source§impl Clone for VectorSystemConfig
impl Clone for VectorSystemConfig
Source§fn clone(&self) -> VectorSystemConfig
fn clone(&self) -> VectorSystemConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VectorSystemConfig
impl RefUnwindSafe for VectorSystemConfig
impl Send for VectorSystemConfig
impl Sync for VectorSystemConfig
impl Unpin for VectorSystemConfig
impl UnsafeUnpin for VectorSystemConfig
impl UnwindSafe for VectorSystemConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more