@@ -166,6 +166,10 @@ Column base model
166166* ** classes_names** : Optional[ list[ str]] = None
167167 it is mandatory when the column is the target
168168 in multilabel classification tasks
169+ * ** subrole** : Optional[ ColumnSubRole] = None
170+ Indicates the subrole of the column. It's used in
171+ RAG tasks to define the role of the input columns
172+ (e.g. user input or retrieved context)
169173
170174
171175----
@@ -278,7 +282,6 @@ An event created during the detection process.
278282* ** severity_type** : Optional[ DetectionEventSeverity]
279283* ** insert_datetime** : str
280284* ** sample_timestamp** : float
281- * ** sample_id** : str
282285* ** model_id** : Optional[ str]
283286* ** model_name** : Optional[ str]
284287* ** model_version** : Optional[ str]
@@ -585,12 +588,6 @@ Base model to define model item
585588* ** task_id** : str
586589* ** name** : str
587590* ** version** : str
588- * ** status** : ModelStatus
589- * ** status_data_start_timestamp** : Optional[ float]
590- * ** status_insert_datetime** : datetime
591- * ** prediction_status** : ModelStatus
592- * ** prediction_status_data_start_timestamp** : Optional[ float]
593- * ** prediction_status_insert_datetime** : datetime
594591* ** metric_name** : performance or error metric associated with
595592 the model
596593* ** creation_datetime** : Optional[ datetime]
@@ -600,6 +597,19 @@ Base model to define model item
600597----
601598
602599
600+ ## MonitoringQuantityStatus
601+ ``` python
602+ MonitoringQuantityStatus()
603+ ```
604+
605+
606+ ---
607+ Base model to store the monitoring status
608+ of a monitoring quantity (target or metric)
609+
610+ ----
611+
612+
603613## MulticlassClassificationTaskCostInfo
604614``` python
605615MulticlassClassificationTaskCostInfo()
@@ -962,10 +972,6 @@ Task model
962972* ** task_id** : str
963973* ** name** : str
964974* ** type** : TaskType
965- * ** input_status** : TaskStatus
966- * ** input_status_insert_datetime** : str
967- * ** concept_status** : TaskStatus
968- * ** concept_status_insert_datetime** : str
969975
970976
971977----
0 commit comments