From 82238d383746f1c0ae656bfffab28e1ae2cd2a6f Mon Sep 17 00:00:00 2001 From: Corey Bradford Date: Mon, 23 Mar 2026 14:23:13 +1000 Subject: [PATCH] Fix reasoning data lost when restoring conversation history. Fixes #271 --- src/Storage/DatabaseConversationStore.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Storage/DatabaseConversationStore.php b/src/Storage/DatabaseConversationStore.php index f68ae6f55..77608235e 100644 --- a/src/Storage/DatabaseConversationStore.php +++ b/src/Storage/DatabaseConversationStore.php @@ -129,6 +129,8 @@ public function getLatestConversationMessages(string $conversationId, int $limit name: $toolCall['name'], arguments: $toolCall['arguments'], resultId: $toolCall['result_id'] ?? null, + reasoningId: $toolCall['reasoning_id'] ?? null, + reasoningSummary: $toolCall['reasoning_summary'] ?? null, )) );