fix sql_utils rows to text function

This commit is contained in:
Frank Xu
2026-01-18 13:55:00 -05:00
parent 5c4f0ed5ae
commit 4d766bcb58

View File

@@ -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.