Zynoo

Results 4 comments of Zynoo

> Having sometimes a similar issue, after restart it works again in general. > > Today the service works for 2 of 6 numbers i'm running the service with but...

`from mem0 import Memory config = { "vector_store": { "provider": "milvus", "config": { "url": "http://127.0.0.1:19530", "token": "", "collection_name": "mem0_memories", "embedding_model_dims": 1024, "metric_type": "COSINE", "dbname": "mem0_db", }, }, ... } memory...

Bug Reproduction ` # use MilvusDB as vector_store memory = Memory.from_config(config) memory.add( messages="i don't like curry now", user_id="default_user", ) print(memory.get_all(user_id="default_user")) ` I checked the function declaration, MilvusDB.list should return List[OutputData]...