From 57a8e9cafcb310fe0b82aa1bb1bcc9aa64428fef Mon Sep 17 00:00:00 2001 From: narawat Date: Mon, 13 Jul 2026 08:17:32 +0700 Subject: [PATCH] update --- src/llmfunction.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llmfunction.jl b/src/llmfunction.jl index 12b5860..8a30770 100644 --- a/src/llmfunction.jl +++ b/src/llmfunction.jl @@ -502,7 +502,7 @@ function SQLexecution(executeSQL::Function, sql::T tablesize = size(df) row, column = tablesize if row == 0 - return (result_str="No records found.", result_raw=df, success=true, errormsg=nothing) + return (result_str="No records found. Try loosening your search criteria.", result_raw=nothing, success=true, errormsg=nothing) elseif column > 30 return (result_str="There are more than 30 columns. Please be more specific.", result_raw=df, success=true, errormsg=nothing) else