Table of Contents

Class ModelSearchCriteria<T>

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

Criteria for searching models in the registry.

public class ModelSearchCriteria<T>

Type Parameters

T

The numeric data type used for calculations.

Inheritance
ModelSearchCriteria<T>
Inherited Members

Properties

CreatedAfter

Gets or sets the created after date filter.

public DateTime? CreatedAfter { get; set; }

Property Value

DateTime?

CreatedBefore

Gets or sets the created before date filter.

public DateTime? CreatedBefore { get; set; }

Property Value

DateTime?

MaxVersion

Gets or sets the maximum version.

public int? MaxVersion { get; set; }

Property Value

int?

MinVersion

Gets or sets the minimum version.

public int? MinVersion { get; set; }

Property Value

int?

NamePattern

Gets or sets the name pattern to match.

public string? NamePattern { get; set; }

Property Value

string

Stage

Gets or sets the stage to filter by.

public ModelStage? Stage { get; set; }

Property Value

ModelStage?

Tags

Gets or sets the tags to filter by.

public Dictionary<string, string>? Tags { get; set; }

Property Value

Dictionary<string, string>