BotSharp/src/WebStarter/appsettings.json
Haiping Chen 8a25fe6c86 test 13B
2023-06-03 12:01:38 -05:00

39 lines
798 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"OpenAi": {
"userName": "",
"password": ""
},
"LlamaSharp": {
"Interactive": true,
"ModelPath": "C:\\Users\\haipi\\Downloads\\ggml-vic13b-q5_1.bin",
"InstructionFile": "Prompts\\chat-with-bob.txt",
"ChatSampleFile": "Prompts\\chat-samples.txt",
"MaxContextLength": 2048,
"NumberOfGpuLayer": 10
},
"AzureAi": {
"ApiKey": "",
"Endpoint": "",
"InstructionFile": "Prompts\\chat-with-bob.txt",
"ChatSampleFile": "Prompts\\chat-samples.txt",
"DeploymentModel": ""
},
"Database": {
"MongoDb": {
"Master": "mongodb://localhost:27017"
},
"Assemblies": [ "BotSharp.Core" ]
}
}