BotSharp/src/WebStarter/appsettings.json

40 lines
849 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-06-07 00:59:32 +00:00
"ModelPath": "C:\\Users\\haipi\\Downloads\\wizard-vicuna-13B.ggmlv3.q8_0.bin",
2023-05-27 01:58:31 +00:00
"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
},
2023-06-07 01:10:09 +00:00
"AzureOpenAi": {
2023-05-28 16:30:27 +00:00
"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": {
2023-06-07 00:59:32 +00:00
"Master": "mongodb://localhost:27017/chat-ui"
2023-06-03 02:07:30 +00:00
},
2023-06-07 00:59:32 +00:00
"UseCamelCase": true,
2023-06-03 02:07:30 +00:00
"Assemblies": [ "BotSharp.Core" ]
2023-05-26 01:36:15 +00:00
}
}