From 991732c119f8ba2c3d8874e217814775de6d8f67 Mon Sep 17 00:00:00 2001 From: Bogdanel Stefan Date: Fri, 21 Nov 2025 06:41:25 +0000 Subject: [PATCH] Fix table name --- the-basics/chat-history-and-memory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the-basics/chat-history-and-memory.md b/the-basics/chat-history-and-memory.md index a58cab8..7325d77 100644 --- a/the-basics/chat-history-and-memory.md +++ b/the-basics/chat-history-and-memory.md @@ -254,7 +254,7 @@ class MyAgent extends Agent return new SQLChatHistory( thread_id: 'CHAT_THREAD_ID', pdo: $this->connection->getNativeConnection(), - table: 'chat_hisotry', + table: 'chat_history', contextWindow: 50000 ); }