forked from ubiquity-os-marketplace/command-ask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (47 loc) · 1.34 KB
/
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
42
43
44
45
46
47
{
"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",
"description": "The LLM model you wish to use",
"examples": ["openai/gpt-4o", "openai/o1-mini"],
"type": "string"
},
"openAiBaseUrl": {
"description": "The base URL for the OpenAI API",
"examples": ["https://openrouter.ai/api/v1", "https://api.openai.com/v1"],
"type": "string"
},
"similarityThreshold": {
"default": 0.9,
"description": "When fetching embeddings context, the similarity threshold to use (1- similarityThreshold)",
"type": "number"
},
"maxTokens": {
"default": 10000,
"description": "The max completion tokens you want to the model to generate",
"type": "number"
}
}
}
}