from memwire import MemWire, MemWireConfig# These are the defaults — no config needed unless you want to change themconfig = MemWireConfig( model_name="sentence-transformers/all-MiniLM-L6-v2", embedding_dim=384, sparse_model_name="prithivida/Splade_PP_en_v1",)memory = MemWire(config=config)
Model
Type
Dimensions
Notes
sentence-transformers/all-MiniLM-L6-v2
Dense
384
Fast, multilingual-friendly, good general-purpose baseline
If you change the embedding model after data has already been stored, the existing vectors will be incompatible with new embeddings. Reset your Qdrant storage when switching models.
Enable a cross-encoder reranker to re-score the top candidates after initial retrieval. This improves precision at the cost of slightly higher latency.