Table of Contents

Interface IGatekeeperIntegrationAPIService

Namespace
FoundationaLLM.Gatekeeper.Core.Interfaces
Assembly
FoundationaLLM.Gatekeeper.Core.dll

Contains methods for interacting with the Gatekeeper Integration API.

public interface IGatekeeperIntegrationAPIService
Extension Methods

Methods

AnalyzeText(string)

Analyze text to identify PII (personally identifiable information) entities.

Task<List<PIIResult>> AnalyzeText(string text)

Parameters

text string

The input text.

Returns

Task<List<PIIResult>>

A list of PII (personally identifiable information) entities identified in the analyzed text.

AnonymizeText(string)

Anonymize text with identified PII (personally identifiable information) entities.

Task<string> AnonymizeText(string text)

Parameters

text string

The input text.

Returns

Task<string>

The anonymized text.