From 67af64c99069455fc97471f96696be8a3ffc6f21 Mon Sep 17 00:00:00 2001 From: Shuowei Li Date: Sat, 1 Mar 2025 00:40:32 +0000 Subject: [PATCH] fix: write chunked text instead of dummy text for pdf chunk --- bigframes/blob/_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigframes/blob/_functions.py b/bigframes/blob/_functions.py index 9bd21ce828..480e04f02c 100644 --- a/bigframes/blob/_functions.py +++ b/bigframes/blob/_functions.py @@ -434,7 +434,7 @@ def pdf_chunk_func(src_obj_ref_rt: str, chunk_size: int, overlap_size: int) -> s if curr_chunk: all_text_chunks.append(curr_chunk) - all_text_json_string = json.dumps(["123"]) + all_text_json_string = json.dumps(all_text_chunks) return all_text_json_string