-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
52 lines (52 loc) · 1.11 KB
/
Copy pathconfig.example.json
File metadata and controls
52 lines (52 loc) · 1.11 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
49
50
51
52
{
"owner_name": "your-name",
"extra_stop_words": [],
"mappings": [
{
"glob": "journal/*.md",
"layer": "episodic",
"entity_type": "user",
"entity_name": "$owner",
"importance": 0.6,
"confidence": 0.9,
"split": "h2"
},
{
"glob": "people/*.md",
"layer": "semantic",
"entity_type": "person",
"entity_name": "from-heading",
"importance": 0.8,
"confidence": 0.8,
"split": "h3"
},
{
"glob": "projects/*.md",
"layer": "semantic",
"entity_type": "project",
"entity_name": "from-heading",
"importance": 0.7,
"confidence": 0.8,
"split": "h2"
},
{
"glob": "knowledge/*.md",
"layer": "semantic",
"entity_type": "concept",
"entity_name": "from-heading",
"importance": 0.6,
"confidence": 0.8,
"split": "h2"
},
{
"glob": "notes/*.md",
"layer": "resource",
"entity_type": "concept",
"entity_name": "from-heading",
"importance": 0.5,
"confidence": 0.8,
"split": "h2"
}
],
"external_files": []
}