From e6422c542e82408a806c62d75b52aad65aa1af01 Mon Sep 17 00:00:00 2001 From: Roman Rizzi Date: Thu, 4 Jan 2024 11:50:26 -0300 Subject: [PATCH] FIX: Tools::DbSchema's tables parameter is a string (#400) --- lib/ai_bot/tools/db_schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ai_bot/tools/db_schema.rb b/lib/ai_bot/tools/db_schema.rb index 7359260f..4d19d35a 100644 --- a/lib/ai_bot/tools/db_schema.rb +++ b/lib/ai_bot/tools/db_schema.rb @@ -54,7 +54,7 @@ module DiscourseAi protected def description_args - { tables: tables.join(", ") } + { tables: tables } end end end