Context manager
ContextManagerInputSchema
Bases: BaseModel
Input for ContextManagerTool.
- history: The recent conversation/messages to compress. Can be a single string or list of strings.
- is_history_preserved: Preserve the history with summarization. If False, the history will not be preserved, only notes will.
- notes: Verbatim content that must be preserved as-is (not processed by LLM) and prepended to the result.
Source code in dynamiq/nodes/tools/context_manager.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | |
ContextManagerTool
Bases: Node
A tool to prune previous message history and replace it with a concise summary.
IMPORTANT: Before calling this tool, ensure any necessary details are explicitly saved (e.g., files, pinned notes, or artifacts). This tool is intended to remove previous messages and keep only a structured summary to tighten context and focus on the active subtask.
Attributes:
| Name | Type | Description |
|---|---|---|
group |
Literal[TOOLS]
|
The group this node belongs to. |
name |
str
|
The name of the tool. |
description |
str
|
Tool description with usage warning. |
llm |
BaseLLM
|
The LLM used to produce the compressed summary. |
error_handling |
ErrorHandling
|
Configuration for error handling. |
prompt_template |
str
|
Prompt template guiding the summarization. |
Source code in dynamiq/nodes/tools/context_manager.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
to_dict_exclude_params: dict
property
Exclude LLM object during serialization.
execute(input_data, config=None, **kwargs)
Summarize the provided history and emit an instruction to replace prior messages with the summary.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
dict[str, Any]: - content: human-readable status message - summary: the compressed summary text - keep_last_n: advisory hint for UI/agent to keep last N messages - replacement_message: suggested system message to insert as new context root - instructions_for_agent: explicit instructions for applying the change |
Source code in dynamiq/nodes/tools/context_manager.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
init_components(connection_manager=None)
Initialize components for the tool.
Source code in dynamiq/nodes/tools/context_manager.py
114 115 116 117 118 119 | |
reset_run_state()
Reset the intermediate steps (run_depends) of the node.
Source code in dynamiq/nodes/tools/context_manager.py
121 122 123 | |