From 6fe541cff11355dae72abe2178467472898eb006 Mon Sep 17 00:00:00 2001 From: heblasco <48315925+heblasco@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:38:14 +0100 Subject: [PATCH] Create appsettings.json Appsettings Template --- src/AIHub/appsettings.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/AIHub/appsettings.json diff --git a/src/AIHub/appsettings.json b/src/AIHub/appsettings.json new file mode 100644 index 0000000..de09e36 --- /dev/null +++ b/src/AIHub/appsettings.json @@ -0,0 +1,36 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ContentModerator": { + "Endpoint": "", + "SubscriptionKey": "" + }, + "BrandAnalyzer": { + "BingEndpoint": "https://api.bing.microsoft.com/v7.0/search", + "BingKey": "", + "OpenAIEndpoint": "", + "OpenAISubscriptionKey": "" + }, + "CallCenter": { + "OpenAIEndpoint": "", + "OpenAISubscriptionKey": "" + }, + "ImageAnalyzer": { + "VisionEndpoint": "", + "OCREndpoint": "", + "VisionSubscriptionKey": "", + "OpenAIEndpoint": "", + "OpenAISubscriptionKey": "KEY", + "ContainerName": "image-analyzer" + }, + + "Storage": { + "ConnectionString": "", + "ContainerName": "image-moderator" + }, + "AllowedHosts": "*" +}