Skip to content

Commit

Permalink
Update summarize issues command
Browse files Browse the repository at this point in the history
  • Loading branch information
arkid15r committed Sep 13, 2024
1 parent d6d85de commit 3224933
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ def handle(self, *args, **options):

issues = []
offset = options["offset"]
for idx, issue in enumerate(open_issues[offset:][:10]):
for idx, issue in enumerate(open_issues[offset:]):
prefix = f"{idx + offset + 1} of {open_issues_count - offset}"
print(f"{prefix:<10} {issue.title}")

open_ai.set_prompt(
(
"Summarize the following GitHub issue using imperative mood. "
"Summarize the following GitHub issue using imperative mood."
"Add a good amount of technical details."
"Include possible first steps of tackling the problem."
)
Expand Down

0 comments on commit 3224933

Please sign in to comment.