ai2_kit.domain.updater module

ai2_kit.domain.updater module#

class ai2_kit.domain.updater.CllWalkthroughUpdaterInputConfig(*, passing_rate_threshold: float = - 1.0, table: List[Any] = [])[source]#

Bases: BaseModel

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}#

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

model_fields: ClassVar[dict[str, FieldInfo]] = {'passing_rate_threshold': FieldInfo(annotation=float, required=False, default=-1.0), 'table': FieldInfo(annotation=List[Any], required=False, default=[])}#

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.

passing_rate_threshold: float#
table: List[Any]#