-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.14 KB
/
manifest.json
File metadata and controls
48 lines (48 loc) · 1.14 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
43
44
45
46
47
48
{
"name": "daemon-task-matcher",
"description": "Suggests priced issues that likely match a newly opened PR.",
"short_name": "Meniole/daemon-task-matcher@development",
"ubiquity:listeners": ["pull_request.opened", "pull_request.reopened", "issue_comment.edited"],
"configuration": {
"default": {},
"type": "object",
"properties": {
"confidenceThreshold": {
"default": 0.5,
"minimum": 0,
"maximum": 1,
"type": "number"
},
"maxSuggestions": {
"default": 5,
"minimum": 1,
"maximum": 20,
"type": "integer"
},
"requirePriceLabel": {
"default": true,
"type": "boolean"
},
"maxIssuesPerLlmCall": {
"default": 40,
"minimum": 5,
"maximum": 200,
"type": "integer"
},
"openRouter": {
"type": "object",
"properties": {
"endpoint": {
"minLength": 1,
"type": "string"
},
"model": {
"minLength": 1,
"type": "string"
}
},
"required": ["endpoint", "model"]
}
}
}
}