History Management
xronai.history.history_manager.HistoryManager
Manages conversation history for workflows involving supervisors, agents, and tools.
This class works alongside the chat_history in Supervisor and Agent classes, providing persistent storage and advanced querying capabilities while maintaining the conversation structure and relationships.
Attributes:
| Name | Type | Description |
|---|---|---|
workflow_id |
str
|
Unique identifier for the workflow. |
base_path |
Path
|
The root directory for storing all logs. |
workflow_path |
Path
|
Path to the specific directory for this workflow's logs. |
history_file |
Path
|
Path to the JSONL file storing the conversation history. |
Source code in xronai/history/history_manager.py
39 40 41 42 43 44 45 46 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 73 74 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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | |
__init__(workflow_id, base_path=None)
Initialize the HistoryManager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workflow_id
|
str
|
Unique identifier for the workflow. Must be provided by a main supervisor. |
required |
base_path
|
Optional[str]
|
The root directory for history logs. Defaults to 'xronai_logs'. |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If workflow_id is None or workflow directory doesn't exist. |
Source code in xronai/history/history_manager.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | |
append_message(message, sender_type, sender_name, parent_id=None, tool_call_id=None, supervisor_chain=None)
Append a message to the conversation history.
This method is called alongside chat_history updates to maintain persistent storage of the conversation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Dict[str, Any]
|
The message to append (same format as chat_history) |
required |
sender_type
|
EntityType
|
Type of the sender |
required |
sender_name
|
str
|
Name of the sender |
required |
parent_id
|
Optional[str]
|
ID of the parent message in conversation |
None
|
tool_call_id
|
Optional[str]
|
ID of related tool call if applicable |
None
|
supervisor_chain
|
Optional[List[str]]
|
List of supervisors in the delegation chain |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Generated message ID for reference in future messages |
Example
msg_id = history_manager.append_message( ... message={"role": "user", "content": "Hello"}, ... sender_type=EntityType.USER, ... sender_name="user" ... )
msg_id = history_manager.append_message( ... message={"role": "assistant", "content": "Process data"}, ... sender_type=EntityType.MAIN_SUPERVISOR, ... sender_name="MainSupervisor", ... supervisor_chain=["MainSupervisor", "AssistantSupervisor"] ... )
Source code in xronai/history/history_manager.py
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 | |
clear_history()
Clear the entire conversation history for the current workflow.
Source code in xronai/history/history_manager.py
346 347 348 349 350 | |
get_frontend_history()
Get complete conversation history formatted for frontend display.
Returns:
| Type | Description |
|---|---|
List[Dict[str, Any]]
|
List[Dict[str, Any]]: Complete conversation history with proper threading |
Example
history = history_manager.get_frontend_history()
Source code in xronai/history/history_manager.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | |
get_messages_by_entity(entity_name)
Get all messages related to a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_name
|
str
|
Name of the entity |
required |
Returns:
| Type | Description |
|---|---|
List[Dict[str, Any]]
|
List[Dict[str, Any]]: All messages related to the entity |
Source code in xronai/history/history_manager.py
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | |
has_system_message(entity_name)
Check if system message exists for an entity in the current workflow.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_name
|
str
|
Name of the entity to check |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if system message exists, False otherwise |
Source code in xronai/history/history_manager.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | |
load_chat_history(entity_name)
Load and reconstruct the LLM-compatible conversation history for a given entity (supervisor or agent).
This function extracts only those messages from the full workflow history that were truly exchanged with or delegated to this entity, ensuring that synthetic user prompts, agent LLM responses, tool calls, and tool results are correctly ordered and threaded as would be expected by any LLM for conversation continuation. Irrelevant messages intended for other agents are excluded.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_name
|
str
|
The name of the entity for which to load chat history (e.g. supervisor, assistant supervisor, or agent). |
required |
Returns:
| Type | Description |
|---|---|
List[Dict[str, Any]]
|
List[Dict[str, Any]]: Ordered list of chat messages in the expected chat_history format for initializing or restoring the entity's LLM context. |
Example
agent.chat_history = history_manager.load_chat_history("AgentName")
Source code in xronai/history/history_manager.py
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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |