Class swarmauri_base.vector_stores.VectorStorePersistentMixin.VectorStorePersistentMixin
    
              Bases: IPersistentVectorStore, BaseModel
Mixin class for persistent-based vector stores.
instance-attribute
  
collection_name
class-attribute
      instance-attribute
  
collection = Field(
    None,
    description="Collection object for interacting with the persistent-based store",
)
class-attribute
      instance-attribute
  
path = Field(
    None,
    description="URL of the persistent-based store to connect to",
)
class-attribute
      instance-attribute
  
vector_size = Field(
    None,
    description="Size of the vectors used in the store",
)
class-attribute
      instance-attribute
  
client = Field(
    None,
    description="Client object for interacting with the persistent-based store",
)
class-attribute
      instance-attribute
  
vectorizer = Field(
    None,
    description="Vectorizer object for converting documents to vectors",
)