2026-07-07 13:05:07 +05:30
|
|
|
namespace PiiRedaction.Core.Configuration;
|
|
|
|
|
|
|
|
|
|
public sealed class PiiRedactionOptions
|
|
|
|
|
{
|
|
|
|
|
public const string SectionName = "PiiRedaction";
|
|
|
|
|
|
|
|
|
|
public string OnnxModelPath { get; set; } = "models/ner-model.onnx";
|
2026-07-07 17:12:38 +05:30
|
|
|
|
|
|
|
|
public string EnglishOnnxModelPath { get; set; } = "models/en/ner-model.onnx";
|
|
|
|
|
|
|
|
|
|
public string TamilOnnxModelPath { get; set; } = "models/ta/model.onnx";
|
|
|
|
|
|
|
|
|
|
public bool EnableTamilNer { get; set; } = true;
|
2026-07-07 13:05:07 +05:30
|
|
|
}
|