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: StorageConfig
Storage backend configuration
embedding: Option<EmbeddingConfig>
Embedding model configuration (optional)
search: SearchConfig
Default search configuration
options: HashMap<String, MetadataValue>
System-wide options
Implementations§
Source§impl VectorSystemConfig
impl VectorSystemConfig
Sourcepub fn memory() -> VectorSystemConfig
pub fn memory() -> VectorSystemConfig
Create a new configuration with memory storage
Sourcepub fn sqlite(database_path: impl Into<String>) -> VectorSystemConfig
pub fn sqlite(database_path: impl Into<String>) -> VectorSystemConfig
Create a new configuration with SQLite storage
Sourcepub fn qdrant(
url: impl Into<String>,
collection: impl Into<String>,
) -> VectorSystemConfig
pub fn qdrant( url: impl Into<String>, collection: impl Into<String>, ) -> VectorSystemConfig
Create a new configuration with Qdrant storage
Sourcepub fn with_embedding(self, embedding: EmbeddingConfig) -> VectorSystemConfig
pub fn with_embedding(self, embedding: EmbeddingConfig) -> VectorSystemConfig
Set the embedding configuration
Sourcepub fn with_search_config(self, search: SearchConfig) -> VectorSystemConfig
pub fn with_search_config(self, search: SearchConfig) -> VectorSystemConfig
Set the search configuration
Sourcepub fn with_option(
self,
key: impl Into<String>,
value: impl Into<MetadataValue>,
) -> VectorSystemConfig
pub fn with_option( self, key: impl Into<String>, value: impl Into<MetadataValue>, ) -> VectorSystemConfig
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 · 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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more