Class Sealed
public sealed class OnnxAiOptions

Namespace: Moka.Blazor.AI.Onnx.Models

Configuration options for the ONNX Runtime GenAI provider.

Properties

NameDescription
ModelPath Path to the ONNX model directory (must contain model files and genai_config.json).

ModelPath

string OnnxAiOptions.ModelPath { get; set; }

Path to the ONNX model directory (must contain model files and genai_config.json).

View Source
/// <summary>
///     Configuration options for the ONNX Runtime GenAI provider.
/// </summary>
public sealed class OnnxAiOptions
{
    /// <summary>
    ///     Path to the ONNX model directory (must contain model files and genai_config.json).
    /// </summary>
    public string ModelPath { get; set; } = "";
}
Was this page helpful?