9 lines
199 B
Python
9 lines
199 B
Python
"""Supported metric names recognized by scenario validation and pipeline setup."""
|
|
|
|
SUPPORTED_METRICS = {
|
|
"faithfulness",
|
|
"answer_relevancy",
|
|
"context_recall",
|
|
"context_precision",
|
|
}
|