forked from Elumenotion/GuideAnts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.example.json
More file actions
93 lines (93 loc) · 2.89 KB
/
Copy pathappsettings.Development.example.json
File metadata and controls
93 lines (93 loc) · 2.89 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
{
"ConnectionStrings": {
"DefaultConnection": "Server=localhost,1434;Initial Catalog=guideants-dev;Persist Security Info=False;User ID=sa;Password=replace-with-local-db-password;MultipleActiveResultSets=True;Encrypt=False;TrustServerCertificate=True;Connection Timeout=30;ConnectRetryCount=3;ConnectRetryInterval=5;"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore.Database.Command": "Warning",
"Microsoft.EntityFrameworkCore.Query": "Warning",
"Microsoft.EntityFrameworkCore.Update": "Warning",
"Microsoft.EntityFrameworkCore.ChangeTracking": "Warning",
"Microsoft.EntityFrameworkCore.Infrastructure": "Warning",
"GuideAntsApi.Services.Components.SpeechTranscriptionService": "Information",
"GuideAntsApi.Services.Components.SpeechSynthesisService": "Information",
"AntRunner.Chat.LlamaCpp": "Information",
"AntRunner.Chat.OpenAI": "Information",
"AntRunner.Chat.Anthropic": "Information"
},
"Console": {
"IncludeScopes": true,
"TimestampFormat": "yyyy-MM-dd HH:mm:ss.fff ",
"LogLevel": {
"Microsoft.EntityFrameworkCore.Database.Command": "Warning",
"Microsoft.EntityFrameworkCore.Query": "Warning"
}
}
},
"FileStorage": {
"Path": "../../../docker/volumes/content-files"
},
"SearXngSearch": {
"BaseUrl": "http://127.0.0.1:8091",
"TimeoutMs": 15000,
"Language": "en-US",
"SafeSearch": 1,
"Categories": "general"
},
"BrowserRendering": {
"BaseUrl": "http://127.0.0.1:8091",
"TimeoutMs": 60000,
"RenderHtmlPath": "/browser/render-html"
},
"SpeechTranscription": {
"TimeoutSeconds": 300
},
"SpeechSynthesis": {
"TimeoutSeconds": 300
},
"ImageGeneration": {
"TimeoutSeconds": 600,
"LocalOutputFormat": "png"
},
"Embeddings": {
"TimeoutSeconds": 300,
"LocalMinIntervalMs": 5000
},
"LocalServiceHosts": {
"SpeechTranscriptionBaseUrl": "http://localhost:8110",
"SpeechSynthesisBaseUrl": "http://localhost:8110",
"ImageGenerationBaseUrl": "http://localhost:8110",
"EmbeddingsBaseUrl": "http://localhost:8110",
"MediaBaseUrl": "http://localhost:8110",
"DocumentIntelligenceBaseUrl": "http://localhost:5001"
},
"DocumentIntelligence": {
"TimeoutSeconds": 300,
"MaxConcurrentConversions": 1,
"AsyncStatusPollIntervalMs": 2000
},
"SettingsSecrets": {
"ActiveKeyId": "local-dev",
"Keys": {
"local-dev": "replace-with-base64-encoded-16-24-or-32-byte-aes-key"
}
},
"BackgroundJobs": {
"JobTypes": {
"RebuildEmbeddings": {
"MaxConcurrency": 1,
"LeaseSeconds": 3600
},
"RetentionCleanup": {
"Enabled": true,
"MaxConcurrency": 1
}
}
},
"Ui": {
"RootPath": "../../client/dist-browser",
"DevServerUrl": "http://localhost:5173"
}
}