formative-memory 0.2.0 → 0.2.1
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.
- package/README.md +1 -7
- package/dist/index.js +1 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -161,7 +161,7 @@ Configuration goes in `openclaw.json` under the plugin entry:
|
|
|
161
161
|
| `embedding.provider` | `"auto"` | Embedding provider: `auto`, `openai`, `gemini`, `voyage`, `mistral`, `ollama`, `local` |
|
|
162
162
|
| `embedding.model` | — | Override the provider's default embedding model |
|
|
163
163
|
| `dbPath` | `~/.openclaw/memory/associative` | SQLite database location |
|
|
164
|
-
| `verbose` | `false` | Enable debug logging
|
|
164
|
+
| `verbose` | `false` | Enable debug logging |
|
|
165
165
|
| `logQueries` | `false` | Include raw query text in debug logs (disabled by default for privacy) |
|
|
166
166
|
|
|
167
167
|
The `"auto"` provider selects the best available embedding provider from
|
|
@@ -233,12 +233,6 @@ Enable debug logging:
|
|
|
233
233
|
{ "verbose": true }
|
|
234
234
|
```
|
|
235
235
|
|
|
236
|
-
Or via environment variable:
|
|
237
|
-
|
|
238
|
-
```bash
|
|
239
|
-
FORMATIVE_MEMORY_DEBUG=1
|
|
240
|
-
```
|
|
241
|
-
|
|
242
236
|
| Level | What |
|
|
243
237
|
|-------|------|
|
|
244
238
|
| **info** | Memory stored, memories injected into context, circuit breaker state changes |
|
package/dist/index.js
CHANGED
|
@@ -2833,8 +2833,7 @@ const LEVEL_ORDER = {
|
|
|
2833
2833
|
* configured minimum level.
|
|
2834
2834
|
*/
|
|
2835
2835
|
function createLogger(opts) {
|
|
2836
|
-
const
|
|
2837
|
-
const minOrder = LEVEL_ORDER[opts.verbose || envDebug ? "debug" : "info"];
|
|
2836
|
+
const minOrder = LEVEL_ORDER[opts.verbose ? "debug" : "info"];
|
|
2838
2837
|
const host = opts.host;
|
|
2839
2838
|
function stringifyArg(a) {
|
|
2840
2839
|
if (a instanceof Error) return a.stack || a.message;
|
package/openclaw.plugin.json
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"verbose": {
|
|
68
68
|
"label": "Verbose Logging",
|
|
69
|
-
"help": "Enable debug-level logging.
|
|
69
|
+
"help": "Enable debug-level logging."
|
|
70
70
|
},
|
|
71
71
|
"logQueries": {
|
|
72
72
|
"label": "Log Query Text",
|