25 lines
847 B
C#
25 lines
847 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace ContentSafety.Services.PromptShield;
|
|
|
|
/// <summary>
|
|
/// Flags potential vulnerabilities within user prompt and documents.
|
|
/// More information here: https://learn.microsoft.com/en-us/azure/ai-services/content-safety/quickstart-jailbreak#interpret-the-api-response
|
|
/// </summary>
|
|
public class PromptShieldResponse
|
|
{
|
|
/// <summary>
|
|
/// Contains analysis results for the user prompt.
|
|
/// </summary>
|
|
[JsonPropertyName("userPromptAnalysis")]
|
|
public PromptShieldAnalysis? UserPromptAnalysis { get; set; }
|
|
|
|
/// <summary>
|
|
/// Contains a list of analysis results for each document provided.
|
|
/// </summary>
|
|
[JsonPropertyName("documentsAnalysis")]
|
|
public List<PromptShieldAnalysis>? DocumentsAnalysis { get; set; }
|
|
}
|