Spaces:
Running
Running
- appsettings.json +57 -0
appsettings.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"Logging": {
|
3 |
+
"LogLevel": {
|
4 |
+
"Default": "Information",
|
5 |
+
"Microsoft": "Warning",
|
6 |
+
"Microsoft.Hosting.Lifetime": "Information"
|
7 |
+
}
|
8 |
+
},
|
9 |
+
"OpenAIApiKey" :".env",
|
10 |
+
"EmailEncryptKey": ".env",
|
11 |
+
"LocalSystemUrl": {
|
12 |
+
"ExternalUrl": "https://asmonitorsrv.freenetworkmonitor.click",
|
13 |
+
"IPAddress": "",
|
14 |
+
"RabbitHostName": "rabbitmq.freenetworkmonitor.click",
|
15 |
+
"RabbitPort": 63785,
|
16 |
+
"RabbitInstanceName" : "ASSrv-LLMService",
|
17 |
+
"RabbitUserName" : "usercommonxf1",
|
18 |
+
"RabbitVHost" : "/vhostuser",
|
19 |
+
"UseTls" : true
|
20 |
+
},
|
21 |
+
"ServiceID" : "monitor",
|
22 |
+
"StartThisTestLLM" : true,
|
23 |
+
"LlmNoInitMessage" : false,
|
24 |
+
"ServiceAuthKey" : ".env" ,
|
25 |
+
"LlmModelPath" : "/home/user/code/models/",
|
26 |
+
"LlmModelFileName" : "phi-4-mini-q4_0.gguf",
|
27 |
+
"LlmContextFileName" : "context-phi-4-mini.gguf",
|
28 |
+
"LlmSystemPrompt" : "system_prompt_phi_4_mini_run",
|
29 |
+
"LlmPromptMode" : " -if -sp -no-cnv --simple-io ",
|
30 |
+
"LlmVersion" : "phi_4_mini",
|
31 |
+
"LlmCtxSize" : 12000,
|
32 |
+
"LlmOpenAICtxSize" : 32000,
|
33 |
+
"LlmCtxRatio" : 6,
|
34 |
+
"LlmTemp" : "0.3",
|
35 |
+
"LlmThreads" : 2,
|
36 |
+
"LlmSystemPromptTimeout" : 90,
|
37 |
+
"LlmUserPromptTimeout" : 1200,
|
38 |
+
"LlmSessionIdleTimeout" : 1440,
|
39 |
+
"LlmGptModel" : "gpt-4o-mini",
|
40 |
+
"LlmHFModelID" : "meta-llama/llama-4-scout-17b-16e-instruct",
|
41 |
+
"LlmHFKey" : ".env",
|
42 |
+
"LlmHFUrl" : "https://api.novita.ai/v3/openai/chat/completions",
|
43 |
+
"LlmHFModelVersion" : "llama_3.2",
|
44 |
+
"LlmUseHF" : true,
|
45 |
+
"AudioServiceUrl" : "https://transcribe.freenetworkmonitor.click",
|
46 |
+
"AudioServiceOutputDir" : "/home/audioservice/code/securefiles/dev/output_audio",
|
47 |
+
"IsStream" : false,
|
48 |
+
"UseFixedPort" : true,
|
49 |
+
"HFToken" : ".env",
|
50 |
+
"DataRepoId" : "mungert/NetMonLLMDataLive",
|
51 |
+
"RedisUrl" :"redis.freenetworkmonitor.click:46379",
|
52 |
+
"RedisSecret" : ".env",
|
53 |
+
"MaxRetries" : -1,
|
54 |
+
"RabbitPassword" : ".env"
|
55 |
+
|
56 |
+
}
|
57 |
+
|