mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-28 21:01:43 +03:00
feat(memory-lancedb): make auto-capture max length configurable
This commit is contained in:
@@ -25,6 +25,12 @@
|
||||
"autoRecall": {
|
||||
"label": "Auto-Recall",
|
||||
"help": "Automatically inject relevant memories into context"
|
||||
},
|
||||
"captureMaxChars": {
|
||||
"label": "Capture Max Chars",
|
||||
"help": "Maximum message length eligible for auto-capture",
|
||||
"advanced": true,
|
||||
"placeholder": "1500"
|
||||
}
|
||||
},
|
||||
"configSchema": {
|
||||
@@ -53,6 +59,11 @@
|
||||
},
|
||||
"autoRecall": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"captureMaxChars": {
|
||||
"type": "number",
|
||||
"minimum": 100,
|
||||
"maximum": 10000
|
||||
}
|
||||
},
|
||||
"required": ["embedding"]
|
||||
|
||||
Reference in New Issue
Block a user