MemWireConfig.
Supported databases
Qdrant
Embedded file mode, local Docker server, or managed Qdrant Cloud.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect MemWire to a vector store.
MemWireConfig.
from memwire import MemWire, MemWireConfig
config = MemWireConfig(
qdrant_url="http://localhost:6333", # or qdrant_path for embedded mode
qdrant_collection_prefix="app_",
)
memory = MemWire(config=config)
Was this page helpful?
