-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
58 lines (58 loc) · 1.5 KB
/
appsettings.Development.json
File metadata and controls
58 lines (58 loc) · 1.5 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
53
54
55
56
57
58
{
"ManagementApiSecurity": {
"ApiKeyHeaderName": "X-Management-Api-Key",
"AllowDevelopmentLoopbackBypass": false,
"ApiKeys": [
{
"KeyId": "bootstrap-operator",
"DisplayName": "Bootstrap Operator",
"Role": "operator",
"Secret": "pn-admin-20260327-op-7b9e2d1f6a3c4d58"
},
{
"KeyId": "bootstrap-viewer",
"DisplayName": "Bootstrap Viewer",
"Role": "viewer",
"Secret": "pn-admin-20260327-view-2f6c8a1d4e7b9c30"
}
]
},
"CrawlGovernance": {
"AllowedDomains": [],
"BlockedDomains": [],
"AllowPrivateNetworkTargets": false,
"LargeCrawlThreshold": 100,
"MaxTargetsPerJob": 500,
"RequireExplicitSourcesForLargeCategoryCrawls": true
},
"SourceCandidateDiscovery": {
"SearchApiBaseUrl": "https://api.search.brave.com",
"SearchApiKey": "",
"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": "models/tinyllama.gguf"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}