We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013d076 commit d192757Copy full SHA for d192757
rdagent/log/ui/app.py
@@ -643,11 +643,11 @@ def feedback_window():
643
with st.expander("**Config⚙️**", expanded=True):
644
st.markdown(state.scenario.experiment_setting, unsafe_allow_html=True)
645
646
- if fbr := state.msgs[round]["Quantitative Backtesting Chart"]:
647
- st.markdown("**Returns📈**")
648
- fig = report_figure(fbr[0].content)
649
- st.plotly_chart(fig)
650
if fb := state.msgs[round]["feedback"]:
+ if fbr := state.msgs[round]["Quantitative Backtesting Chart"]:
+ st.markdown("**Returns📈**")
+ fig = report_figure(fbr[0].content)
+ st.plotly_chart(fig)
651
st.markdown("**Hypothesis Feedback🔍**")
652
h: HypothesisFeedback = fb[0].content
653
st.markdown(
0 commit comments