-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.action.example
46 lines (43 loc) · 1.34 KB
/
.env.action.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Core view engine
# e.g. openai, azureopenai
ENGINE=
# OpenAI API key
# https://platform.openai.com/account/api-keys
OPENAI_API_KEY=
# Azure settings
# Azure base url
# e.g. https://openai.azure.com/openai/
AZURE_OPENAI_BASE_URL=
# Azure open AI API key
AZURE_OPENAI_API_KEY=
# Azure API version
# e.g. 2024-06-01
AZURE_API_VERSION=
# Azure deployment
# e.g. gpt-4o
AZURE_DEPLOYMENT=gpt-4o
# Optional settings for code review
# chatGPT model
# e.g. gpt-3.5-turbo (default), gpt-3.5-turbo-0301, gpt-4, gpt-4-0314, gpt-4-32k, gpt-4-32k-0314
CHAT_GPT_MODEL=
# Temperature
TEMPERATURE=
# Top_P
TOP_P=
# Language
LANGUAGE=
# The path(s) to ignore, split path with `,`. Support glob patterns.
# e.g. package.json
PATH_TO_EXCLUDE=
# The reply to ignore, the bot will not add comment to the pull request if given string is fully matched with the comment.
# WARN: You may not get any review comment if all of the review(s) are ignored.
# e.g. "No issue found."
REPLY_TO_IGNORE=
# The max patch for a single file
MAX_PATCH_PER_FILE=
# The max file amount for a single pull request
MAX_FILE_PER_PR=20
# Customized code review prompt
# Not recommend to set up this. Instead, you can submit a PR to improve the default prompt.
# Any environment variables used in the default prompt will not work if a customized prompt is provided.
CUSTOMIZED_PROMPT="Please do code review for me"