forked from ubiquity-os-marketplace/text-vector-embeddings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 926 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
{
"name": "Text Vector Embeddings",
"description": "Enables the storage, updating, and deletion of issue comment embeddings.",
"ubiquity:listeners": [
"issue_comment.created",
"issue_comment.edited",
"issue_comment.deleted",
"issues.opened",
"issues.edited",
"issues.deleted",
"issues.labeled"
],
"configuration": {
"default": {},
"type": "object",
"properties": {
"matchThreshold": {
"default": 0.95,
"description": "The minimum similarity score when considering existing issues to be duplicates.",
"type": "number"
},
"warningThreshold": {
"default": 0.75,
"description": "",
"type": "number"
},
"jobMatchingThreshold": {
"default": 0.75,
"description": "The minimum similarity score when considering users to be suitable for a job.",
"type": "number"
}
}
}
}