We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957ff0e commit 3e01c76Copy full SHA for 3e01c76
bigframes/operations/blob.py
@@ -926,10 +926,10 @@ def pdf_extract(
926
) from e
927
928
res_df = bpd.DataFrame({"status": status_series, "content": content_series})
929
- struct_series = bbq.struct(res_df)
+ struct_series = bbq.struct(res_df).rename("extracted_results")
930
return struct_series
931
else:
932
- return res
+ return res.rename("extracted_content")
933
934
def pdf_chunk(
935
self,
@@ -1115,4 +1115,4 @@ def audio_transcribe(
1115
results_struct = bbq.struct(results_df).rename("transcription_results")
1116
return results_struct
1117
1118
- return transcribed_content_series
+ return transcribed_content_series.rename("transcribed_content")
0 commit comments