Skip to content

Commit

Permalink
🚨 update lint and example text
Browse files Browse the repository at this point in the history
  • Loading branch information
dexhunter committed Nov 27, 2024
1 parent 3cda9ac commit c052eb8
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions aide/webui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ def handle_user_inputs(self):
goal_text = st.text_area(
"Goal",
value=st.session_state.get("goal", ""),
placeholder="Example: Predict house prices",
placeholder="Example: Predict the sales price for each house",
)
eval_text = st.text_area(
"Evaluation Criteria",
value=st.session_state.get("eval", ""),
placeholder="Example: Use RMSE metric",
placeholder="Example: Use the RMSE metric between the logarithm of the predicted and observed values.",
)
num_steps = st.slider(
"Number of Steps",
Expand Down Expand Up @@ -462,13 +462,15 @@ def render_results_section(self):
if st.session_state.get("results"):
results = st.session_state.results

tabs = st.tabs([
"Tree Visualization",
"Best Solution",
"Config",
"Journal",
"Validation Plot",
])
tabs = st.tabs(
[
"Tree Visualization",
"Best Solution",
"Config",
"Journal",
"Validation Plot",
]
)

with tabs[0]:
self.render_tree_visualization(results)
Expand Down

0 comments on commit c052eb8

Please sign in to comment.