diff --git a/desktop/src/lib/intelligence-client.ts b/desktop/src/lib/intelligence-client.ts index f4f0f50..2c24873 100644 --- a/desktop/src/lib/intelligence-client.ts +++ b/desktop/src/lib/intelligence-client.ts @@ -1190,10 +1190,10 @@ export const intelligenceClient = { if (isTauriRuntime()) { await tauriInvoke('heartbeat.updateMemoryStats', () => invoke('heartbeat_update_memory_stats', { - agent_id: agentId, - task_count: taskCount, - total_entries: totalEntries, - storage_size_bytes: storageSizeBytes, + agentId: agentId, + taskCount: taskCount, + totalEntries: totalEntries, + storageSizeBytes: storageSizeBytes, }) ); } else { @@ -1212,8 +1212,8 @@ export const intelligenceClient = { if (isTauriRuntime()) { await tauriInvoke('heartbeat.recordCorrection', () => invoke('heartbeat_record_correction', { - agent_id: agentId, - correction_type: correctionType, + agentId: agentId, + correctionType: correctionType, }) ); } else { @@ -1230,7 +1230,7 @@ export const intelligenceClient = { if (isTauriRuntime()) { await tauriInvoke('heartbeat.recordInteraction', () => invoke('heartbeat_record_interaction', { - agent_id: agentId, + agentId: agentId, }) ); } else {