Source code for swarmauri.standard.metrics.base.MetricThresholdMixin

from abc import ABC, abstractmethod
from typing import Literal
from pydantic import BaseModel
from swarmauri.core.metrics.IThreshold import IThreshold

[docs] class MetricThresholdMixin(IThreshold, BaseModel): k: int