(agentId: string)
| 375 | |
| 376 | // Clear agent image memory |
| 377 | export async function clearAgentImageMemory(agentId: string): Promise<void> { |
| 378 | await updateAgentImageMemory(agentId, []); |
| 379 | } |
| 380 | |
| 381 | // Delete a memory entry (text and images only, not agent) |
| 382 | export async function deleteMemory(memoryId: string): Promise<void> { |
no test coverage detected