( agentPubkey: string, )
| 46 | * that's the legitimate empty state, distinct from a thrown error. |
| 47 | */ |
| 48 | export async function getAgentMemory( |
| 49 | agentPubkey: string, |
| 50 | ): Promise<AgentMemoryListing> { |
| 51 | return invokeTauri<AgentMemoryListing>("get_agent_memory", { |
| 52 | agentPubkey, |
| 53 | }); |
| 54 | } |
no test coverage detected