BotSharp/src/WebStarter/appsettings.json

39 lines
798 B
JSON
Raw Normal View History

2023-05-26 01:36:15 +00:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"OpenAi": {
"userName": "",
"password": ""
2023-05-27 01:58:31 +00:00
},
"LlamaSharp": {
2023-05-29 01:06:05 +00:00
"Interactive": true,
2023-05-27 01:58:31 +00:00
"ModelPath": "C:\\Users\\haipi\\Downloads\\ggml-vic13b-q5_1.bin",
"InstructionFile": "Prompts\\chat-with-bob.txt",
2023-05-29 01:06:05 +00:00
"ChatSampleFile": "Prompts\\chat-samples.txt",
2023-06-03 17:01:38 +00:00
"MaxContextLength": 2048,
"NumberOfGpuLayer": 10
2023-05-28 16:30:27 +00:00
},
"AzureAi": {
"ApiKey": "",
"Endpoint": "",
"InstructionFile": "Prompts\\chat-with-bob.txt",
2023-05-29 01:06:05 +00:00
"ChatSampleFile": "Prompts\\chat-samples.txt",
2023-05-28 16:30:27 +00:00
"DeploymentModel": ""
2023-06-03 02:07:30 +00:00
},
"Database": {
"MongoDb": {
"Master": "mongodb://localhost:27017"
},
"Assemblies": [ "BotSharp.Core" ]
2023-05-26 01:36:15 +00:00
}
}