openclaw-memory-alibaba-mysql 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/config.ts +1 -1
  2. package/package.json +1 -1
package/config.ts CHANGED
@@ -163,7 +163,7 @@ export const memoryConfigSchema = {
163
163
  mysql: parseMysqlConfig(cfg.mysql),
164
164
  embedding: parseEmbeddingConfig(cfg.embedding),
165
165
  autoRecall: cfg.autoRecall !== false,
166
- autoCapture: cfg.autoCapture === true,
166
+ autoCapture: cfg.autoCapture !== false,
167
167
  captureMaxChars: captureMaxChars ?? DEFAULT_CAPTURE_MAX_CHARS,
168
168
  tableName,
169
169
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-memory-alibaba-mysql",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "OpenClaw memory plugin using Alibaba Cloud RDS MySQL vector storage",
5
5
  "type": "module",
6
6
  "license": "MIT",