-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
44 lines (44 loc) · 936 Bytes
/
Copy pathappsettings.json
File metadata and controls
44 lines (44 loc) · 936 Bytes
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
{
"Embedding": {
"Provider": "auto"
},
"Ollama": {
"BaseUrl": "http://localhost:11434",
"EmbeddingModel": "nomic-embed-text"
},
"LMStudio": {
"BaseUrl": "http://localhost:1234",
"EmbeddingModel": "text-embedding-nomic-embed-text-v1.5"
},
"Database": {
"Path": "codechunks.db"
},
"Search": {
"MinimumSimilarity": 0.55,
"TopK": 20,
"DisplayCount": 5,
"WeakMatchThreshold": 0.30,
"Hybrid": {
"SemanticWeight": 0.7,
"KeywordWeight": 0.3
},
"AdaptiveThreshold": {
"Enabled": true,
"FloorThreshold": 0.30,
"CeilingThreshold": 0.85,
"Percentile": 70
},
"ReRanking": {
"ClassNameBoost": 1.3,
"MemberNameBoost": 1.0,
"ControllerBoost": 1.1,
"DocumentationBoost": 1.05
}
},
"Chunking": {
"MaxChunkSize": 1000,
"OverlapTokens": 100,
"MaxMethodChunkLines": 50,
"OverlapLines": 10
}
}