BotSharp/src/WebStarter/appsettings.json

80 lines
1.7 KiB
JSON
Raw Normal View History

2023-05-26 01:36:15 +00:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
2023-06-11 23:46:02 +00:00
"Jwt": {
"Issuer": "botsharp",
"Audience": "botsharp",
"Key": "31ba6052aa6f4569901facc3a41fcb4a"
2023-05-27 01:58:31 +00:00
},
2023-06-19 16:33:27 +00:00
"Conversation": {
},
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-06-19 18:32:49 +00:00
"DeploymentModel": {
"ChatCompletionModel": "",
"TextCompletionModel": ""
}
2023-06-03 02:07:30 +00:00
},
2023-06-17 13:32:39 +00:00
"MetaAi": {
"fastText": {
"ModelPath": "crawl-300d-2M-subword.bin"
}
},
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-11 23:46:02 +00:00
"Agent": {
"Master": "Data Source=(localdb)\\ProjectModels;Initial Catalog=Agent;Integrated Security=True;Connect Timeout=30;Encrypt=False;Trust Server Certificate=False;Application Intent=ReadWrite;Multi Subnet Failover=False",
"Slavers": []
},
2023-06-07 00:59:32 +00:00
"UseCamelCase": true,
2023-06-03 02:07:30 +00:00
"Assemblies": [ "BotSharp.Core" ]
2023-06-11 23:46:02 +00:00
},
2023-06-18 02:56:22 +00:00
"Qdrant": {
"Url": "",
"ApiKey": ""
},
2023-06-17 02:42:35 +00:00
"PluginLoader": {
"Assemblies": [
"BotSharp.Core",
2023-06-17 13:32:39 +00:00
"BotSharp.Plugin.AzureOpenAI",
2023-06-18 02:56:22 +00:00
"BotSharp.Plugin.MetaAI",
2023-06-19 18:32:49 +00:00
"BotSharp.Plugin.Qdrant",
"BotSharp.Plugin.PaddleSharp"
2023-06-19 16:33:27 +00:00
],
"Plugins": [
// "LLamaSharpPlugin",
"AzureOpenAiPlugin",
"MetaAiPlugin",
2023-06-19 18:32:49 +00:00
"QdrantPlugin",
"PaddleSharpPlugin"
2023-06-17 02:42:35 +00:00
]
2023-05-26 01:36:15 +00:00
}
}