Skip to content

Commit

Permalink
Create appsettings.json
Browse files Browse the repository at this point in the history
Appsettings Template
  • Loading branch information
heblasco authored Nov 13, 2023
1 parent e2d4de7 commit 6fe541c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/AIHub/appsettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ContentModerator": {
"Endpoint": "<EndPoint>",
"SubscriptionKey": "<SUB KEY>"
},
"BrandAnalyzer": {
"BingEndpoint": "https://api.bing.microsoft.com/v7.0/search",
"BingKey": "<Bing Key>",
"OpenAIEndpoint": "<AOAI EndPoint>",
"OpenAISubscriptionKey": "<KEY>"
},
"CallCenter": {
"OpenAIEndpoint": "<AOAI EndPoint>",
"OpenAISubscriptionKey": "<KEY>"
},
"ImageAnalyzer": {
"VisionEndpoint": "<Vision EndPoint>",
"OCREndpoint": "<OCR EndPoint>",
"VisionSubscriptionKey": "<KEY>",
"OpenAIEndpoint": "<AOAI EndPoint>",
"OpenAISubscriptionKey": "KEY",
"ContainerName": "image-analyzer"
},

"Storage": {
"ConnectionString": "<Storage connString>",
"ContainerName": "image-moderator"
},
"AllowedHosts": "*"
}

0 comments on commit 6fe541c

Please sign in to comment.