Files
jobtrackingapp/JobTrackerApi/appsettings.json
T
cesnimda 5eb9b3cb96 feat(ai): enforce local-first routing
Keep external providers behind server consent, task, and prompt-cost gates while persisting actual provider provenance.
2026-08-09 12:30:11 +02:00

37 lines
784 B
JSON

{
"HttpsRedirection": {
"Enabled": false,
"Hsts": false
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Workers": {
"RulesEnabled": false,
"FollowUpRemindersEnabled": false,
"DailyExportEnabled": false,
"JobEnrichmentEnabled": false,
"AiOperationsEnabled": false
},
"Ai": {
"ExternalProcessingEnabled": false,
"ExternalProvider": "ollama",
"RoutingMode": "local_first"
},
"AiQueue": {
"WorkerConcurrency": 1,
"GlobalCapacity": 100,
"PerUserCapacity": 10,
"DeadlineMinutes": 15,
"MaxAttempts": 3,
"LeaseSeconds": 120,
"HeartbeatSeconds": 20,
"OperationTimeoutSeconds": 300,
"IdleDelayMs": 1000
}
}