-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
38 lines (38 loc) · 1.3 KB
/
openclaw.plugin.json
File metadata and controls
38 lines (38 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"id": "memcc",
"name": "MemCC - Hybrid Memory",
"kind": ["memory", "context-engine"],
"uiHints": {
"contextOptimization": {
"label": "Context Optimization",
"help": "Reduce memory context injection to prevent context explosion (default: false)"
},
"compactionModel": {
"label": "Compaction Model",
"help": "Override model for compaction summaries (default: inherit from OpenClaw)"
},
"embeddingModel": {
"label": "Embedding Model",
"help": "OpenAI embedding model (default: text-embedding-3-small)"
},
"llmRerank": {
"label": "LLM Rerank",
"help": "Enable LLM-based reranking for higher recall (default: true, costs ~$0.001/search)"
},
"rerankModel": {
"label": "Rerank Model",
"help": "Model used for reranking (default: gpt-4o-mini)"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"contextOptimization": { "type": "boolean" },
"compactionModel": { "type": "string" },
"embeddingModel": { "type": "string" },
"llmRerank": { "type": "boolean", "description": "Enable LLM-based reranking of search results (default: true)" },
"rerankModel": { "type": "string", "description": "Model for reranking (default: gpt-4o-mini)" }
}
}
}