repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | { |
| #2 | "id": "openclaw-mem0", |
| #3 | "kind": "memory", |
| #4 | "uiHints": { |
| #5 | "mode": { |
| #6 | "label": "Mode", |
| #7 | "help": "\"platform\" for Mem0 cloud, \"open-source\" for self-hosted" |
| #8 | }, |
| #9 | "apiKey": { |
| #10 | "label": "Mem0 API Key", |
| #11 | "sensitive": true, |
| #12 | "placeholder": "m0-...", |
| #13 | "help": "API key from app.mem0.ai (or use ${MEM0_API_KEY}). Only needed for platform mode." |
| #14 | }, |
| #15 | "userId": { |
| #16 | "label": "Default User ID", |
| #17 | "placeholder": "default", |
| #18 | "help": "User ID for scoping memories" |
| #19 | }, |
| #20 | "orgId": { |
| #21 | "label": "Organization ID", |
| #22 | "placeholder": "org-...", |
| #23 | "advanced": true |
| #24 | }, |
| #25 | "projectId": { |
| #26 | "label": "Project ID", |
| #27 | "placeholder": "proj-...", |
| #28 | "advanced": true |
| #29 | }, |
| #30 | "autoCapture": { |
| #31 | "label": "Auto-Capture", |
| #32 | "help": "Automatically store conversation context after each agent turn" |
| #33 | }, |
| #34 | "autoRecall": { |
| #35 | "label": "Auto-Recall", |
| #36 | "help": "Automatically inject relevant memories before each agent turn" |
| #37 | }, |
| #38 | "customInstructions": { |
| #39 | "label": "Custom Instructions", |
| #40 | "placeholder": "Only store user preferences and important facts...", |
| #41 | "help": "Natural language rules for what Mem0 should store or exclude (platform mode)" |
| #42 | }, |
| #43 | "customCategories": { |
| #44 | "label": "Custom Categories", |
| #45 | "advanced": true, |
| #46 | "help": "Map of category names to descriptions for memory tagging (platform mode only). Sensible defaults are built in." |
| #47 | }, |
| #48 | "customPrompt": { |
| #49 | "label": "Custom Prompt (Open-Source)", |
| #50 | "advanced": true, |
| #51 | "help": "Custom prompt for open-source mode memory extraction." |
| #52 | }, |
| #53 | "enableGraph": { |
| #54 | "label": "Enable Graph Memory", |
| #55 | "help": "Enable Mem0 graph memory for entity relationships (platform mode only)" |
| #56 | }, |
| #57 | "searchThreshold": { |
| #58 | "label": "Search Threshold", |
| #59 | "placeholder": "0.5", |
| #60 | "help": "Minimum similarity score for search results (0-1). Default: 0.5" |
| #61 | }, |
| #62 | "topK": { |
| #63 | "label": "Top K Results", |
| #64 | "placeholder": "5", |
| #65 | "help": "Maximum number of memories to retrieve" |
| #66 | }, |
| #67 | "oss": { |
| #68 | "label": "Open-Source Configuration", |
| #69 | "advanced": true, |
| #70 | "help": "Optional. Configure custom embedder, vector store, LLM, or history DB for open-source mode. Has sensible defaults — only override what you need." |
| #71 | } |
| #72 | }, |
| #73 | "configSchema": { |
| #74 | "type": "object", |
| #75 | "additionalProperties": false, |
| #76 | "properties": { |
| #77 | "mode": { |
| #78 | "type": "string", |
| #79 | "enum": [ |
| #80 | "platform", |
| #81 | "open-source", |
| #82 | "oss" |
| #83 | ] |
| #84 | }, |
| #85 | "apiKey": { |
| #86 | "type": "string" |
| #87 | }, |
| #88 | "userId": { |
| #89 | "type": "string" |
| #90 | }, |
| #91 | "orgId": { |
| #92 | "type": "string" |
| #93 | }, |
| #94 | "projectId": { |
| #95 | "type": "string" |
| #96 | }, |
| #97 | "autoCapture": { |
| #98 | "type": "boolean" |
| #99 | }, |
| #100 | "autoRecall": { |
| #101 | "type": "boolean" |
| #102 | }, |
| #103 | "customInstructions": { |
| #104 | "type": "string" |
| #105 | }, |
| #106 | "customCategories": { |
| #107 | "type": "object", |
| #108 | "additionalProperties": { |
| #109 | "type": "string" |
| #110 | } |
| #111 | }, |
| #112 | "customPrompt": { |
| #113 | "type": "string" |
| #114 | }, |
| #115 | "enableGraph": { |
| #116 | "type": "boolean" |
| #117 | }, |
| #118 | "searchThreshold": { |
| #119 | "type": "number" |
| #120 | }, |
| #121 | "topK": { |
| #122 | "type": "number" |
| #123 | }, |
| #124 | "oss": { |
| #125 | "type": "object", |
| #126 | "properties": { |
| #127 | "embedder": { |
| #128 | "type": "object", |
| #129 | "properties": { |
| #130 | "provider": { |
| #131 | "type": "string" |
| #132 | }, |
| #133 | "config": { |
| #134 | "type": "object" |
| #135 | } |
| #136 | } |
| #137 | }, |
| #138 | "vectorStore": { |
| #139 | "type": "object", |
| #140 | "properties": { |
| #141 | "provider": { |
| #142 | "type": "string" |
| #143 | }, |
| #144 | "config": { |
| #145 | "type": "object" |
| #146 | } |
| #147 | } |
| #148 | }, |
| #149 | "llm": { |
| #150 | "type": "object", |
| #151 | "properties": { |
| #152 | "provider": { |
| #153 | "type": "string" |
| #154 | }, |
| #155 | "config": { |
| #156 | "type": "object" |
| #157 | } |
| #158 | } |
| #159 | }, |
| #160 | "historyDbPath": { |
| #161 | "type": "string" |
| #162 | } |
| #163 | } |
| #164 | } |
| #165 | }, |
| #166 | "required": [] |
| #167 | } |
| #168 | } |