generated from ubiquity-os/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
41 lines (41 loc) · 915 Bytes
/
manifest.json
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
{
"name": "command-ask",
"description": "A highly context aware organization integrated chatbot",
"ubiquity:listeners": ["issue_comment.created"],
"skipBotEvents": true,
"commands": {
"ask": {
"ubiquity:example": "/ask",
"description": "Ask any question about the repository, issue or pull request",
"parameters": {
"type": "object",
"properties": {
"question": {
"description": "Question",
"type": "string"
}
}
}
}
},
"configuration": {
"type": "object",
"properties": {
"model": {
"default": "o1-mini",
"type": "string"
},
"openAiBaseUrl": {
"type": "string"
},
"similarityThreshold": {
"default": 0.9,
"type": "number"
},
"maxTokens": {
"default": 10000,
"type": "number"
}
}
}
}