-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
49 lines (49 loc) · 1.23 KB
/
appsettings.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"Mongo": {
"ConnectionString": "mongodb://127.0.0.1:27017",
"DatabaseName": "ProductNormaliser"
},
"Crawl": {
"UserAgent": "ProductNormaliserBot/1.0",
"DefaultHostDelayMilliseconds": 1000,
"TransientRetryCount": 2,
"WorkerIdleDelayMilliseconds": 1500,
"HostDelayMilliseconds": {
"example.com": 1000
}
},
"SourceCandidateDiscovery": {
"SearchApiBaseUrl": "https://api.search.brave.com",
"SearchTimeoutSeconds": 15,
"ProbeTimeoutSeconds": 15,
"SearchRetryCount": 1,
"SearchRetryBaseDelayMs": 500,
"ProbeRetryCount": 1,
"ProbeRetryBaseDelayMs": 400,
"MaxSearchQueries": 5
},
"DiscoveryRunOperations": {
"SearchTimeoutSeconds": 15,
"ProbeTimeoutSeconds": 15,
"LlmVerificationTimeoutMs": 3500
},
"Llm": {
"Enabled": true,
"EvaluationMode": false,
"MaxContentLength": 4000,
"ConfidenceThreshold": 0.7,
"TimeoutMs": 3500,
"ModelPath": "../ProductNormaliser.AdminApi/models/tinyllama.gguf",
"ContextSize": 2048,
"MaxTokens": 8
},
"SourceOnboardingAutomation": {
"DefaultMode": "operator_assisted"
}
}