Skip to content

Commit

Permalink
remove button
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaiPetukhov committed Oct 2, 2024
1 parent 08d662f commit 117de6a
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,19 +113,13 @@ def main_func():
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_apply_button = widgets.Button("Apply")
eval_params_card = widgets.Card(
title="Evaluation parameters",
content=widgets.Container([eval_params, eval_params_apply_button]),
content=eval_params,
collapsable=True,
)


@eval_params_apply_button.click
def apply_eval_params():
return


button = widgets.Button("Evaluate")
button.disable()

Expand Down

0 comments on commit 117de6a

Please sign in to comment.