(agentId: string, images: string[])
| 368 | |
| 369 | // Append images to agent's image memory |
| 370 | export async function appendAgentImageMemory(agentId: string, images: string[]): Promise<void> { |
| 371 | const existingImages = await getAgentImageMemory(agentId); |
| 372 | const updatedImages = [...existingImages, ...images]; |
| 373 | await updateAgentImageMemory(agentId, updatedImages); |
| 374 | } |
| 375 | |
| 376 | // Clear agent image memory |
| 377 | export async function clearAgentImageMemory(agentId: string): Promise<void> { |
no test coverage detected