File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -350,6 +350,32 @@ Copy the mcp.json file over, and make sure the file path is correct.
350350command" : " /root/miniconda3/envs/memos/bin/python"
351351#This should be changed to the Python interpreter of your virtual environment
352352` ` `
353+ # # 📖MemoryOS_Chromadb Getting Started
354+
355+ # ## 1. Install dependencies
356+ ` ` ` bash
357+ cd memoryos-chromadb
358+ pip install -r requirements.txt
359+ ` ` `
360+ # ## 2. Test
361+ ` ` ` bash
362+ The edit information is in comprehensive_test.py
363+ memoryos = Memoryos(
364+ user_id='travel_user_test',
365+ openai_api_key='',
366+ openai_base_url='',
367+ data_storage_path='./comprehensive_test_data',
368+ assistant_id='travel_assistant',
369+ embedding_model_name='BAAI/bge-m3',
370+ mid_term_capacity=1000,
371+ mid_term_heat_threshold=13.0,
372+ mid_term_similarity_threshold=0.7,
373+ short_term_capacity=2
374+ )
375+ python3 comprehensive_test.py
376+ # Make sure to use a different data storage path when switching embedding models.
377+ ` ` `
378+
353379
354380# # 🎯Reproduce
355381` ` ` bash
You can’t perform that action at this time.
0 commit comments