Skip to content

Commit ae76322

Browse files
committed
Temporarily disable PR comments download in Gemini review script
1 parent 5c14872 commit ae76322

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

hack/gemini_review.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ def download_and_combine_pr_comments(bucket_name, prefix):
5151
blobs = bucket.list_blobs(prefix=prefix) # Use prefix for efficiency
5252

5353
pr_comments_content = ""
54-
for blob in blobs:
55-
if blob.name.endswith(".txt"):
56-
pr_comments_content += blob.download_as_text() + "\n\n"
54+
# TODO: Skip for now, since it is too large
55+
# for blob in blobs:
56+
# if blob.name.endswith(".txt"):
57+
# pr_comments_content += blob.download_as_text() + "\n\n"
5758
return pr_comments_content
5859

5960
except Exception as e:

0 commit comments

Comments
 (0)