Skip to content

Commit 9e1cc04

Browse files
fix: change max_string_length from 100_000 to 10_000
1 parent 927aa6d commit 9e1cc04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/askui/reporting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def normalize_to_pil_images(
3939

4040
def truncate_content(
4141
content: Any,
42-
max_string_length: int = 100000,
42+
max_string_length: int = 10_000,
4343
) -> Any:
4444
"""Filter out long strings (i.e. the base64 image data) to keep reports readable."""
4545
if isinstance(content, str):

0 commit comments

Comments
 (0)