You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We have a max row count in place to mitigate LLM token abuse
271
+
if(oversizedResult){
272
+
return{
273
+
success: false,
274
+
error: `Query produced ${oversizedResult.rows.length} rows but the max allowed limit is ${maxRowLimit}. Rerun the query with a limit of ${maxRowLimit}.`,
275
+
}
276
+
}
277
+
278
+
// Truncate vector columns due to their large size (display purposes only)
0 commit comments