@joshuaswarren/openclaw-engram 9.0.12 → 9.0.13
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/dist/index.js +16 -6
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +39 -0
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -960,6 +960,25 @@
|
|
|
960
960
|
"type": "number",
|
|
961
961
|
"description": "Override the detected context window for local LLM. Set to 32768 if your LLM server defaults to 32K context despite the model supporting 128K."
|
|
962
962
|
},
|
|
963
|
+
"localLlmFastEnabled": {
|
|
964
|
+
"type": "boolean",
|
|
965
|
+
"default": false,
|
|
966
|
+
"description": "Enable a separate smaller/faster local LLM for quick operations (rerank, entity_summary, tmt_summary, compression_guideline)."
|
|
967
|
+
},
|
|
968
|
+
"localLlmFastModel": {
|
|
969
|
+
"type": "string",
|
|
970
|
+
"default": "",
|
|
971
|
+
"description": "Model ID for fast-tier local LLM operations. Empty string uses the primary localLlmModel."
|
|
972
|
+
},
|
|
973
|
+
"localLlmFastUrl": {
|
|
974
|
+
"type": "string",
|
|
975
|
+
"description": "Endpoint for the fast-tier local LLM. Defaults to the same endpoint as localLlmUrl when not set."
|
|
976
|
+
},
|
|
977
|
+
"localLlmFastTimeoutMs": {
|
|
978
|
+
"type": "number",
|
|
979
|
+
"default": 15000,
|
|
980
|
+
"description": "Timeout for fast-tier local LLM requests (ms). Lower than primary since fast ops should complete quickly."
|
|
981
|
+
},
|
|
963
982
|
"hourlySummaryCronAutoRegister": {
|
|
964
983
|
"type": "boolean",
|
|
965
984
|
"default": false,
|
|
@@ -1955,6 +1974,26 @@
|
|
|
1955
1974
|
"placeholder": "(auto-detected from model)",
|
|
1956
1975
|
"help": "Override context window if your LLM server uses smaller default (e.g., 32768 for LM Studio default)"
|
|
1957
1976
|
},
|
|
1977
|
+
"localLlmFastEnabled": {
|
|
1978
|
+
"label": "Fast LLM Tier",
|
|
1979
|
+
"help": "Use a separate smaller model for quick operations (rerank, entity summaries, compression guidelines)"
|
|
1980
|
+
},
|
|
1981
|
+
"localLlmFastModel": {
|
|
1982
|
+
"label": "Fast LLM Model",
|
|
1983
|
+
"placeholder": "qwen3.5-4b-mlx",
|
|
1984
|
+
"help": "Model ID for fast-tier operations. Must be loaded in LM Studio alongside the primary model."
|
|
1985
|
+
},
|
|
1986
|
+
"localLlmFastUrl": {
|
|
1987
|
+
"label": "Fast LLM URL",
|
|
1988
|
+
"advanced": true,
|
|
1989
|
+
"placeholder": "(defaults to localLlmUrl)",
|
|
1990
|
+
"help": "Endpoint for fast-tier model. When not set, inherits the primary localLlmUrl."
|
|
1991
|
+
},
|
|
1992
|
+
"localLlmFastTimeoutMs": {
|
|
1993
|
+
"label": "Fast LLM Timeout (ms)",
|
|
1994
|
+
"advanced": true,
|
|
1995
|
+
"help": "Timeout for fast-tier requests. Lower than primary since fast ops should complete quickly."
|
|
1996
|
+
},
|
|
1958
1997
|
"factDeduplicationEnabled": {
|
|
1959
1998
|
"label": "Fact Deduplication",
|
|
1960
1999
|
"help": "Prevent storing semantically identical facts using content hashing"
|
package/package.json
CHANGED