Doc: add "memory" in EC "Custom config" section and fix typos in the json config sample (#2574)

This commit is contained in:
darkhaniop
2025-04-25 23:21:33 +09:00
committed by GitHub
parent 64c3d34deb
commit f412f8bb0d

View File

@@ -70,6 +70,9 @@ cache:
config: config:
similarity_threshold: 0.8 similarity_threshold: 0.8
auto_flush: 50 auto_flush: 50
memory:
top_k: 10
``` ```
```json config.json ```json config.json
@@ -92,7 +95,7 @@ cache:
"api_key": "sk-xxx", "api_key": "sk-xxx",
"model_kwargs": {"response_format": {"type": "json_object"}}, "model_kwargs": {"response_format": {"type": "json_object"}},
"api_version": "2024-02-01", "api_version": "2024-02-01",
"http_client_proxies": "http://testproxy.mem0.net:8000", "http_client_proxies": "http://testproxy.mem0.net:8000"
} }
}, },
"vectordb": { "vectordb": {
@@ -108,7 +111,7 @@ cache:
"config": { "config": {
"model": "text-embedding-ada-002", "model": "text-embedding-ada-002",
"api_key": "sk-xxx", "api_key": "sk-xxx",
"http_client_proxies": "http://testproxy.mem0.net:8000", "http_client_proxies": "http://testproxy.mem0.net:8000"
} }
}, },
"chunker": { "chunker": {
@@ -119,14 +122,17 @@ cache:
}, },
"cache": { "cache": {
"similarity_evaluation": { "similarity_evaluation": {
"strategy": "distance", "strategy": "distance",
"max_distance": 1.0, "max_distance": 1.0
}, },
"config": { "config": {
"similarity_threshold": 0.8, "similarity_threshold": 0.8,
"auto_flush": 50, "auto_flush": 50
}, }
}, },
"memory": {
"top_k": 10
}
} }
``` ```
@@ -181,14 +187,17 @@ config = {
'min_chunk_size': 0 'min_chunk_size': 0
}, },
'cache': { 'cache': {
'similarity_evaluation': { 'similarity_evaluation': {
'strategy': 'distance', 'strategy': 'distance',
'max_distance': 1.0, 'max_distance': 1.0,
}, },
'config': { 'config': {
'similarity_threshold': 0.8, 'similarity_threshold': 0.8,
'auto_flush': 50, 'auto_flush': 50,
}, },
},
'memory': {
'top_k': 10,
}, },
} }
``` ```