Skip to content

Commit

Permalink
OpenAI PR Agent Setup (#1429)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Bella Luz Quintero <[email protected]>
Co-authored-by: saquino0827 <[email protected]>
Co-authored-by: James Herr <[email protected]>
Co-authored-by: halprin <[email protected]>
  • Loading branch information
5 people authored and tjohnson7021 committed Oct 17, 2024
1 parent b8f5a90 commit d89e567
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/pr_agent.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Perry the PR Agent Platypus

# Config for this action lives in .pr_agent.toml, but only the version on
# main is read - you'll need to merge config changes before they take effect.
# You can test config changes by making them in the `env` section below, but
# should then move them to the config file for consistency/readability

on:
pull_request:
issue_comment:
types: [created]
jobs:
pr_agent_job:
if: ${{ github.event.sender.type != 'Bot' }}
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
contents: write
name: Run pr agent on every pull request, respond to user comments
steps:
- name: PR Agent action step
id: pragent
uses: Codium-ai/pr-agent@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_KEY: ${{ secrets.AZURE_OPENAI_KEY }}
OPENAI.API_TYPE: 'azure'
OPENAI.API_BASE: ${{ secrets.AZURE_OPENAI_BASE_URL }}
OPENAI.DEPLOYMENT_ID: ${{ secrets.AZURE_OPENAI_DEPLOYMENT_ID }}
OPENAI_API_VERSION: '2023-03-15'
AZURE_API_VERSION: '2023-03-15-preview' # Specific version required to address compatibility issues with GPT-4 deployment on Azure.
2 changes: 2 additions & 0 deletions .pr_agent.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# See https://github.com/Codium-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml for all possible config options
# The pr_agent.yml action reads this file from the `main` branch, so changes to this file
# will not take effect until they are merged into main

[config]
model="gpt-4" # the OpenAI model you've deployed on Azure (e.g. gpt-3.5-turbo)
Expand Down

0 comments on commit d89e567

Please sign in to comment.