eval history and metrics

This commit is contained in:
2026-05-14 15:35:04 +02:00
parent d0c1f82863
commit 7f54dec585
9 changed files with 870 additions and 16 deletions

View File

@@ -1,5 +1,22 @@
from .errors import InfospaceError
from .evaluation import EntityEvaluation, EvaluationSnapshot, MetricValue, ScoreEntry
from .evaluation_io import (
append_to_history,
read_entity_evaluation,
read_history,
read_snapshot,
write_entity_evaluation,
write_snapshot,
)
from .history import (
find_snapshot,
get_history,
get_latest_snapshot,
metric_trend,
read_metrics_file,
record_check_results,
write_metrics_file,
)
from .lifecycle import add_artifact, create_infospace, load_infospace
from .models import (
DisciplineBinding,
@@ -26,8 +43,21 @@ __all__ = [
"TopicConfig",
"ViabilityThreshold",
"add_artifact",
"append_to_history",
"create_infospace",
"find_snapshot",
"get_history",
"get_latest_snapshot",
"list_entities",
"list_relations",
"load_infospace",
"metric_trend",
"read_entity_evaluation",
"read_history",
"read_metrics_file",
"read_snapshot",
"record_check_results",
"write_entity_evaluation",
"write_metrics_file",
"write_snapshot",
]