|
import gradio as gr |
|
import logging |
|
|
|
|
|
from pipelines.utils.common import ( |
|
set_ui_component, |
|
get_ui_component, |
|
set_evaluation_type, |
|
get_evaluation_type, |
|
update_evaluation_params, |
|
search_and_filter |
|
) |
|
|
|
|
|
from pipelines.utils.api import ( |
|
update_status, |
|
fetch_logs, |
|
fetch_results |
|
) |
|
|
|
|
|
logger = logging.getLogger(__name__) |
|
|
|
|
|
__all__ = [ |
|
"set_ui_component", |
|
"get_ui_component", |
|
"set_evaluation_type", |
|
"get_evaluation_type", |
|
"update_evaluation_params", |
|
"search_and_filter", |
|
"update_status", |
|
"fetch_logs", |
|
"fetch_results" |
|
] |