-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathconfig.example.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"owner": "your-github-login",
"ownerType": "user",
"projectNumber": 1,
"statusFieldName": "Status",
"updateFieldName": "Update",
"kanban": {
"defaultStatus": "Todo",
"terminalStatuses": ["Done"],
"statusRoles": {
"queued": "Todo",
"active": "In Progress",
"review": "Review",
"blocked": "Blocked",
"completed": "Done"
}
},
"creation": {
"repository": "your-github-login/private-todos",
"projectVisibility": "auto",
"repositoryVisibility": "auto",
"routes": {
"public_private": "issue",
"public_public": "issue",
"private_private": "issue",
"private_public": "draft"
}
},
"update": {
"maxReviewAttempts": 5,
"maxSummaryCharacters": 500,
"maxSummaryWords": 80,
"maxBodyCharacters": 60000,
"maxCommentCharacters": 10000
},
"models": {
"create": { "model": "gpt-5.6-luna", "reasoningEffort": "medium" },
"update": { "model": "gpt-5.6-luna", "reasoningEffort": "medium" },
"review": { "model": "gpt-5.6-luna", "reasoningEffort": "medium" },
"preferFastMode": true
}
}