-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample-rc-file.json
More file actions
34 lines (30 loc) · 875 Bytes
/
example-rc-file.json
File metadata and controls
34 lines (30 loc) · 875 Bytes
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
{
"exclusions": [
":(exclude)**/package-lock.json",
":(exclude)**/pnpm-lock.yaml",
":(exclude)**/yarn.lock",
":(exclude)**/*.jpg",
":(exclude)**/*.jpeg",
":(exclude)**/*.png",
":(exclude)**/*.gif",
":(exclude)**/*.bmp",
":(exclude)**/*.tiff",
":(exclude)**/*.svg",
":(exclude)**/*.pdf"
],
"openPr": true,
"githubStrategy": "gh",
"openai":{
"apiKey": "YOUR_OPENAI_API_KEY",
"url": "https://api.openai.com/v1/chat/completions",
"model": "gpt-3.5-turbo-instruct",
"max_tokens": 1500,
"n": 1,
"stop": null,
"temperature": 0.2,
"placeholderPattern": "__KEY__",
"systemPrompt": "YOUR_PROMPT_HERE",
"titleTemplate": "YOUR_TEMPLATE_HERE",
"bodyTemplate": "YOUR_TEMPLATE_HERE"
}
}