Class AnalyzeResponse
- Namespace
- FoundationaLLM.Gatekeeper.Core.Models.Integration
- Assembly
- FoundationaLLM.Gatekeeper.Core.dll
Encapsulates a text analysis response.
public class AnalyzeResponse
- Inheritance
-
AnalyzeResponse
- Inherited Members
- Extension Methods
Properties
Content
The text that was analyzed.
[JsonPropertyName("content")]
public required string Content { get; set; }
Property Value
Results
A list of PII (personally identifiable information) entities identified in the analyzed text.
[JsonPropertyName("results")]
public required List<PIIResult> Results { get; set; }