From 4d766bcb58ab6a22471b9850c76c137da72bd9e2 Mon Sep 17 00:00:00 2001 From: Frank Xu Date: Sun, 18 Jan 2026 13:55:00 -0500 Subject: [PATCH] fix sql_utils rows to text function --- sql_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql_utils.py b/sql_utils.py index bde41f2..ed19708 100644 --- a/sql_utils.py +++ b/sql_utils.py @@ -2,7 +2,7 @@ import re import json -def rows_to_text(rows, limit=None, max_chars=500000, cell_max=100): +def rows_to_text(rows, limit=None, max_chars=500000, cell_max=500): """ Converts SQL rows to text with safety limits for LLM context. - limit: Max number of rows to process.