@using AIStudio.Provider
@inherits MSGComponentBase
@if (this.Mode is PopoverTriggerMode.ICON)
{
}
else
{
@T("Confidence")
}
@T("Confidence Card")
@T("Description")
@if (this.currentConfidence.Sources.Count > 0)
{
@T("Sources")
@foreach (var sourceTuple in this.GetConfidenceSources())
{
}
}
@if (!string.IsNullOrWhiteSpace(this.currentConfidence.Region))
{
@T("Region")
@this.currentConfidence.Region
}
@T("Confidence Level")
@this.currentConfidence.Level.GetName()
Close