-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
109 lines (109 loc) · 3.44 KB
/
appsettings.json
File metadata and controls
109 lines (109 loc) · 3.44 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"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
},
"SourceOnboardingAutomation": {
"DefaultMode": "operator_assisted",
"AutomationCategorySampleBudget": 3,
"AutomationProductSampleBudget": 3,
"SuggestMinConfidenceScore": 78,
"AutoAcceptMinConfidenceScore": 90,
"MinCrawlabilityScore": 60,
"MinCategoryRelevanceScore": 40,
"MinExtractabilityScore": 65,
"MinCatalogLikelihoodScore": 55,
"MaxDuplicateRiskScore": 15,
"MinYieldConfidenceScore": 70,
"SuggestMinReachableCategorySamples": 2,
"SuggestMinReachableProductSamples": 2,
"SuggestMinRuntimeCompatibleProductSamples": 2,
"AutoAcceptMinReachableCategorySamples": 3,
"AutoAcceptMinReachableProductSamples": 3,
"AutoAcceptMinRuntimeCompatibleProductSamples": 3,
"AutoAcceptMinStructuredEvidenceProductSamples": 2,
"MaxAutoAcceptedCandidatesPerRun": 1
},
"SourceAutomationMonitoring": {
"ReviewWindowSnapshots": 6,
"SuggestMinTrustScore": 0.65,
"SuggestMinDiscoveryBreadthScore": 0.55,
"SuggestMinProductPromotionRate": 0.40,
"SuggestMinExtractabilityRate": 0.55,
"SuggestMaxNoProductRate": 0.45,
"SuggestMinDownstreamYieldScore": 0.45,
"SuggestMinSpecStabilityScore": 0.45,
"SuggestMaxPriceVolatilityScore": 0.85,
"AutoAcceptMinTrustScore": 0.80,
"AutoAcceptMinDiscoveryBreadthScore": 0.70,
"AutoAcceptMinProductPromotionRate": 0.55,
"AutoAcceptMinExtractabilityRate": 0.70,
"AutoAcceptMaxNoProductRate": 0.30,
"AutoAcceptMinDownstreamYieldScore": 0.60,
"AutoAcceptMinSpecStabilityScore": 0.60,
"AutoAcceptMaxPriceVolatilityScore": 0.65,
"MaxTrustScoreDropForAutoAccept": 0.10,
"MaxExtractabilityDropForAutoAccept": 0.15,
"QuarantineMinTrustScore": 0.40,
"QuarantineMinDiscoveryBreadthScore": 0.20,
"QuarantineMinExtractabilityRate": 0.20,
"QuarantineMaxNoProductRate": 0.80
},
"Llm": {
"Enabled": true,
"EvaluationMode": false,
"MaxContentLength": 4000,
"ConfidenceThreshold": 0.7,
"TimeoutMs": 3500,
"ModelPath": "models/tinyllama.gguf"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Mongo": {
"ConnectionString": "mongodb://localhost:27017",
"DatabaseName": "ProductNormaliser"
},
"AllowedHosts": "*"
}