Skip to content

Commit f251823

Browse files
authored
Update README.md
1 parent fc5c91e commit f251823

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,32 @@ Copy the mcp.json file over, and make sure the file path is correct.
350350
command": "/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

0 commit comments

Comments
 (0)