Files
SqlDatabaseVectorSearch/SqlDatabaseVectorSearch/appsettings.json
T
2024-06-24 09:45:05 +02:00

34 lines
748 B
JSON

{
"ConnectionStrings": {
"SqlConnection": ""
},
"AzureOpenAI": {
"ChatCompletion": {
"Endpoint": "",
"Deployment": "",
"ApiKey": ""
},
"Embedding": {
"Endpoint": "",
"Deployment": "",
"ApiKey": ""
}
},
"AppSettings": {
"MaxTokenPerLine": 300,
"MaxTokensPerParagraph": 1024,
"OverlapTokens": 100,
"MaxRelevantChunks": 5,
"MessageLimit": 20,
"MessageExpiration": "00:05:00"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"https_port": 443,
"AllowedHosts": "*"
}