Patel.AzureAIContentSafety.Optimizely
1.0.0
dotnet add package Patel.AzureAIContentSafety.Optimizely --version 1.0.0
NuGet\Install-Package Patel.AzureAIContentSafety.Optimizely -Version 1.0.0
<PackageReference Include="Patel.AzureAIContentSafety.Optimizely" Version="1.0.0" />
paket add Patel.AzureAIContentSafety.Optimizely --version 1.0.0
#r "nuget: Patel.AzureAIContentSafety.Optimizely, 1.0.0"
// Install Patel.AzureAIContentSafety.Optimizely as a Cake Addin #addin nuget:?package=Patel.AzureAIContentSafety.Optimizely&version=1.0.0 // Install Patel.AzureAIContentSafety.Optimizely as a Cake Tool #tool nuget:?package=Patel.AzureAIContentSafety.Optimizely&version=1.0.0
Patel-AzureAIContentSafety
Intro
This is an Add-On which integrates Azure AI Content Safety within Optimizely CMS 12. The Add-On provides users, the features and ability to integrate various functions which are part of the Azure AI Content Safety Service within Optimizely CMS to allow content users to moderate content which is being published within the CMS. Some examples of functionality within this Add-On consists of the following.
Installation
Installation added soon
dotnet add package
Setup
After installing the package, the following steps are required to be done to setup the Add-On correctly.
Create Azure AI Resource
- Navigate to the Azure Portal by clicking here
- Click on create new resource
- Search for Azure AI Content Safety
- Select the option Azure AI Content Safety
- Fill out details in relation to Project Details (Choose Subscription) and Instance Details (Region/Name/Pricing Tier)
- Click Create
- When resource has been created, Navigate to the Keys and Endpoint section. An example screenshot of this is shown below
- Make a note of the Key and Endpoint variables - This will be needed in the Configuration section of Setup.
Configuration
For the Add-On to work, you will have to call the .AddAzureAIContentSafety()
extension method in the Startup.ConfigureServices method.
Below is a code snippet with all possible configuration options. Using the Key and Endpoint variables which have been retrieved from the Azure AI Resource, populate these details into the 'TextAnalyticsSubscriptionKey' and 'TextAnalyticsEndpoint' variables as shown below
.AddAzureAIContentSafety(x => {
x.ContentSafetySubscriptionKey = "************";
x.ContentSafetyEndpoint = "******************";
})
You will also have to add the following line of code after calling the .AddAzureAIContentSafety()
extension method
.AddControllersWithViews().AddRazorRuntimeCompilation();
In the extension method in the Startup.Configure method, the following code will need to be added
.UseEndpoints(endpoints => {
endpoints.MapContent();
endpoints.MapControllers();
});
Attributes
Please visit here to find out more information about the various attributes that are contained within this Add-On and how they work.
More Information
Blog posts added soon
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Azure.AI.ContentSafety (>= 1.0.0-beta.1)
- EPiServer.CMS.Core (>= 12.0.3 && < 13.0.0)
- EPiServer.CMS.UI.Core (>= 12.0.2 && < 13.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 172 | 1/3/2024 |
Release that includes the first iteration of Azure AI Content Safety - Integration with Optimizely CMS.