Table of Contents

Class AnalyzeRequest

Namespace
FoundationaLLM.Gatekeeper.Core.Models.Integration
Assembly
FoundationaLLM.Gatekeeper.Core.dll

Encapsulates a text analysis request.

public class AnalyzeRequest
Inheritance
AnalyzeRequest
Inherited Members
Extension Methods

Properties

Anonymize

A flag used to tell if PII found by analysis should be anonymized.

[JsonPropertyName("anonymize")]
public required bool Anonymize { get; set; }

Property Value

bool

Content

The text to be analyzed.

[JsonPropertyName("content")]
public required string Content { get; set; }

Property Value

string

Language

The language used to detect PII.

[JsonPropertyName("language")]
public string? Language { get; set; }

Property Value

string