You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
880 B
36 lines
880 B
{ |
|
"name": "mem0-integration", |
|
"version": "1.0.0", |
|
"description": "mem0 记忆系统集成,提供长期记忆存储和语义搜索", |
|
"author": "OpenClaw Team", |
|
"enabled": true, |
|
"commands": [ |
|
{ |
|
"name": "memory", |
|
"description": "记忆管理命令", |
|
"handler": "openclaw_commands.handle_memory_command", |
|
"usage": "/memory <add|search|list|delete|status|help> [参数]", |
|
"examples": [ |
|
"/memory add 用户偏好使用 UTC 时区", |
|
"/memory search 时区", |
|
"/memory list", |
|
"/memory status" |
|
] |
|
} |
|
], |
|
"config": { |
|
"qdrant": { |
|
"host": "localhost", |
|
"port": 6333, |
|
"collection_name": "mem0_local" |
|
}, |
|
"llm": { |
|
"model": "qwen-plus", |
|
"api_base": "https://dashscope.aliyuncs.com/compatible-mode/v1" |
|
} |
|
}, |
|
"dependencies": [ |
|
"mem0ai", |
|
"pyyaml" |
|
] |
|
}
|
|
|