Skip to content

Commit

Permalink
ui update
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaiPetukhov committed Oct 2, 2024
1 parent 117de6a commit 5d9ccf0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,15 @@ def main_func():
sel_app_session = widgets.SelectAppSession(g.team_id, tags=g.deployed_nn_tags, show_label=True)
sel_project = widgets.SelectProject(default_id=None, workspace_id=g.workspace_id)

eval_params = widgets.Editor(initial_text=BaseEvaluator.default_parameters(), language_mode="yaml")
eval_params = widgets.Editor(
initial_text=BaseEvaluator.default_parameters(), language_mode="yaml", height_lines=16
)
eval_params_card = widgets.Card(
title="Evaluation parameters",
content=eval_params,
collapsable=True,
)
eval_params_card.collapse()


button = widgets.Button("Evaluate")
Expand Down

0 comments on commit 5d9ccf0

Please sign in to comment.