Make memory models and reasoning efforts configurable

This commit is contained in:
Zuxin Liu
2026-03-19 14:25:39 -07:00
parent 1d210f639e
commit becdc514a8
7 changed files with 45 additions and 5 deletions

View File

@@ -750,10 +750,26 @@
"description": "Model used for memory consolidation.",
"type": "string"
},
"consolidation_reasoning_effort": {
"allOf": [
{
"$ref": "#/definitions/ReasoningEffort"
}
],
"description": "Reasoning effort used for memory consolidation."
},
"extract_model": {
"description": "Model used for thread summarisation.",
"type": "string"
},
"extract_reasoning_effort": {
"allOf": [
{
"$ref": "#/definitions/ReasoningEffort"
}
],
"description": "Reasoning effort used for thread summarisation."
},
"generate_memories": {
"description": "When `false`, newly created threads are stored with `memory_mode = \"disabled\"` in the state DB.",
"type": "boolean"