Class InputsMapping
- Namespace
- FoundationaLLM.Common.Models.AzureAIService
- Assembly
- FoundationaLLM.Common.dll
How each of the input fields map to the testing fields.
public class InputsMapping
- Inheritance
-
InputsMapping
- Inherited Members
- Extension Methods
Properties
Answer
Name of the input field for the answer
[JsonPropertyName("answer")]
public string? Answer { get; set; }
Property Value
Context
Name of the input field for the context
[JsonPropertyName("context")]
public string? Context { get; set; }
Property Value
GroundTruth
Name of the input field for the ground truth.
[JsonPropertyName("ground_truth")]
public string? GroundTruth { get; set; }
Property Value
Metrics
Name of the input field for the metrics to run.
[JsonPropertyName("metrics")]
public string? Metrics { get; set; }
Property Value
Question
Name of the input field for the question
[JsonPropertyName("question")]
public string? Question { get; set; }