(agentId: string)
| 9 | |
| 10 | // Dispatch a memory update event |
| 11 | export function dispatchMemoryUpdate(agentId: string) { |
| 12 | const event = new CustomEvent(MEMORY_UPDATE_EVENT, { |
| 13 | detail: { agentId } |
| 14 | }); |
| 15 | window.dispatchEvent(event); |
| 16 | } |
| 17 | |
| 18 | interface MemoryManagerProps { |
| 19 | agentId: string; |
no outgoing calls
no test coverage detected