Table of Contents

Class PIIResult

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

Encapsulates the PII (personally identifiable information) results.

public class PIIResult
Inheritance
PIIResult
Derived
Inherited Members
Extension Methods

Properties

EndIndex

The end index where a PII entity was detected.

[JsonPropertyName("end_index")]
public required int EndIndex { get; set; }

Property Value

int

EntityType

The type of personally identifiable information (i.e. Person, Location, Date).

[JsonPropertyName("entity_type")]
public required string EntityType { get; set; }

Property Value

string

StartIndex

The start index where a PII was detected.

[JsonPropertyName("start_index")]
public required int StartIndex { get; set; }

Property Value

int