diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0fe373d..91ab6c1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,8 +20,3 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - with: - temperature: 0.1 - review_per_file: true - comment_per_file: true - model: gpt-35-turbo diff --git a/app/main.py b/app/main.py index 1d14f15..4fdd5f7 100755 --- a/app/main.py +++ b/app/main.py @@ -52,7 +52,8 @@ model=args.model, temperature=args.temperature, frequency_penalty=args.frequency_penalty, - presence_penalty=args.presence_penalty) + presence_penalty=args.presence_penalty, + system_prompt=args.system_prompt) github_client = githubs.GithubClient( openai_client=openai_client, review_per_file=args.review_per_file,