(state *AgentState)
| 1349 | } |
| 1350 | } |
| 1351 | |
| 1352 | func (e *CoreExecutionEngine) sessionMemoryAgentID() string { |
| 1353 | if e == nil || strings.TrimSpace(e.AgentID) == "" { |
| 1354 | return "main" |
| 1355 | } |
| 1356 | return strings.TrimSpace(e.AgentID) |
| 1357 | } |
| 1358 | |
| 1359 | func (e *CoreExecutionEngine) memoryAgentType() string { |
| 1360 | if e == nil { |
| 1361 | return "main" |
no test coverage detected