Created src/lib/github/generate-pr-summary.ts to handle PR summary generation using OpenAI's API.
Updated src/lib/github/write-code-for-github.ts and src/lib/github/write-code-for-gitlab.ts to integrate PR summary generation and add it as comments on new pull requests.
Added logic in src/queue/jobs/write-code.ts to handle webhook events for new pull/merge requests, dispatching a job to generate and comment PR/MR summaries.
Successfully implemented the feature for automatic summary generation in both GitHub and GitLab, verified by recorded successful completion of the necessary tasks.
src/lib/github/generate-pr-summary.ts
to handle PR summary generation using OpenAI's API.src/lib/github/write-code-for-github.ts
andsrc/lib/github/write-code-for-gitlab.ts
to integrate PR summary generation and add it as comments on new pull requests.src/queue/jobs/write-code.ts
to handle webhook events for new pull/merge requests, dispatching a job to generate and comment PR/MR summaries.