From b660d19537b48a1d652dd96f315d95268f0ee237 Mon Sep 17 00:00:00 2001 From: Marviel Date: Thu, 8 Jun 2023 11:09:13 -0400 Subject: [PATCH] actually pass system prompt through --- app/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,