Skip to content

Commit

Permalink
[code_review] Drop unnecessary print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
suhaibmujahid committed Jun 26, 2024
1 parent c8d108e commit cb00811
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions bugbug/tools/code_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,8 +538,6 @@ def run(self, patch: Patch) -> list[InlineComment] | None:
return_only_outputs=True,
)["text"]

print(output_summarization)

memory = ConversationBufferMemory()
conversation_chain = ConversationChain(
llm=self.llm,
Expand All @@ -564,8 +562,6 @@ def run(self, patch: Patch) -> list[InlineComment] | None:
input=PROMPT_TEMPLATE_REVIEW.format(patch=formatted_patch)
)

print(output)

memory.clear()

raw_output = self.filtering_chain.invoke(
Expand Down

0 comments on commit cb00811

Please sign in to comment.